From fde35a15ca34edbca6923fd62375cdd2414e542b Mon Sep 17 00:00:00 2001 From: sanjeev Date: Mon, 11 Jul 2022 17:27:18 +0530 Subject: [PATCH 01/10] Updated Store Method --- .../Sales/TransactionController.php | 106 ++++++++++-------- .../Admin/src/Resources/lang/ar/app.php | 1 + .../Admin/src/Resources/lang/ben/app.php | 1 + .../Admin/src/Resources/lang/de/app.php | 1 + .../Admin/src/Resources/lang/en/app.php | 1 + .../Admin/src/Resources/lang/es/app.php | 1 + .../Admin/src/Resources/lang/fa/app.php | 1 + .../Admin/src/Resources/lang/fr/app.php | 3 +- .../Admin/src/Resources/lang/he/app.php | 1 + .../Admin/src/Resources/lang/hi_IN/app.php | 1 + .../Admin/src/Resources/lang/it/app.php | 1 + .../Admin/src/Resources/lang/ja/app.php | 1 + .../Admin/src/Resources/lang/nl/app.php | 1 + .../Admin/src/Resources/lang/pl/app.php | 1 + .../Admin/src/Resources/lang/pt_BR/app.php | 1 + .../Admin/src/Resources/lang/ru/app.php | 1 + .../Admin/src/Resources/lang/sin/app.php | 1 + .../Admin/src/Resources/lang/tr/app.php | 1 + .../Admin/src/Resources/lang/zh_CN/app.php | 1 + 19 files changed, 77 insertions(+), 49 deletions(-) diff --git a/packages/Webkul/Admin/src/Http/Controllers/Sales/TransactionController.php b/packages/Webkul/Admin/src/Http/Controllers/Sales/TransactionController.php index 273907b64..438d47344 100644 --- a/packages/Webkul/Admin/src/Http/Controllers/Sales/TransactionController.php +++ b/packages/Webkul/Admin/src/Http/Controllers/Sales/TransactionController.php @@ -80,58 +80,68 @@ class TransactionController extends Controller $invoice = $this->invoiceRepository->where('increment_id', $request->invoice_id)->first(); - if ($invoice) { - if ($invoice->state == 'paid') { - session()->flash('info', trans('admin::app.sales.transactions.response.already-paid')); + if (! $invoice) { + session()->flash('error', trans('admin::app.sales.transactions.response.invoice-missing')); - return redirect(route('admin.sales.transactions.index')); - } - - if ($request->amount > $invoice->base_grand_total) { - session()->flash('info', trans('admin::app.sales.transactions.response.transaction-amount-exceeds')); - - return redirect(route('admin.sales.transactions.create')); - } else { - $order = $this->orderRepository->find($invoice->order_id); - - $randomId = random_bytes(20); - - $this->orderTransactionRepository->create([ - 'transaction_id' => bin2hex($randomId), - 'type' => $request->payment_method, - 'payment_method' => $request->payment_method, - 'invoice_id' => $invoice->id, - 'order_id' => $invoice->order_id, - 'amount' => $request->amount, - 'status' => 'paid', - 'data' => json_encode([ - 'paidAmount' => $request->amount, - ]), - ]); - - $transactionTotal = $this->orderTransactionRepository->where('invoice_id', $invoice->id)->sum('amount'); - - if ($transactionTotal >= $invoice->base_grand_total) { - $shipments = $this->shipmentRepository->where('order_id', $invoice->order_id)->first(); - - if (isset($shipments)) { - $this->orderRepository->updateOrderStatus($order, 'completed'); - } else { - $this->orderRepository->updateOrderStatus($order, 'processing'); - } - - $this->invoiceRepository->updateState($invoice, 'paid'); - } - - session()->flash('success', trans('admin::app.sales.transactions.response.transaction-saved')); - - return redirect(route('admin.sales.transactions.index')); - } + return redirect()->back(); } - session()->flash('error', trans('admin::app.sales.transactions.response.invoice-missing')); + $transactionAmtBefore = $this->orderTransactionRepository->where('invoice_id', $invoice->id)->sum('amount'); + + $transactionAmtfinal = $request->amount + $transactionAmtBefore; - return redirect()->back(); + if ($invoice->state == 'paid') { + session()->flash('info', trans('admin::app.sales.transactions.response.already-paid')); + + return redirect(route('admin.sales.transactions.index')); + } + + if ($transactionAmtfinal > $invoice->base_grand_total) { + session()->flash('info', trans('admin::app.sales.transactions.response.transaction-amount-exceeds')); + + return redirect(route('admin.sales.transactions.create')); + } + + if ($request->amount <= 0) { + session()->flash('info', trans('admin::app.sales.transactions.response.transaction-amount-zero')); + + return redirect(route('admin.sales.transactions.create')); + } + + $order = $this->orderRepository->find($invoice->order_id); + + $randomId = random_bytes(20); + + $this->orderTransactionRepository->create([ + 'transaction_id' => bin2hex($randomId), + 'type' => $request->payment_method, + 'payment_method' => $request->payment_method, + 'invoice_id' => $invoice->id, + 'order_id' => $invoice->order_id, + 'amount' => $request->amount, + 'status' => 'paid', + 'data' => json_encode([ + 'paidAmount' => $request->amount, + ]), + ]); + + $transactionTotal = $this->orderTransactionRepository->where('invoice_id', $invoice->id)->sum('amount'); + + if ($transactionTotal >= $invoice->base_grand_total) { + $shipments = $this->shipmentRepository->where('order_id', $invoice->order_id)->first(); + + if (isset($shipments)) { + $this->orderRepository->updateOrderStatus($order, 'completed'); + } else { + $this->orderRepository->updateOrderStatus($order, 'processing'); + } + + $this->invoiceRepository->updateState($invoice, 'paid'); + } + + session()->flash('success', trans('admin::app.sales.transactions.response.transaction-saved')); + + return redirect(route('admin.sales.transactions.index')); } /** diff --git a/packages/Webkul/Admin/src/Resources/lang/ar/app.php b/packages/Webkul/Admin/src/Resources/lang/ar/app.php index 5b128dcf6..bfe40008a 100644 --- a/packages/Webkul/Admin/src/Resources/lang/ar/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/ar/app.php @@ -523,6 +523,7 @@ return [ 'transaction-saved' => 'تم حفظ الصفقة', 'already-paid' => 'تم دفع هذه الفاتورة بالفعل', 'transaction-amount-exceeds' => 'المبلغ المحدد لهذه المعاملة أكبر من المبلغ الإجمالي للفاتورة.', + 'transaction-amount-zero' => 'يمكن أن يكون مبلغ الصفقة صفرًا أو أقل', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/ben/app.php b/packages/Webkul/Admin/src/Resources/lang/ben/app.php index fcc3a9294..ef5056388 100755 --- a/packages/Webkul/Admin/src/Resources/lang/ben/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/ben/app.php @@ -526,6 +526,7 @@ return [ 'transaction-saved' => 'The transaction has been saved', 'already-paid' => 'This invoice has already been paid', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/de/app.php b/packages/Webkul/Admin/src/Resources/lang/de/app.php index f53b01907..14aeffc03 100755 --- a/packages/Webkul/Admin/src/Resources/lang/de/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/de/app.php @@ -516,6 +516,7 @@ return [ 'transaction-saved' => 'Die Transaktion wurde gespeichert', 'already-paid' => 'Diese Rechnung wurde bereits bezahlt', 'transaction-amount-exceeds' => 'Der angegebene Betrag dieser Transaktion übersteigt den Gesamtbetrag der Rechnung.', + 'transaction-amount-zero' => 'Der Transaktionsbetrag kann Null oder weniger betragen', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/en/app.php b/packages/Webkul/Admin/src/Resources/lang/en/app.php index 1d7d87f47..d5aea161c 100755 --- a/packages/Webkul/Admin/src/Resources/lang/en/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/en/app.php @@ -526,6 +526,7 @@ return [ 'transaction-saved' => 'The transaction has been saved', 'already-paid' => 'This invoice has already been paid', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/es/app.php b/packages/Webkul/Admin/src/Resources/lang/es/app.php index 88d69a4d8..de3b77306 100644 --- a/packages/Webkul/Admin/src/Resources/lang/es/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/es/app.php @@ -524,6 +524,7 @@ return [ 'transaction-saved' => 'The transaction has been saved', 'already-paid' => 'This invoice has already been paid', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/fa/app.php b/packages/Webkul/Admin/src/Resources/lang/fa/app.php index b4d804758..11ce3db1f 100644 --- a/packages/Webkul/Admin/src/Resources/lang/fa/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/fa/app.php @@ -521,6 +521,7 @@ return [ 'transaction-saved' => 'The transaction has been saved', 'already-paid' => 'This invoice has already been paid', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/fr/app.php b/packages/Webkul/Admin/src/Resources/lang/fr/app.php index 4a1c2573b..1c9ab5cd9 100644 --- a/packages/Webkul/Admin/src/Resources/lang/fr/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/fr/app.php @@ -524,7 +524,8 @@ return [ 'invoice-missing' => 'Ce numéro de facture n\'existe pas', 'transaction-saved' => 'La transaction a été enregistrée', 'already-paid' => 'Cette facture a déjà été payée', - 'transaction-amount-exceeds' => 'Le montant de cette transaction dépasse le montant total de la facture.', + 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less.', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/he/app.php b/packages/Webkul/Admin/src/Resources/lang/he/app.php index 6c1dfc0ee..8ad088e81 100755 --- a/packages/Webkul/Admin/src/Resources/lang/he/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/he/app.php @@ -526,6 +526,7 @@ return [ 'transaction-saved' => 'The transaction has been saved', 'already-paid' => 'This invoice has already been paid', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/hi_IN/app.php b/packages/Webkul/Admin/src/Resources/lang/hi_IN/app.php index 084a35ca5..4fe951e8c 100644 --- a/packages/Webkul/Admin/src/Resources/lang/hi_IN/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/hi_IN/app.php @@ -523,6 +523,7 @@ return [ 'transaction-saved' => 'लेन-देन सहेजा गया है', 'already-paid' => 'इस चालान का भुगतान पहले ही किया जा चुका है', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/it/app.php b/packages/Webkul/Admin/src/Resources/lang/it/app.php index da31785f1..e4828647a 100644 --- a/packages/Webkul/Admin/src/Resources/lang/it/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/it/app.php @@ -521,6 +521,7 @@ return [ 'transaction-saved' => 'The transaction has been saved', 'already-paid' => 'This invoice has already been paid', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/ja/app.php b/packages/Webkul/Admin/src/Resources/lang/ja/app.php index fcc3a9294..ef5056388 100755 --- a/packages/Webkul/Admin/src/Resources/lang/ja/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/ja/app.php @@ -526,6 +526,7 @@ return [ 'transaction-saved' => 'The transaction has been saved', 'already-paid' => 'This invoice has already been paid', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/nl/app.php b/packages/Webkul/Admin/src/Resources/lang/nl/app.php index 9dd17092c..76f0a3ef4 100644 --- a/packages/Webkul/Admin/src/Resources/lang/nl/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/nl/app.php @@ -517,6 +517,7 @@ return [ 'transaction-saved' => 'De transactie is geregistreerd', 'already-paid' => 'Dit factuur is al voldaan', 'transaction-amount-exceeds' => 'Het opgegeven bedrag van deze transactie overschrijdt het totaalbedrag van de factuur.', + 'transaction-amount-zero' => 'Transactiebedrag kan nul of minder zijn', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/pl/app.php b/packages/Webkul/Admin/src/Resources/lang/pl/app.php index feed3a577..ba0d64473 100644 --- a/packages/Webkul/Admin/src/Resources/lang/pl/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/pl/app.php @@ -517,6 +517,7 @@ return [ 'transaction-saved' => 'The transaction has been saved', 'already-paid' => 'This invoice has already been paid', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php b/packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php index f827aaf72..cbd6d1dfd 100755 --- a/packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php @@ -516,6 +516,7 @@ return [ 'transaction-saved' => 'The transaction has been saved', 'already-paid' => 'This invoice has already been paid', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/ru/app.php b/packages/Webkul/Admin/src/Resources/lang/ru/app.php index 6c1dfc0ee..8ad088e81 100755 --- a/packages/Webkul/Admin/src/Resources/lang/ru/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/ru/app.php @@ -526,6 +526,7 @@ return [ 'transaction-saved' => 'The transaction has been saved', 'already-paid' => 'This invoice has already been paid', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/sin/app.php b/packages/Webkul/Admin/src/Resources/lang/sin/app.php index 6c1dfc0ee..8ad088e81 100755 --- a/packages/Webkul/Admin/src/Resources/lang/sin/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/sin/app.php @@ -526,6 +526,7 @@ return [ 'transaction-saved' => 'The transaction has been saved', 'already-paid' => 'This invoice has already been paid', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/tr/app.php b/packages/Webkul/Admin/src/Resources/lang/tr/app.php index a43eb0d77..cd1a5034b 100644 --- a/packages/Webkul/Admin/src/Resources/lang/tr/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/tr/app.php @@ -517,6 +517,7 @@ return [ 'transaction-saved' => 'İşlem kaydedildi', 'already-paid' => 'Bu fatura zaten ödendi', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], diff --git a/packages/Webkul/Admin/src/Resources/lang/zh_CN/app.php b/packages/Webkul/Admin/src/Resources/lang/zh_CN/app.php index 4de663efd..16759f6e2 100644 --- a/packages/Webkul/Admin/src/Resources/lang/zh_CN/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/zh_CN/app.php @@ -517,6 +517,7 @@ return [ 'transaction-saved' => '交易已保存', 'already-paid' => '此发票已支付', 'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.', + 'transaction-amount-zero' => 'Transaction amount can be zero or less', ], ], ], From 749e7521631b82af2100eac52eec5d4192ad2978 Mon Sep 17 00:00:00 2001 From: sanjeev Date: Thu, 28 Jul 2022 12:25:21 +0530 Subject: [PATCH 02/10] Showing discount to varient of config products for which catalog rule applied --- .../views/products/view/configurable-options.blade.php | 4 +++- .../views/shop/products/view/configurable-options.blade.php | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/Webkul/Shop/src/Resources/views/products/view/configurable-options.blade.php b/packages/Webkul/Shop/src/Resources/views/products/view/configurable-options.blade.php index e971ef29c..ff85a5ac2 100755 --- a/packages/Webkul/Shop/src/Resources/views/products/view/configurable-options.blade.php +++ b/packages/Webkul/Shop/src/Resources/views/products/view/configurable-options.blade.php @@ -302,11 +302,13 @@ if (this.childAttributes.length == selectedOptionCount) { priceLabelElement.style.display = 'none'; + regularPriceElement.style.display = 'none'; priceElement.innerHTML = this.config.variant_prices[this.simpleProduct].final_price.formated_price; - if (regularPriceElement) { + if (regularPriceElement && this.config.variant_prices[this.simpleProduct].final_price.price < this.config.variant_prices[this.simpleProduct].regular_price.price) { regularPriceElement.innerHTML = this.config.variant_prices[this.simpleProduct].regular_price.formated_price; + regularPriceElement.style.display = 'inline-block'; } eventBus.$emit('configurable-variant-selected-event', this.simpleProduct) diff --git a/packages/Webkul/Velocity/src/Resources/views/shop/products/view/configurable-options.blade.php b/packages/Webkul/Velocity/src/Resources/views/shop/products/view/configurable-options.blade.php index 56a8e4143..fbb356910 100644 --- a/packages/Webkul/Velocity/src/Resources/views/shop/products/view/configurable-options.blade.php +++ b/packages/Webkul/Velocity/src/Resources/views/shop/products/view/configurable-options.blade.php @@ -319,11 +319,13 @@ if (this.childAttributes.length == selectedOptionCount) { priceLabelElement.style.display = 'none'; + regularPriceElement.style.display = 'none'; priceElement.innerHTML = this.config.variant_prices[this.simpleProduct].final_price.formated_price; - if (regularPriceElement) { + if (regularPriceElement && this.config.variant_prices[this.simpleProduct].final_price.price < this.config.variant_prices[this.simpleProduct].regular_price.price) { regularPriceElement.innerHTML = this.config.variant_prices[this.simpleProduct].regular_price.formated_price; + regularPriceElement.style.display = 'inline-block'; } eventBus.$emit('configurable-variant-selected-event', this.simpleProduct) From 26ef6973b0b2df9bae1788da0e758b78db7c455d Mon Sep 17 00:00:00 2001 From: sanjeev Date: Thu, 25 Aug 2022 15:56:30 +0530 Subject: [PATCH 03/10] Conditions added --- .../view/configurable-options.blade.php | 5 +- .../publishable/assets/css/velocity.css | 2 +- .../publishable/assets/js/components.js | 2 +- .../assets/js/components.js.LICENSE.txt | 6 +- .../publishable/assets/js/jquery-ez-plus.js | 2 +- .../publishable/assets/js/manifest.js | 2 +- .../publishable/assets/js/velocity-core.js | 2 +- .../publishable/assets/js/velocity.js | 2 +- .../publishable/assets/mix-manifest.json | 55 ++++++++++++++++--- .../view/configurable-options.blade.php | 5 +- 10 files changed, 66 insertions(+), 17 deletions(-) diff --git a/packages/Webkul/Shop/src/Resources/views/products/view/configurable-options.blade.php b/packages/Webkul/Shop/src/Resources/views/products/view/configurable-options.blade.php index ff85a5ac2..54778d8d0 100755 --- a/packages/Webkul/Shop/src/Resources/views/products/view/configurable-options.blade.php +++ b/packages/Webkul/Shop/src/Resources/views/products/view/configurable-options.blade.php @@ -302,7 +302,10 @@ if (this.childAttributes.length == selectedOptionCount) { priceLabelElement.style.display = 'none'; - regularPriceElement.style.display = 'none'; + + if (regularPriceElement) { + regularPriceElement.style.display = 'none'; + } priceElement.innerHTML = this.config.variant_prices[this.simpleProduct].final_price.formated_price; diff --git a/packages/Webkul/Velocity/publishable/assets/css/velocity.css b/packages/Webkul/Velocity/publishable/assets/css/velocity.css index f2f7a2b05..5a15968f9 100644 --- a/packages/Webkul/Velocity/publishable/assets/css/velocity.css +++ b/packages/Webkul/Velocity/publishable/assets/css/velocity.css @@ -1,2 +1,2 @@ @import url(https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap); -.velocity-icon{height:55px;width:60px}@font-face{font-display:swap;font-family:Webkul Rango;font-style:normal;font-weight:400;src:url(../fonts/font-rango/rango.eot?o0evyv);src:url(../fonts/font-rango/rango.eot?o0evyv#iefix) format("embedded-opentype"),url(../fonts/font-rango/rango.ttf?o0evyv) format("truetype"),url(../fonts/font-rango/rango.woff?o0evyv) format("woff"),url(../fonts/font-rango/rango.svg?o0evyv#rango) format("svg")}.wk-icon{color:#0041ff;font-size:20px;font-weight:400;text-align:center}[class*=" rango-"],[class^=rango-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:Webkul Rango!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.rango-activity:before{content:""}.rango-announcement:before{content:""}.rango-arrow-circle-down:before{content:""}.rango-arrow-circle-left:before{content:""}.rango-arrow-circle-right:before{content:""}.rango-arrow-circle-up:before{content:""}.rango-arrow-down:before{content:""}.rango-arrow-left:before{content:""}.rango-arrow-right:before{content:""}.rango-arrow-up:before{content:""}.rango-auction:before{content:""}.rango-baby:before{content:""}.rango-bag:before{content:""}.rango-ball-2:before{content:""}.rango-bar-code:before{content:""}.rango-batch:before{content:""}.rango-book:before{content:""}.rango-calender:before{content:""}.rango-camera:before{content:""}.rango-car:before{content:""}.rango-card:before{content:""}.rango-cart-1:before{content:""}.rango-cart-2:before{content:""}.rango-cart-3:before{content:""}.rango-circel-1:before{content:""}.rango-circel:before{content:""}.rango-circle-1:before{content:""}.rango-circle-2:before{content:""}.rango-circle-check:before{content:""}.rango-clear:before{content:""}.rango-close-2:before{content:""}.rango-close:before{content:""}.rango-cloth:before{content:""}.rango-coin:before{content:""}.rango-copy:before{content:""}.rango-currency:before{content:""}.rango-delete:before{content:""}.rango-donwload-1:before{content:""}.rango-download-1:before{content:""}.rango-edit-pencil:before{content:""}.rango-ellipse:before{content:""}.rango-envelop:before{content:""}.rango-exchange:before{content:""}.rango-exchnage:before{content:""}.rango-expend-collaps:before{content:""}.rango-expend:before{content:""}.rango-eye-hide:before{content:""}.rango-eye-visible:before{content:""}.rango-facebook:before{content:""}.rango-file:before{content:""}.rango-filter:before{content:""}.rango-flag:before{content:""}.rango-folder:before{content:""}.rango-food:before{content:""}.rango-furniture:before{content:""}.rango-gift:before{content:""}.rango-globe:before{content:""}.rango-google-plus:before{content:""}.rango-gps:before{content:""}.rango-graph-1:before{content:""}.rango-graph:before{content:""}.rango-heart-fill:before{content:""}.rango-heart:before{content:""}.rango-hold-cart:before{content:""}.rango-home:before{content:""}.rango-info:before{content:""}.rango-instagram:before{content:""}.rango-language-1:before{content:""}.rango-language:before{content:""}.rango-laptop:before{content:""}.rango-limit:before{content:""}.rango-linked-in:before{content:""}.rango-lipstick:before{content:""}.rango-location:before{content:""}.rango-lock-1:before{content:""}.rango-lock-2:before{content:""}.rango-map:before{content:""}.rango-message-1:before{content:""}.rango-message:before{content:""}.rango-minus:before{content:""}.rango-mobile:before{content:""}.rango-more:before{content:""}.rango-neckless:before{content:""}.rango-next:before{content:""}.rango-notification:before{content:""}.rango-num-pad:before{content:""}.rango-percentage:before{content:""}.rango-phone:before{content:""}.rango-picture:before{content:""}.rango-pintrest:before{content:""}.rango-play:before{content:""}.rango-plus:before{content:""}.rango-pos:before{content:""}.rango-power:before{content:""}.rango-previous:before{content:""}.rango-printer:before{content:""}.rango-product-add:before{content:""}.rango-product-retrun:before{content:""}.rango-product:before{content:""}.rango-produt-group:before{content:""}.rango-push:before{content:""}.rango-quotation:before{content:""}.rango-refresh:before{content:""}.rango-refrigrator:before{content:""}.rango-return-credit:before{content:""}.rango-return:before{content:""}.rango-search:before{content:""}.rango-security:before{content:""}.rango-setting-cog:before{content:""}.rango-setting-reset:before{content:""}.rango-share-1:before{content:""}.rango-share-2:before{content:""}.rango-shoes:before{content:""}.rango-shop:before{content:""}.rango-sign-in:before{content:""}.rango-sign-out:before{content:""}.rango-sort-1:before{content:""}.rango-sort-2:before{content:""}.rango-square-1:before{content:""}.rango-square-3:before{content:""}.rango-square-4:before{content:""}.rango-square-tick-fill:before{content:""}.rango-square:before{content:""}.rango-star-fill:before{content:""}.rango-star:before{content:""}.rango-stat-down:before{content:""}.rango-stat-up:before{content:""}.rango-support-head:before{content:""}.rango-t-shirt:before{content:""}.rango-table:before{content:""}.rango-tag-1:before{content:""}.rango-tag-2:before{content:""}.rango-tag-3:before{content:""}.rango-tag-4:before{content:""}.rango-tick-2:before{content:""}.rango-tick-square:before{content:""}.rango-tick:before{content:""}.rango-toggle:before{content:""}.rango-trophy:before{content:""}.rango-twitter:before{content:""}.rango-upload-2:before{content:""}.rango-upload:before{content:""}.rango-user-add:before{content:""}.rango-user-cash:before{content:""}.rango-user-group:before{content:""}.rango-user-info:before{content:""}.rango-user-owner:before{content:""}.rango-user-shop:before{content:""}.rango-user:before{content:""}.rango-van-ship:before{content:""}.rango-video-camera:before{content:""}.rango-video:before{content:""}.rango-view-grid:before{content:""}.rango-view-list:before{content:""}.rango-wifi-on:before{content:""}.rango-wifi:before{content:""}.rango-youtube:before{content:""}.rango-zoom-minus:before{content:""}.rango-zoom-plus:before{content:""}.velocity-icon{background-image:url(../images/Icon-Velocity.svg);height:48px;width:48px}.camera-icon,.velocity-icon{background-size:cover;display:inline-block}.camera-icon{background-image:url(../images/icon-camera.svg);width:24px}.active .velocity-icon,.active.velocity-icon,.router-link-active .velocity-icon,.router-link-active.velocity-icon{background-image:url(../images/Icon-Velocity-Active.svg)}.eye-icon{background-image:url(../images/icon-eye.svg);height:24px;width:24px}.cross-icon{background-image:url(../images/icon-crossed.svg);height:18px;width:18px}.ltr{direction:ltr}.rtl{direction:rtl}.padding-10,.padding-15{padding:15px}.fw5{font-weight:500}.fw6,.product-detail .right .info .price,.product-detail .right .info h2,.product-detail .right h3,.product-detail .right h4{font-weight:600}.fw7{font-weight:700}.fs13{font-size:13px!important}.fs14,.main-content-wrapper{font-size:14px}.fs15{font-size:15px}.account-content .account-layout .bottom-toolbar .pagination .page-item,.fs16,.product-detail .right{font-size:16px}.fs16i{font-size:16px!important}.fs17{font-size:17px}.fs18,.product-detail .right h3{font-size:18px}.fs19{font-size:19px}.fs20,.product-detail .right .info .price{font-size:20px}.fs24,.product-detail .right .info h2{font-size:24px}.fs30,.product-detail .right .info .price .card-current-price{font-size:30px}.fs40{font-size:40px}.pt0{padding-top:0!important}.pt10{padding-top:10px!important}.pt15{padding-top:15px!important}.pt20{padding-top:20px!important}.pl0{padding-left:0!important}.pl5{padding-left:5px!important}.pl15{padding-left:15px!important}.pl10{padding-left:10px!important}.pl20{padding-left:20px!important}.pl30{padding-left:30px!important}.pl40{padding-left:40px!important}.pr0{padding-right:0!important}.pr5{padding-right:5px!important}.pr15{padding-right:15px!important}.pr40{padding-right:40px!important}.pb0{padding-bottom:0!important}.pb10{padding-bottom:10px!important}.pb15{padding-bottom:15px!important}.pb30{padding-bottom:30px!important}.mt5{margin-top:5px!important}.mt10{margin-top:10px}.mt15{margin-top:15px!important}.mr5{margin-right:5px}.mr7{margin-right:7px}.mr10{margin-right:10px}.mr15,.product-detail .right .options .buttons :not(:last-child),.product-detail .right .options .quantity>label{margin-right:15px}.mr20{margin-right:20px}.mb5{margin-bottom:5px!important}.mb10{margin-bottom:10px!important}.mb15{margin-bottom:15px}.mb20,.product-detail .right .options>*{margin-bottom:20px}.mb25{margin-bottom:25px}.mb30,.product-detail .right .customer-reviews .row{margin-bottom:30px}.ml0,.product-detail .right>div:not(:first-child){margin-left:0!important}.ml5{margin-left:5px}.ml10{margin-left:10px!important}.ml15{margin-left:15px!important}.ml30{margin-left:30px!important}.w-0{width:0!important}.w-5{width:5px!important}.w-10{width:10px!important}.w-15{width:15px!important}.body-blur{filter:blur(4px);-webkit-filter:blur(4px)}.no-margin{margin:0!important}.flex-wrap{flex-wrap:nowrap}.category-list-container .category,.cursor-pointer,.qty-btn>:not(:nth-child(2)){cursor:pointer}.cursor-not-allowed{cursor:not-allowed!important}.cursor-default{cursor:default}.grey{color:#9e9e9e}.clr-light{color:rgba(0,0,0,.53)}.clr-dark,.footer .footer-content .footer-statics .software-description p{color:hsla(0,0%,100%,.52)}.font-clr{color:rgba(0,0,0,.83)}.display-inbl,.product-detail .right .options .quantity>label{display:inline-block!important}.display-block,.product-detail .right .options label{display:block!important}.align-vertical-middle{vertical-align:middle}.full-width{width:100%}.full-image{height:100%;width:100%}.card-product-image-container .background-image-group,.full-back-size{background-size:100% 100%!important}.max-width-100{max-width:100%!important}.no-border{border:none!important}.back-pos-rt{background-position:100%}.account-content .account-layout .bottom-toolbar .pagination .page-item,.cart-details .continue-shopping-btn,.theme-btn{background-color:#26a37c!important;border:1px solid transparent;color:#fff!important;cursor:pointer;font-weight:600;padding:10px 20px;vertical-align:top;z-index:10}.account-content .account-layout .bottom-toolbar .pagination .page-item:focus,.account-content .account-layout .bottom-toolbar .pagination .page-item:hover,.cart-details .continue-shopping-btn:focus,.cart-details .continue-shopping-btn:hover,.theme-btn:focus,.theme-btn:hover{background-color:#26a37c!important;border:1px solid #247959;box-shadow:none;outline:none}.account-content .account-layout .bottom-toolbar .pagination .cart-details .continue-shopping-btn.page-item,.account-content .account-layout .bottom-toolbar .pagination .light.page-item,.account-content .account-layout .bottom-toolbar .pagination .page-item,.account-content .account-layout .bottom-toolbar .pagination .theme-btn.page-item,.cart-details .account-content .account-layout .bottom-toolbar .pagination .continue-shopping-btn.page-item,.cart-details .light.continue-shopping-btn,.theme-btn.light{background-color:#fff!important;border:1px solid rgba(0,0,0,.12);box-shadow:0 1px 0 0 #cfcfcf;color:#26a37c!important;z-index:0}.account-content .account-layout .bottom-toolbar .pagination .page-item:focus,.account-content .account-layout .bottom-toolbar .pagination .page-item:hover,.cart-details .light.continue-shopping-btn:focus,.cart-details .light.continue-shopping-btn:hover,.theme-btn.light:focus,.theme-btn.light:hover{background-color:#f5f5f5!important;border:1px solid #247959;box-shadow:none;outline:none}.account-content .account-layout .bottom-toolbar .pagination .page-item:hover,.btn-add-to-cart:hover,.cart-details .continue-shopping-btn:hover,.theme-btn:hover{background-color:#247959!important;border-color:#247959!important;text-decoration:none}.account-content .account-layout .bottom-toolbar .pagination .page-item:hover,.btn-add-to-cart:hover.light,.cart-details .continue-shopping-btn:hover.light,.theme-btn:hover.light{border:1px solid rgba(0,0,0,.12)!important}.norm-btn{background-color:#fff!important;border:1px solid #ccc;border-radius:2px;color:#111!important;font-size:14px;padding:9px 20px;vertical-align:top}.sale-btn{background-color:#26a37c;border:none;border-radius:12px;color:#fff;font-size:14px;padding:3px 10px;position:absolute;z-index:10}.bg-image,.small-card-container .product-image{background-position:top;background-repeat:no-repeat;background-size:contain;width:100%}#top #account .welcome-content *,.material-icons,.unselectable *{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.card-arrow-container .card-arrow{background-color:#2b2b2b;box-shadow:0 0 0 1px rgba(39,44,48,.05),0 2px 7px 1px rgba(39,44,48,.16);display:block;height:20px;position:absolute;transform:rotate(45deg);-webkit-transform:rotate(45deg);width:20px;z-index:10}.card-arrow-container .card-arrow-tp{left:50%;top:-10px}.card-arrow-container .card-arrow-rt{right:-10px;top:50%}.card-arrow-container .card-arrow-bt{left:50%;top:calc(100% - 10px)}.card-arrow-container .card-arrow-lt{left:-7px;top:50%}.lg-card-container{cursor:pointer}.lg-card-container a{color:rgba(0,0,0,.83);text-decoration:none}.lg-card-container #quick-view-btn-container :hover{color:#fff!important}.lg-card-container .background-image-group{background-size:contain!important}.lg-card-container.grid-card .wishlist-icon i,.lg-card-container.list-card .wishlist-icon i{padding-left:10px}.lg-card-container.grid-card .product-price span:first-child,.lg-card-container.grid-card .product-price span:last-child,.lg-card-container.list-card .product-price span:first-child,.lg-card-container.list-card .product-price span:last-child{font-size:18px;font-weight:600}.lg-card-container.grid-card .card-current-price,.lg-card-container.list-card .card-current-price{font-size:18px}.lg-card-container.grid-card .product-rating .stars,.lg-card-container.list-card .product-rating .stars{display:inline-block}.lg-card-container.grid-card .product-rating span,.lg-card-container.list-card .product-rating span{vertical-align:middle}.lg-card-container.grid-card .product-information>div:not(:last-child),.lg-card-container.list-card .product-information>div:not(:last-child){margin-bottom:5px}.lg-card-container.grid-card img,.lg-card-container.list-card img{width:100%}.lg-card-container.list-card{margin-left:0;padding-left:0}.lg-card-container.list-card .background-image-group{height:100%}.lg-card-container.list-card .product-image{float:left;height:270px;max-width:200px;position:relative;width:30%}.lg-card-container.list-card .product-image .quick-view-btn-container button{left:calc(50% - 40px)}.lg-card-container.list-card .product-information{float:right;padding-left:20px;width:70%}.lg-card-container.list-card .product-rating .stars{display:inline-block}.lg-card-container.list-card .product-rating span{vertical-align:top}.lg-card-container.list-card .product-information{display:table;height:200px}.lg-card-container.list-card .product-information>div{display:table-cell}.lg-card-container.list-card .product-price .sticker{display:block}.lg-card-container.list-card .wishlist-icon{display:inline-table;height:40px;padding-left:0!important;vertical-align:top}.lg-card-container.list-card .wishlist-icon i{display:table-cell;padding-left:0!important;vertical-align:middle}.lg-card-container.list-card .compare-icon{display:inline-table;padding-left:0}.lg-card-container.list-card .add-to-cart-btn{display:inline-block;float:left}.lg-card-container.grid-card{padding:15px}.lg-card-container.grid-card .product-image{background:#f2f2f2;margin-bottom:10px;max-height:350px;max-width:280px}.lg-card-container.grid-card .product-image img{display:block;height:100%}.lg-card-container.list-card:not(:first-child){margin-top:20px}.carousel-products.with-recent-viewed .btn-add-to-cart,.small-padding{padding:3px 4px!important}.medium-padding{padding:3px 10px!important}.general-container{cursor:pointer}.lg-card-container>.product-card{border:none}.general-container:hover,.lg-card-container:hover,.product-card-new:hover{box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.lg-card-container:hover .quick-view-btn-container{display:block}.product-card-new .product-rating,.text-nowrap{color:#555;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.small-card-container{cursor:pointer;margin-bottom:10px;margin-left:0!important;margin-right:0!important}.small-card-container .material-icons{font-size:16px}.small-card-container .product-image-container{display:inline-block;padding:0}.small-card-container .product-image{background-position:50%;height:70px;width:70px}.small-card-container .card-body{display:inline-block;padding:10px 0!important;width:50%}.small-card-container .card-body .product-name{color:#000;font-size:18px;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.small-card-container .regular-price,.small-card-container .sticker{display:none}.small-card-container:hover{box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.text-down-3{position:relative;top:3px}.text-down-4{position:relative;top:4px}.text-down-6{position:relative;top:6px}.text-up-1{position:relative;top:-1px}.text-up-4{position:relative;top:-4px}.text-up-14{position:relative;top:-14px}ul.circle-list{padding-top:10px;text-align:center}ul.circle-list li.circle{border:1px solid #d8d8d8;border-radius:50%;cursor:pointer;display:inline-block;height:10px;width:10px}ul.circle-list li.circle.fill{background:#d8d8d8}ul.circle-list li.circle:not(:last-child){margin-right:6px}.hide{display:none}.category-breadcrumb{font-size:16px}.link-color{color:#4d7ea8}.account-content .account-layout .bottom-toolbar .pagination a.page-item,a.unset{color:unset!important;text-decoration:none!important}a.active-hover:hover{color:#4d7ea8!important;text-decoration:underline!important}a.remove-decoration,a.remove-decoration:active,a.remove-decoration:focus,a.remove-decoration:hover{text-decoration:none!important}.dropdown-icon:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:1rem;vertical-align:middle}.disable-box-shadow,.disable-box-shadow:active,.disable-box-shadow:focus,input:focus,select:focus{box-shadow:none!important;-o-box-shadow:0 5px 15px transparent;box-shadow:0 5px 15px transparent;outline:none!important}.control-error{color:#f05153}.mandatory,.required{width:100%}.mandatory:after,.required:after{color:#f05153;content:"*";font-size:16px;margin-left:-1px}a.default{color:rgba(0,0,0,.83)!important;text-decoration:none!important}.VueCarousel{cursor:pointer;width:100%}.VueCarousel .VueCarousel-inner{padding-top:5px}.VueCarousel .VueCarousel-slide:first-of-type .product-card-new{margin-left:5px}.VueCarousel .VueCarousel-navigation .VueCarousel-navigation-prev{left:10px}.VueCarousel .VueCarousel-navigation .VueCarousel-navigation-next{right:12px}.VueCarousel .VueCarousel-navigation span{font-size:32px}.navigation-hide .VueCarousel-navigation,.pagination-hide .VueCarousel-pagination{display:none}.layered-filter-wrapper,.scrollable{-ms-overflow-style:none;max-height:100%;overflow-y:scroll;scrollbar-width:none}.layered-filter-wrapper::-webkit-scrollbar,.scrollable::-webkit-scrollbar{width:0!important}button[disabled]{cursor:not-allowed;opacity:.5}.max-sm-img-dimension{max-height:110px;max-width:110px}.max-sm-img-dimension img{width:100%}.max-width{margin:0 auto!important;width:1440px!important}.styled-select{appearance:none;-moz-appearance:none;-webkit-appearance:none}.styled-select+.select-icon-container{position:relative}.styled-select+.select-icon-container .select-icon{font-size:16px;left:unset;pointer-events:none;position:absolute;right:10px;top:-24px}.down-arrow-container{color:rgba(0,0,0,.83);display:inline-block;position:relative;vertical-align:top}.down-arrow-container .rango-arrow-down{font-size:16px;left:-5px;position:absolute;top:10px}.select-icon{font-size:16px;left:-7px;position:relative;top:5px}.normal-text{color:#141516}.normal-white-text{color:hsla(0,0%,100%,.83)}.display-table{display:table}.display-table .cell{display:table-cell;vertical-align:middle}.account-content .account-layout .bottom-toolbar .pagination .page-item.next .angle-left-icon,.account-content .account-layout .bottom-toolbar .pagination .page-item.next .angle-right-icon,.account-content .account-layout .bottom-toolbar .pagination .page-item.previous .angle-left-icon,.account-content .account-layout .bottom-toolbar .pagination .page-item.previous .angle-right-icon,.account-content .sidebar .customer-sidebar .navigation li i.icon,.pagination .page-item.next .angle-left-icon,.pagination .page-item.next .angle-right-icon,.pagination .page-item.previous .angle-left-icon,.pagination .page-item.previous .angle-right-icon,.rango-default{speak:none;-webkit-font-smoothing:antialiased;font-family:Webkul Rango!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.max-height-350{max-height:350px}.border-normal{border:1px solid #dcdcdc}.has-error input,.has-error select,.has-error textarea{border-color:#f05153!important}.modal-parent{background:rgba(0,0,0,.7);height:100%;position:fixed;top:0;width:100%;z-index:1001}.compare-icon,.wishlist-icon{cursor:pointer;display:table;height:38px;margin-left:10px}.compare-icon i,.wishlist-icon i{display:table-cell;vertical-align:middle}.qty-btn,.qty-btn>*{display:inline-block;height:36px}.qty-btn>*{border:1px solid #ccc;line-height:3.5rem;padding:0 10px;vertical-align:top}.qty-btn>:not(:first-child){border-left:none;position:relative}.qty-btn>:nth-child(2){left:-4px}.qty-btn>:nth-child(3){left:-7px}.btn-add-to-cart{background-color:#26a37c!important;border-color:#26a37c!important;border-radius:0!important;color:#fff!important;padding:3px 14px!important}.btn-add-to-cart.large{padding:12px 18px}.btn-add-to-cart .rango-cart-1{padding-right:5px}.accordian .accordian-header{border-bottom:1px solid #d3d3d3;color:#3a3a3a;cursor:pointer;display:inline-block;font-size:18px;padding:20px 0;width:100%}.accordian .accordian-header i.rango-arrow{float:right;font-size:24px}.accordian .accordian-header i.rango-arrow:before{content:""}.accordian .accordian-content{display:none;padding-bottom:20px;width:100%}.accordian.active .accordian-header{border-bottom:0}.accordian.active .accordian-header i.rango-arrow:before{content:""}.accordian.active .accordian-content{border-bottom:1px solid #d3d3d3;display:inline-block}#date-of-birth:after{background-image:url(../images/icon-calendar.svg);content:"";display:inline-block;height:24px;margin-left:-34px;pointer-events:none;position:absolute;top:14%;vertical-align:middle;width:24px}.rtl #date-of-birth:after{left:54px}.review-page-container{padding:20px;position:relative}.review-page-container>div:first-child{height:-webkit-max-content;height:-moz-max-content;height:max-content;position:-webkit-sticky;position:sticky;top:40px}.review-page-container .category-breadcrumb{margin-bottom:30px}.review-page-container h2{font-size:24px;font-weight:600}.review-page-container h3{font-size:20px;font-weight:600}.review-page-container h4{font-size:16px;font-weight:600}.review-page-container .customer-reviews>div.row{display:block;padding-bottom:30px}.review-page-container .submit-btn{font-weight:600}.review-page-container .submit-btn button{padding:10px 15px}.customer-rating .rating-container{padding:30px 0}.customer-rating a{color:#4d7ea8}.customer-rating a:hover{text-decoration:none}.customer-rating .col-lg-6:first-child{border-right:1px solid #ccc}.customer-rating .rating-bar{background-color:#f7f7f9;height:5px;padding:0;position:relative;top:12px}.customer-rating .rating-bar>div{background-color:#111;height:100%;width:0}.account-content .account-layout .bottom-toolbar .pagination .customer-rating .page-item,.cart-details .customer-rating .light.continue-shopping-btn,.customer-rating .account-content .account-layout .bottom-toolbar .pagination .page-item,.customer-rating .cart-details .light.continue-shopping-btn,.customer-rating .theme-btn.light{margin-top:10px}.review-form{width:80%}.review-form>div{padding-top:30px}.review-form>div label{display:block;font-size:14px;font-weight:500}.review-form>div input,.review-form>div textarea{border:1px solid #ccc;border-radius:1px;font-size:16px;padding:5px 16px;resize:none;width:100%}.filters-container{margin:20px 0}.filters-container .toolbar-wrapper>div{display:inline-block;margin:0 20px 0 0}.filters-container .toolbar-wrapper>div label{font-weight:500;margin-right:10px}.filters-container .toolbar-wrapper>div select{padding:6px 16px}.filters-container .toolbar-wrapper>div .down-icon-position{background-color:#fff;pointer-events:none}.filters-container .toolbar-wrapper>div:not(:first-child){vertical-align:super}.filters-container .toolbar-wrapper .limiter:after{margin-left:10px}.view-mode{margin-bottom:20px}.view-mode .rango-view-grid-container{color:rgba(0,0,0,.83);cursor:pointer;display:inline-block;height:36px;padding:6px 0 0 5px;width:36px}.view-mode .rango-view-grid-container.active{background-color:#26a37c;color:#fff}.view-mode .rango-view-list-container{color:rgba(0,0,0,.83);cursor:pointer;display:inline-block;height:36px;padding:6px 0 0 5px;width:36px}.view-mode .rango-view-list-container.active{background-color:#26a37c;color:#fff}.modal-container{-webkit-animation:jelly .5s ease-in-out;animation:jelly .5s ease-in-out;-webkit-animation:fade-in-white .3s ease-in-out;animation:fade-in-white .3s ease-in-out;background:#fff;border-radius:5px;box-shadow:0 15px 25px 0 rgba(0,0,0,.03),0 20px 45px 5px rgba(0,0,0,.2);font-size:14px;left:50%;margin-left:-300px;max-height:80%;max-width:80%;overflow-y:auto;position:fixed;top:100px;width:600px;z-index:11}.modal-container .modal-header h3{color:rgba(0,0,0,.83);display:inline-block;font-size:20px;margin:0}.modal-container .modal-header .icon{cursor:pointer}.modal-container .modal-header .icon.remove-icon{background-image:url(../images/Icon-remove.svg);height:24px;width:24px}.modal-container .modal-body{padding:20px}.modal-container .modal-body .control-group .control{width:100%}.product-card-new{border:none!important;margin:0 5px 10px 10px;width:12rem}.product-card-new .category-product-image-container{height:190px;margin:0 auto;position:relative}.product-card-new .category-product-image-container img{max-height:100%;max-width:100%}.product-card-new .product-image-container{max-height:190px;position:relative}.product-card-new .product-image-container img{max-height:190px;min-height:190px;width:100%}.product-card-new .card-current-price{font-size:18px}.product-card-new .product-rating .stars{display:inline-block}.product-card-new .product-rating span{font-size:14px;vertical-align:middle}.product-card-new .product-rating .material-icons{font-size:16px}.product-card-new .card-body{cursor:default}.product-card-new .card-body>div:last-child{margin-top:10px}.product-card-new .card-body .product-name,.product-card-new .card-body .product-rating{margin-bottom:2px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:15rem}.product-card-new .card-body .product-price{margin-bottom:15px}.product-card-new .sticker{display:block}.product-card-new .card-body .compare-icon,.product-card-new .card-body .wishlist-icon{display:none;left:0;margin-left:5px;margin-right:5px;position:absolute;top:10px}.product-card-new .card-body .compare-icon{left:unset;right:0}.product-card-new .card-body .add-to-cart-btn{position:relative;width:100%}.product-card-new .card-body .add-to-cart-btn .btn-add-to-cart{max-width:140px;max-width:100%!important;width:100%}.carousel-products.with-recent-viewed .product-card-new .card-body .add-to-cart-btn .btn-add-to-cart,.product-card-new .card-body .add-to-cart-btn .btn-add-to-cart.small-padding,.product-card-new .card-body .add-to-cart-btn .carousel-products.with-recent-viewed .btn-add-to-cart{max-width:130px}.quick-view-btn-container{bottom:10px;display:none;left:-20px;position:absolute;width:100%}.quick-view-btn-container span{color:#fff;font-size:16px;left:32%;position:absolute;top:-28px;z-index:1}.quick-view-btn-container button{background-color:#0d2438;border:none;color:#fff;font-size:16px;left:30%;opacity:.8;padding:5px 10px 7px 24px;position:absolute;top:-36px}.product-card-new:hover #quick-view-btn-container{display:block}.product-card-new:hover .category-product-image-container,.product-card-new:hover .product-image-container{overflow:hidden}.product-card-new:hover .category-product-image-container img,.product-card-new:hover .product-image-container img{transform:scale(1.05);transition:all .5s}.product-card-new:hover .compare-icon,.product-card-new:hover .wishlist-icon{display:block}.product-card-new:hover .sticker{display:none}.lg-card-container:hover .product-image{overflow:hidden}.lg-card-container:hover .product-image img{transform:scale(1.05);transition:all .5s}.quantity label{float:left;padding:5px 15px 10px 0}.quantity .input-btn-group button{background:transparent;border:1px solid #dcdcdc;height:38px;padding:7px;text-align:center}.quantity .input-btn-group button.decrease{border-right:0}.quantity .input-btn-group button.increase{border-left:0}.quantity .input-btn-group button:active,.quantity .input-btn-group button:focus,.quantity .input-btn-group button:hover{outline:none}.quantity .input-btn-group button .rango-minus,.quantity .input-btn-group button .rango-plus{font-size:20px;vertical-align:middle}.quantity .input-btn-group input{border:1px solid #dcdcdc;border-left:0;border-right:0;font-size:16px;font-weight:600;height:38px;margin-left:-5px;margin-right:-5px;max-width:50px;text-align:center;vertical-align:top}.quantity.has-error button{border-color:#fc6868;color:#fc6868}.quantity .control-error{display:block}.form-container .container{margin:0 auto;padding-top:30px;width:65%}.form-container .container .heading{display:inline-block;margin-bottom:28px;width:100%}.form-container .container .heading h2{display:inline-block;line-height:4rem}.form-container .container .heading .btn-new-customer{float:right;font-size:16px}.form-container .container .body{border:1px solid #ccc;font-size:16px;margin-bottom:60px;padding:35px 55px}.form-container .container .body .form-header{margin-bottom:20px}.form-container .container .body form>div{padding-bottom:20px}.form-container .back-button{float:right}.container-right>.recently-viewed{padding-top:20px}.rango-star{cursor:default}.customer-options{float:right;padding:20px;top:40px;width:200px!important}.customer-options .customer-session{padding:10px 20px 0}.customer-options .customer-session label{color:#9e9e9e;font-size:18px;text-transform:uppercase}.customer-options li{height:unset!important;padding:3px 0}.customer-options li a{display:block;padding:0 20px!important}.customer-options a{font-size:16px}.cart-btn-collection button[type=button].btn-secondary{background-color:#fff;border:none;color:#111;font-size:16px}.cart-btn-collection button[type=button].btn-secondary :hover{background-color:#fff!important;color:#111!important}.cart-btn-collection button[type=button].btn-secondary :active,.cart-btn-collection button[type=button].btn-secondary :focus{box-shadow:none;outline:none}.cart-btn-collection button[type=button].btn-secondary #cart-count{background:#21a179;border-radius:50%;color:#fff;left:-20px;min-width:20px;padding:4px;position:relative;top:-15px}.dropdown-icon-custom:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;color:#000;content:"";display:inline-block;font-size:16px;margin-left:1rem;position:relative;top:-5px;vertical-align:middle}#cart-modal-content{border-top:4px solid #26a37c;position:absolute;right:0;top:40px;width:350px;z-index:100}#cart-modal-content .close{padding:0;position:relative;right:15px;top:12px}#cart-modal-content .mini-cart-container{font-size:14px;height:100%;max-height:200px;overflow-y:scroll;padding:10px 15px 0 20px;width:100%}#cart-modal-content .small-card-container{margin:0;padding:0;width:100%}#cart-modal-content .small-card-container .product-image-container{border:1px solid #ececec;margin:10px 10px 10px 0}#cart-modal-content .small-card-container label{float:left;margin-top:7px}#cart-modal-content .small-card-container input{border:1px solid #ececec;font-weight:500;height:36px;text-align:center;width:40px}#cart-modal-content .small-card-container .card-total-price{float:right}#cart-modal-content .small-card-container .remove-item{background:#111;border-radius:50%;color:#fff;left:-10px;padding:0 4px;position:absolute;top:-10px}#cart-modal-content .small-card-container .remove-item .rango-close{font-size:12px;font-weight:600;padding:0}#cart-modal-content .small-card-container:hover{box-shadow:none}#cart-modal-content .modal-footer{padding-right:15px}.cart-details{padding:40px 0}.cart-details h1{margin-bottom:30px}.cart-details h2{margin-bottom:25px}.cart-details .cart-details-header .cart-header{border-bottom:2px solid #e5e5e5;margin-bottom:20px;max-height:45px;padding-bottom:20px!important}.cart-details .cart-details-header .cart-header>h3{font-size:16px;font-weight:600}.cart-details .cart-content{padding:0}.cart-details .cart-content .product-quantity .quantity{display:inline-block;float:right;width:unset}.cart-details .cart-content .product-quantity .quantity label{display:none!important}.cart-details .cart-content .destop-cart-view{display:block}.cart-details .cart-content .mobile-view{display:none}.cart-details .cart-content .cart-item-list>.row{margin-bottom:40px}.cart-details .cart-content .cart-item-list>.row:last-child{border-bottom:2px solid #e5e5e5;margin-bottom:20px;padding-bottom:20px}.cart-details .cart-content .cart-item-list .product-image-container{max-width:110px;padding:0}.cart-details .cart-content .cart-item-list .wishlist-icon{display:inline;margin:0}.cart-details .cart-content .product-details-content{padding-left:20px}.cart-details .cart-content .product-details-content .row{font-size:16px}.cart-details .cart-content .product-details-content .row .card-current-price{font-size:18px}.cart-details .cart-content .product-details-content .row>a{line-height:20px}.cart-details .cart-content .product-details-content .item-price{font-size:18px;font-weight:600;margin-top:12px!important}.cart-details .cart-content .product-details-content .item-actions{margin-top:12px!important}.cart-details .cart-content .product-details-content .item-actions .d-inline-block{float:left}.cart-details .cart-content .product-details-content .item-actions .d-inline-block:first-child{margin-right:30px}.cart-details .cart-content .product-details-content .item-actions .d-inline-block .material-icons{float:left;margin-left:-2px;margin-right:5px}.cart-details .cart-content .product-details-content .item-actions .d-inline-block .rango-delete{margin-left:-2px}.cart-details .cart-content .product-quantity .quantity{position:relative;top:-8px}.cart-details .cart-content .misc{display:flex;justify-content:space-between}.cart-details .continue-shopping-btn{margin-left:15px;margin-top:20px;max-width:156px}.cart-details .coupon-container{margin-top:20px}.cart-details .coupon-container .control-error{padding:10px 0}@media only screen and (max-width:375px){.cart-details .cart-content .misc{flex-direction:column}.cart-details .cart-content .misc button{margin-top:10px;width:100%}}.account-content{min-height:100vh}.account-content ol.breadcrumb{background-color:transparent;list-style:none;margin:0 0 2;padding:0}.account-content ol.breadcrumb li.breadcrumb-item{display:inline-block}.account-content ol.breadcrumb li.breadcrumb-item+.breadcrumb-item:before{content:"/";display:inline-block;padding-left:5px;padding-right:5px}.account-content .sidebar{border-right:1px solid #e5e5e5;height:100%}.account-content .sidebar .customer-sidebar{position:-webkit-sticky;position:sticky;top:40px}.account-content .sidebar .customer-sidebar .account-details{padding:25px 20px;text-align:center}.account-content .sidebar .customer-sidebar .account-details .customer-name{display:inline-block;font-size:24px;height:60px;margin:0 auto 5px;width:60px}.account-content .sidebar .customer-sidebar .account-details .customer-name-text{color:rgba(0,0,0,.83)}.account-content .sidebar .customer-sidebar .account-details .customer-email{color:#9e9e9e}.account-content .sidebar .customer-sidebar .navigation,.account-content .sidebar .customer-sidebar .navigation li{width:100%}.account-content .sidebar .customer-sidebar .navigation li.active,.account-content .sidebar .customer-sidebar .navigation li:hover{background-color:#ececec;color:#28557b}.account-content .sidebar .customer-sidebar .navigation li i.icon{font-size:18px;padding-right:5px}.account-content .sidebar .customer-sidebar .navigation li i.icon.profile:before{content:""}.account-content .sidebar .customer-sidebar .navigation li i.icon.address:before{content:""}.account-content .sidebar .customer-sidebar .navigation li i.icon.reviews:before{content:""}.account-content .sidebar .customer-sidebar .navigation li i.icon.wishlist:before{content:""}.account-content .sidebar .customer-sidebar .navigation li i.icon.orders:before{content:""}.account-content .sidebar .customer-sidebar .navigation li i.icon.downloadables:before{content:""}.account-content .sidebar .customer-sidebar .navigation li i.icon.compare:before{content:""}.account-content .sidebar .customer-sidebar .navigation li a{display:block;padding:10px 15px}.account-content .sidebar .customer-sidebar .navigation li:last-child{margin-bottom:0}.account-content .account-layout{color:rgba(0,0,0,.83);padding:15px 20px 60px}.account-content .account-layout .account-table-content.profile-page-content .table{width:100%!important}.account-content .account-layout .table table tr{border:1px solid #ccc;height:auto!important}.account-content .account-layout .table table tr td{border-right:1px solid #ccc!important;border-top:none;width:auto}.account-content .account-layout.right{padding-left:250px!important}.account-content .account-layout .account-head{display:flex;justify-content:space-between;margin-bottom:20px}.account-content .account-layout .account-heading{font-size:24px;font-weight:600}.account-content .account-layout .account-table-content .control-group,.account-content .account-layout .account-table-content>.row{margin-bottom:30px}.account-content .account-layout .account-table-content label{font-weight:500}.account-content .account-layout .account-table-content input,.account-content .account-layout .account-table-content select,.account-content .account-layout .account-table-content textarea{background:#fff;border:1px solid #ccc;border-radius:1px;font-size:16px;padding:5px 16px;resize:none;width:100%}.account-content .account-layout .account-table-content input[type=search]{padding-left:35px}.account-content .account-layout .account-table-content input:active,.account-content .account-layout .account-table-content input:focus,.account-content .account-layout .account-table-content select:active,.account-content .account-layout .account-table-content select:focus,.account-content .account-layout .account-table-content textarea:active,.account-content .account-layout .account-table-content textarea:focus{border-color:#26a37c}.account-content .account-layout .account-table-content .address-holder{margin-top:30px}.account-content .account-layout .account-table-content .address-holder>div{margin:5px 0;padding-left:0}.account-content .account-layout .account-table-content .address-holder .card{height:100%}.account-content .account-layout .account-table-content .account-items-list{margin-bottom:40px}.account-content .account-layout .account-table-content.profile-page-content .table{margin-bottom:15px;padding:0;width:800px}.account-content .account-layout .account-table-content.profile-page-content .table>table{border:1px solid rgba(0,0,0,.125);color:#5e5e5e;width:100%}.account-content .account-layout .account-table-content.profile-page-content .table td{border:unset;padding:6px 12px}.account-content .account-layout .account-table-content .image-wrapper{display:inline-block;margin-bottom:20px;margin-top:10px;width:100%}.account-content .account-layout .account-table-content .image-wrapper .image-item{background:#f8f9fa;background-image:url(/vendor/webkul/ui/assets/images/placeholder-icon.svg);background-position:50%;background-repeat:no-repeat;border-radius:3px;display:inline-block;height:200px;margin-bottom:20px;margin-right:20px;position:relative;width:200px}.account-content .account-layout .account-table-content .image-wrapper .image-item .remove-image{background-image:linear-gradient(-180deg,rgba(0,0,0,.08),rgba(0,0,0,.24));border-radius:0 0 4px 4px;bottom:0;color:#fff;cursor:pointer;left:0;margin-bottom:0;margin-right:20px;padding:10px;position:absolute;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.24);width:100%}.account-content .account-layout .account-table-content .image-wrapper .image-item input{display:none}.account-content .account-layout .account-table-content .image-wrapper .image-item img.preview{height:100%;width:100%}.account-content .account-layout .account-items-list.wishlist-container{margin:0 auto;width:100%}.account-content .account-layout .account-items-list.wishlist-container .product-card-new{width:19rem}.account-content .account-layout .reviews-container>.row{margin-bottom:40px}.account-content .account-layout .bottom-toolbar .pagination{margin:0}.account-content .account-layout .bottom-toolbar .pagination a:not([href]).next,.account-content .account-layout .bottom-toolbar .pagination a:not([href]).previous{color:#9e9e9e!important;cursor:not-allowed}.account-content .account-layout .bottom-toolbar .pagination .page-item{border:none!important;box-shadow:unset!important;-webkit-box-shadow:unset!important}.account-content .account-layout .bottom-toolbar .pagination .page-item.active{border:1px solid #26a37c;color:#26a37c!important}.account-content .account-layout .bottom-toolbar .pagination .page-item.next .angle-left-icon,.account-content .account-layout .bottom-toolbar .pagination .page-item.next .angle-right-icon,.account-content .account-layout .bottom-toolbar .pagination .page-item.previous .angle-left-icon,.account-content .account-layout .bottom-toolbar .pagination .page-item.previous .angle-right-icon{background:unset;font-size:24px;margin:0;text-align:center}.account-content .account-layout .bottom-toolbar .pagination .page-item.next .angle-right-icon:before{content:""}.account-content .account-layout .bottom-toolbar .pagination .page-item.previous .angle-left-icon:before{content:""}.account-content .account-layout .sale-container{font-size:16px}.account-content .account-layout .sale-container .tabs ul{font-size:20px;font-weight:600;list-style-type:none}.account-content .account-layout .sale-container .tabs ul li{border-bottom:2px solid transparent;cursor:pointer;display:inline-block;padding:10px 15px}.account-content .account-layout .sale-container .tabs ul li.active{border-bottom:2px solid #26a37c;cursor:default}.account-content .account-layout .sale-container .tabs-content .sale-section{border-bottom:1px solid #ccc;padding:20px 0 10px}.account-content .account-layout .sale-container .tabs-content .sale-section .section-title{color:#9e9e9e;font-size:18px;font-weight:600;padding-bottom:10px}.account-content .account-layout .sale-container .tabs-content .sale-section .section-content label+span{color:#9e9e9e;font-weight:600}.account-content .account-layout .sale-container .tabs-content .sale-section .section-content .totals{display:inline-block;width:100%}.account-content .account-layout .sale-container .tabs-content .sale-section .section-content .totals .sale-summary{float:right}.account-content .account-layout .sale-container .tabs-content .sale-section .section-content .totals .sale-summary tbody tr td:first-child{width:200px}.account-content .account-layout .sale-container .tabs-content .sale-section .section-content .table table{width:100%}.account-content .account-layout .sale-container .order-box-container{padding:10px 0}.account-content .account-layout .sale-container .order-box-container .box{display:inline-block;vertical-align:top;width:calc(25% - 5px)}.account-content .account-layout .sale-container .order-box-container .box .box-title{color:#9e9e9e;font-size:18px;font-weight:600;padding:10px 0}.account-content .select-icon{font-size:22px;left:95%;position:relative;top:-28px}#alert-container{font-size:16px;position:fixed;right:15px;top:50px;z-index:100}#alert-container .alert{max-height:100px!important;max-width:400px!important;min-height:45px!important}#alert-container .alert.alert-dismissible .close{font-size:23px;padding:.3rem 1.25rem}.wishlist-icon{vertical-align:middle}.wishlist-icon i{color:#111}.checkout-process{padding:40px 20px}.checkout-process .accordian-header h3{margin-bottom:0!important}.checkout-process .coupon-container{margin-top:20px}.checkout-process h1{font-weight:600;margin-bottom:30px}.checkout-process .layered-filter-wrapper,.checkout-process .scrollable{padding-top:25px}.checkout-process .order-summary-container{top:75px}.account-content .account-layout .bottom-toolbar .pagination .checkout-process .order-summary-container .page-item,.cart-details .checkout-process .order-summary-container .continue-shopping-btn,.checkout-process .order-summary-container .account-content .account-layout .bottom-toolbar .pagination .page-item,.checkout-process .order-summary-container .cart-details .continue-shopping-btn,.checkout-process .order-summary-container .theme-btn,.checkout-process .order-summary-container.bottom h3{display:none}.checkout-process input[type=radio]{transform:scale(1.3);-ms-transform:scale(1.3);-webkit-transform:scale(1.3)}.checkout-process .styled-select{cursor:pointer}.checkout-process .styled-select+.select-icon{font-size:20px;left:92%;position:absolute;top:55%}.checkout-process .coupon-container input{max-width:200px}.checkout-process .coupon-container button{margin:20px 0 30px}.checkout-process .coupon-container .applied-coupon-details{font-size:16px;margin-bottom:10px}.checkout-process .coupon-container .applied-coupon-details label:first-of-type{color:#26a37c}.checkout-process .coupon-container .rango-close{cursor:pointer;margin-left:5px}.address-container .address-holder{margin-top:15px}.address-container .address-holder>div{margin:5px 0;padding-left:0}.address-container .address-holder .card{height:100%}.address-container .address-holder .card h5{font-size:14px}.address-container .address-holder .card .add-address-button{display:table;height:100%;text-align:center}.address-container .address-holder .card .add-address-button>div{display:table-cell;vertical-align:middle}.address-container .address-holder .card .add-address-button>div span{vertical-align:super}.custom-form .form-field{margin-bottom:30px;padding:0}.custom-form label{font-size:16px;font-weight:500;margin-bottom:5px}.custom-form input[type=password],.custom-form input[type=search],.custom-form input[type=text],.custom-form select{background:#fff;border:1px solid #ccc;border-radius:1px;font-size:16px;height:36px;padding:5px 16px;resize:none;width:100%}.custom-form input[type=checkbox]{position:relative;top:3px}.custom-form input:active,.custom-form input:focus,.custom-form select:active,.custom-form select:focus{border-color:#26a37c}.payment-form .payment-methods>.row,.payment-form .shipping-methods>.row,.payment-form h3,.review-checkout-conainer .payment-methods>.row,.review-checkout-conainer .shipping-methods>.row,.review-checkout-conainer h3,.shipping-form .payment-methods>.row,.shipping-form .shipping-methods>.row,.shipping-form h3{margin-bottom:20px}.payment-form .payment-methods .instructions,.payment-form .shipping-methods .instructions,.review-checkout-conainer .payment-methods .instructions,.review-checkout-conainer .shipping-methods .instructions,.shipping-form .payment-methods .instructions,.shipping-form .shipping-methods .instructions{margin-left:-13px;margin-top:5px}.payment-form .payment-methods .instructions label,.payment-form .shipping-methods .instructions label,.review-checkout-conainer .payment-methods .instructions label,.review-checkout-conainer .shipping-methods .instructions label,.shipping-form .payment-methods .instructions label,.shipping-form .shipping-methods .instructions label{font-size:14px;font-weight:600}.payment-form .payment-methods .instructions p,.payment-form .shipping-methods .instructions p,.review-checkout-conainer .payment-methods .instructions p,.review-checkout-conainer .shipping-methods .instructions p,.shipping-form .payment-methods .instructions p,.shipping-form .shipping-methods .instructions p{color:#777;font-size:14px;font-style:italic;margin:0}.payment-form .address-summary li,.review-checkout-conainer .address-summary li,.shipping-form .address-summary li{display:inline-block}.payment-form .cart-item-list,.review-checkout-conainer .cart-item-list,.shipping-form .cart-item-list{border-bottom:1px solid #e5e5e5;padding:20px 0}.payment-form .cart-item-list h4,.review-checkout-conainer .cart-item-list h4,.shipping-form .cart-item-list h4{border-bottom:1px solid #e5e5e5;margin-bottom:20px!important;padding-bottom:20px}.payment-form .cart-item-list>.row:first-child,.review-checkout-conainer .cart-item-list>.row:first-child,.shipping-form .cart-item-list>.row:first-child{margin-top:50px}.payment-form .cart-item-list>.row,.review-checkout-conainer .cart-item-list>.row,.shipping-form .cart-item-list>.row{margin-bottom:20px}.payment-form .cart-details,.review-checkout-conainer .cart-details,.shipping-form .cart-details{padding:40px 0}.order-summary-container{height:-webkit-max-content;height:-moz-max-content;height:max-content;max-width:500px!important;padding-top:25px;position:-webkit-sticky!important;position:sticky!important;top:50px}.order-summary-container>div{width:100%}.order-summary-container .order-summary{border:1px solid #e5e5e5;padding:25px 30px}.order-summary-container .order-summary>h3{margin-bottom:20px}.order-summary-container .order-summary>.row:not(:last-child){margin-bottom:10px}.order-summary-container .order-summary #grand-total-detail{border-top:1px solid #e5e5e5;margin-bottom:25px;margin-top:15px;padding-top:15px}.order-success-content{font-size:16px;padding:40px 20px}.search-result-status{align-items:center;display:flex;flex-direction:column;justify-content:center;width:100%}#address-section .form-header h3{margin-bottom:20px}.attached-products-wrapper{margin-top:20px}#related-products-carousel .product-card-new:first-child{margin-left:0!important}.price-label{margin-right:6px}.product-price{display:inline-block}.product-price .price-label{margin-right:6px}.product-price .regular-price{display:inline-block;font-size:14px;font-weight:500;text-decoration:line-through}.product-price .special-price{display:inline-block;float:left;margin-right:10px}.product-price .price-from .bundle-regular-price{font-size:12px!important;font-weight:500;margin-right:10px;text-decoration:line-through}.product-price .price-from .bundle-special-price{font-size:15px!important;font-weight:600}.product-price .price-from .bundle-to{display:block;font-size:15px!important;font-weight:500;margin-bottom:1px;margin-top:1px}.product-price span.price-label{font-size:14px!important;font-weight:500!important}.product-price span.final-price{font-size:18px;font-weight:600}.sticker{border:none;border-radius:12px;color:#fff;display:none;font-size:14px;font-weight:600;left:8px;padding:2px 10px;position:absolute;top:8px}.sticker.sale{background-color:#f05153;padding:2px 14px}.sticker.new{background-color:#26a37c;display:block}#app{min-height:65vh;position:relative}.main-container-wrapper .sticky-header{background:#fff;height:56px;position:-webkit-sticky;position:sticky;top:0;z-index:100}.main-container-wrapper .sticky-header.header-shadow{box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.search-container{padding:30px 20px}.search-container .lg-card-container.list-card{margin:0 15px}.search-container :first-child{margin-top:0}.method-sticker{background-color:#141516;border-radius:1px;color:#cfcfd0;display:inline-block;font-size:13px;margin-bottom:3px;margin-right:3px;padding:4px 8px;text-align:center}.sidebar{width:230px;z-index:1000000}.sidebar .category-content .category-title{font-weight:600;position:relative;top:-1px}.sidebar .category-content .rango-arrow-right{position:relative;top:4px}.sidebar .category-content .category-icon{display:inline-block;height:20px;padding-right:5px;width:25px}.sidebar .category-content .category-icon img{height:100%;vertical-align:text-top;width:100%}.sidebar li:hover>a>span{color:#28557b}.sidebar .sub-categories{display:none}.sidebar .sub-categories .category{padding:5px 0 4px 15px}.sidebar .sub-categories .category+.nested{color:rgba(0,0,0,.83)}.sidebar .sub-categories .category+.nested li a{padding-top:0}.sidebar .sub-categories .category+.nested li a .category-title{font-weight:500;padding-left:28px}.sidebar .sub-categories .category .category-title{vertical-align:top}.category-list-container{background:#fff;box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);padding:0!important;position:absolute!important;z-index:10}.category-list-container .category{display:inline-block;line-height:2.5rem;width:100%}.category-list-container .category span{position:relative;top:-4px}.category-list-container li a{padding:7px 0 5px 15px}.category-list-container li a:hover{background:#ececec}.category-list-container .sub-categories{background:#fff;border-left:1px solid #ccc;box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);height:100%;left:100%;min-height:330px;overflow-y:scroll;padding-top:10px;position:absolute;top:-1px;z-index:100}.category-list-container .sub-categories li:last-of-type{margin-bottom:10px}#sidebar-level-0{border-top:1px solid #ccc;display:none;z-index:100000}.grouped-product-container .grouped-product-list ul li{display:inline-block;font-size:18px;margin-bottom:10px;width:100%}.grouped-product-container .grouped-product-list ul li:last-child{margin-bottom:0}.grouped-product-container .grouped-product-list ul li:first-child span{font-weight:600}.grouped-product-container .grouped-product-list ul li:first-child span:last-child{float:right;text-align:left;width:50px}.grouped-product-container .grouped-product-list ul li .name{display:inline-block;font-size:16px;vertical-align:middle}.grouped-product-container .grouped-product-list ul li .qty{float:right}.grouped-product-container .grouped-product-list ul li .qty .control-group{border-top:0;height:45px;margin-bottom:0;max-width:none;padding-top:0;text-align:center;width:auto}.grouped-product-container .grouped-product-list ul li .qty .control-group label{display:none}.grouped-product-container .grouped-product-list ul li .qty .control-group .control{line-height:38px;text-align:center;width:60px}.grouped-product-container .grouped-product-list ul li .qty .control-group>*{height:100%}.bundle-options-wrapper .bundle-option-list{border-top:1px solid hsla(0,0%,64%,.2);padding:15px 0}.bundle-options-wrapper .bundle-option-list h3{color:#242424;font-size:16px;margin:0}.bundle-options-wrapper .bundle-option-list .bundle-option-item{border-bottom:1px solid hsla(0,0%,64%,.2);display:inline-block;padding:15px 0;width:100%}.bundle-options-wrapper .bundle-option-list .bundle-option-item:last-child{border-bottom:0;padding-bottom:0}.bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group{color:#5e5e5e;margin-bottom:0}.bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group label{color:#242424}.bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group .control{color:#5e5e5e}.bundle-options-wrapper .bundle-option-list .bundle-option-item .quantity{border-top:0}.bundle-options-wrapper .bundle-option-list .bundle-option-item .control-error{float:left;width:100%}.bundle-options-wrapper .bundle-option-list .bundle-option-item.has-error button{border-color:#fc6868;color:#fc6868}.bundle-options-wrapper .bundle-summary{border-top:1px solid hsla(0,0%,64%,.2);padding:15px 0}.bundle-options-wrapper .bundle-summary h3{color:#242424;font-size:16px;margin:0}.bundle-options-wrapper .bundle-summary .quantity{border-top:0}.bundle-options-wrapper .bundle-summary .bundle-price{color:#ff6472;font-size:24px;font-weight:600;margin-top:10px}.bundle-options-wrapper .bundle-summary ul.bundle-items li{margin-bottom:20px}.bundle-options-wrapper .bundle-summary ul.bundle-items li:last-child{margin-bottom:0}.bundle-options-wrapper .bundle-summary ul.bundle-items li .selected-products{color:#5e5e5e}.category-container .grid-card,.search-container .grid-card{width:15rem}.downloadable-container .sample-list{padding:5px 0}.downloadable-container .sample-list h3{font-size:16px;margin-top:0}.downloadable-container .sample-list ul li{margin-bottom:5px}.downloadable-container .sample-list ul li:last-child{margin-bottom:0}.downloadable-container .link-list{padding:5px 0}.downloadable-container .link-list h3{font-size:16px;margin-top:0}.downloadable-container .link-list h3.required:after{color:#f05153;content:"*";font-size:16px;margin-left:-1px}.downloadable-container .link-list ul li{margin-bottom:15px}.downloadable-container .link-list ul li:last-child{margin-bottom:0}.downloadable-container .link-list ul li .checkbox input[type=checkbox]{height:15px!important;margin-left:-10px;width:15px!important}.downloadable-container .link-list ul li a{float:right;margin-top:3px}.category-container{margin-left:15px;min-height:670px;padding:40px 15px!important}.category-container .hero-image{display:inline-block}.category-container .hero-image img{height:100%;margin-bottom:30px;max-height:500px;width:100%}.vue-slider .vue-slider-rail{background-color:#ccc}.vue-slider .vue-slider-dot-handle{background-color:#fff;border-radius:50%;box-shadow:.5px .5px 2px 1px rgba(0,0,0,.32);height:100%;width:100%}.vue-slider .vue-slider-dot-tooltip-inner,.vue-slider .vue-slider-dot-tooltip-text{background-color:#26a37c!important;border-color:#26a37c!important}.vue-slider .vue-slider-dot-tooltip-text{border-radius:5px;color:#fff;display:block;font-size:14px;min-width:20px;padding:2px 5px;text-align:center;white-space:nowrap}.vue-slider .vue-slider-dot-tooltip-text:before{border:6px solid transparent\0;border-top-color:inherit;bottom:-10px;content:"";height:0;left:50%;position:absolute;transform:translate(-50%);width:0}.vue-slider .vue-slider-process{background-color:#26a37c!important}.full-content-wrapper>.container-fluid{margin:10px 0;padding:0}.full-content-wrapper>.container-fluid>.row{padding:0 15px}.full-content-wrapper div>.container-fluid,.full-content-wrapper p>.container-fluid{margin:10px 0;padding:0}.full-content-wrapper div>.container-fluid>.row,.full-content-wrapper p>.container-fluid>.row{padding:0 15px}.cd-slider .VueCarousel-dot.VueCarousel-dot--active{background-color:#000!important}.cd-slider .VueCarousel-dot{background-color:rgba(26,24,24,.59)!important}.slides-container{position:relative}.slides-container .VueCarousel-pagination{display:none}.slides-container .VueCarousel-pagination button:active,.slides-container .VueCarousel-pagination button:focus{box-shadow:none;outline:none}.slides-container .VueCarousel-pagination .VueCarousel-dot{padding:5px!important}.slides-container .VueCarousel-dot--active{background-color:#26a37c!important}.slides-container .VueCarousel .VueCarousel-inner{padding-top:0}.slides-container .VueCarousel .VueCarousel-slide{position:relative}.slides-container .VueCarousel .VueCarousel-slide .show-content{display:table;height:100%;left:0;position:absolute;text-align:center;top:0;width:100%}.slides-container .VueCarousel .VueCarousel-slide .show-content p{display:table-cell;vertical-align:middle}.filter-attributes-item{border-bottom:1px solid #ccc;margin-bottom:10px}.filter-attributes-item.active .filter-attributes-content{display:block}.filter-attributes-item .filter-input{margin:10px 15px 13px -4px}.filter-attributes-item .filter-input input[type=text]{background-color:#fff;border:1px solid #26a37c;text-align:center;width:30%}.filter-attributes-item input[type=checkbox]+span{margin-left:10px!important}.filter-attributes-content{display:none;margin-left:7px}.layered-filter-wrapper{margin-bottom:42px;max-height:670px;overflow-x:hidden;padding:42px 10px 0}.layered-filter-wrapper .recently-viewed{margin-top:20px}.layered-filter-wrapper .recently-viewed h2{font-size:18px}.selective-div{-webkit-appearance:none;width:150px}.select-icon-margin{margin-left:96px;margin-top:10px}.down-icon-position{position:absolute}.select-icon-show-margin{margin-left:35px;margin-top:10px}.down-arrow-margin{margin-left:75px;margin-top:8px}.vc-header{box-shadow:0 1px 3px rgba(0,0,0,.16),0 1px 3px rgba(0,0,0,.23);margin:0!important;padding:0!important;z-index:10}.new-products-recent{position:relative;top:-44px}.recently-viewed-products-wrapper{padding:2px}.recently-viewed-products-wrapper .price-from .bundle-regular-price{display:none}.recently-viewed-products-wrapper .price-from .bundle-special-price{font-size:15px!important;font-weight:600}.recently-viewed-products-wrapper .price-from .bundle-to{display:unset;font-size:15px!important;font-weight:500;margin:0 2px}.pagination{width:100%}.pagination .page-item{padding:0 10px}.pagination .page-item.active{border-bottom:2px solid #26a37c;color:#26a37c!important;font-weight:600}.pagination .page-item.next .angle-left-icon,.pagination .page-item.next .angle-right-icon,.pagination .page-item.previous .angle-left-icon,.pagination .page-item.previous .angle-right-icon{background:unset;font-size:24px;margin:0;text-align:center}.pagination .page-item.next .angle-right-icon:before{content:""}.pagination .page-item.previous .angle-left-icon:before{content:""}.pagination a{color:unset!important;text-decoration:none!important}.pagination a i{font-size:18px;position:relative;top:2px}.pagination .angle-left-icon,.pagination .angle-right-icon{speak:none;-webkit-font-smoothing:antialiased;background:unset;font-family:Webkul Rango!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.pagination .angle-right-icon:before{content:""}.pagination .angle-left-icon:before{content:""}.full-content-wrapper .container-fluid .row.carousel-products-header{padding-right:75px!important}.carousel-products+.recently-viewed{position:relative;top:-40px}.carousel-products .VueCarousel-slide{cursor:default}.carousel-products .VueCarousel-navigation{position:absolute;right:12px;top:-49px}.carousel-products .VueCarousel-navigation .VueCarousel-navigation-button{margin:0!important;padding:0!important;position:unset!important;transform:none!important}.carousel-products .VueCarousel-navigation .VueCarousel-navigation-button span{font-size:24px}.vue-slider{max-width:97%}.profile-update-form{width:800px}.compare-products{cursor:pointer;margin-left:0!important;margin-right:10px!important;overflow-x:auto;padding-bottom:20px;width:100%;word-break:break-word}.compare-products .active{cursor:grabbing;cursor:-webkit-grabbing;transform:scale(1)}.compare-products tr{width:100%}.compare-products td{max-width:250px;min-width:250px;padding:15px;vertical-align:top}.compare-products .header{min-width:150px}.compare-products .image-wrapper{width:100%}.compare-products .stars i{font-size:16px}.compare-products .action{position:relative}.compare-products .action .btn-add-to-cart{white-space:pre-wrap}.compare-products .action .close-btn{display:inline-block;position:absolute;right:0;top:6px}.compare-products .action .close-btn:hover{font-weight:600}.compare-products .action .compare-icon{display:none}.compare-products .material-icons.cross{cursor:pointer;position:absolute;right:20px;top:5px}.compare-products .wishlist-icon{display:inline-block;position:absolute;right:60px;top:5px}.compare-container .cart-details{padding:unset}.compare-container .cart-details h2{padding:0}.compare-container .compare-products .col,.compare-container .compare-products .col-2{max-width:25%}.compare-products::-webkit-scrollbar{display:none}.compare-products{-ms-overflow-style:none;scrollbar-width:none}.cp-spinner{box-sizing:border-box;display:inline-block;height:48px;left:calc(50% - 24px);margin-top:calc(40% - 24px);position:absolute;width:48px}.overlay-loader{left:50%;margin-left:-24px;margin-top:-24px;position:fixed;top:50%;z-index:11}@media only screen and (max-width:720px){.product-quantity .input-btn-group{display:flex}.cp-spinner{left:50%;margin-left:-24px;margin-top:-24px;top:50%}}@media only screen and (max-width:425px){.cart-details .cart-content .product-quantity{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}.cart-details .cart-content .product-quantity .quantity{display:flex;width:100%}.cart-details .cart-content .product-price.col-1{flex:0 0 100%;max-width:100%}.cart-details .cart-content .product-price.col-1 .card-current-price.fw6,.cart-details .cart-content .product-price.col-1 .product-detail .right .info .card-current-price.price,.cart-details .cart-content .product-price.col-1 .product-detail .right .info h2.card-current-price,.cart-details .cart-content .product-price.col-1 .product-detail .right h3.card-current-price,.cart-details .cart-content .product-price.col-1 .product-detail .right h4.card-current-price,.product-detail .right .cart-details .cart-content .product-price.col-1 h3.card-current-price,.product-detail .right .cart-details .cart-content .product-price.col-1 h4.card-current-price,.product-detail .right .info .cart-details .cart-content .product-price.col-1 .card-current-price.price,.product-detail .right .info .cart-details .cart-content .product-price.col-1 h2.card-current-price{float:right}}.cp-round:before{border:6px solid gray;border-radius:50%}.cp-round:after,.cp-round:before{box-sizing:border-box;content:" ";display:inline-block;height:48px;left:0;position:absolute;top:0;width:48px}.cp-round:after{-webkit-animation:spin 1s ease-in-out infinite;animation:spin 1s ease-in-out infinite;border:6px solid transparent;border-radius:50%;border-top-color:#26a37c}.image-search-container{background:#fff;cursor:pointer;height:24px!important;position:absolute;right:45px;top:9px;z-index:10}.image-search-result{background-color:rgba(0,65,255,.1);border:1px solid #0041ff;border-radius:2px;display:inline-block;margin-bottom:20px;padding:20px;width:100%}.image-search-result .searched-image{float:left}.image-search-result .searched-image img{box-shadow:1px 1px 3px 0 rgba(0,0,0,.32);height:auto;width:150px}.image-search-result .searched-terms{display:inline-block;margin-left:20px}.image-search-result .searched-terms .term-list a{background:#fff;margin-right:10px;margin-top:10px;padding:5px 8px}.filtered-tags{margin-bottom:20px}@-webkit-keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}body{scroll-behavior:smooth}body .container-margin{margin:auto 20px}.root-category-menu{border-bottom:1px solid #d8e6ed}.angle-right-icon{background-image:url(../images/Icon-Arrow-Right.svg);float:right;height:20px;margin-right:10px;width:22px}.card-product-image-container{height:300px;max-height:300px;min-height:100px}.card-product-image-container img{height:100%;width:100%}.card-product-image-container .background-image-group{background-position:50%;background-repeat:no-repeat;height:100%;width:100%}.hide-text{display:inline-block;overflow:hidden!important;text-overflow:ellipsis;white-space:nowrap;width:100%}.card-bottom-container{margin-top:12px}.card-actual-price{text-decoration:line-through}.card-discount{color:rgba(38,163,124,.83)}.no-border-shadow{border:none!important;box-shadow:none!important;-webkit-box-shadow:none!important}.card-bottom-container .rango-heart{cursor:pointer;float:right;font-size:20px;margin-top:8px}.disable-active:active,.disable-active:focus,header #search-form>:focus{box-shadow:none;outline:none}.container-margin>.container-fluid{margin-bottom:60px}.v-mr-20{margin-right:2rem}.popular-product-categories .active{border-bottom:2px solid;color:#4d7ea8;display:inline-block;padding:0 10px 5px}.popular-product-categories .switch-buttons{position:relative;top:-3px}.align-vertical-super{vertical-align:super}.align-vertical-top{vertical-align:top}.card-sale-btn{top:5px}.star-rating>*{font-size:14px}.advertisement-four-container .offers-ct-panel>.row{padding:0 10px}.advertisement-four-container .offers-ct-panel a:first-child{padding-bottom:15px!important}.advertisement-four-container .offers-ct-panel .offers-ct-top{height:180px}.advertisement-four-container .offers-ct-panel .offers-ct-bottom{height:220px}.advertisement-four-container>.row:first-child{padding:0 10px!important}.advertisement-four-container .col-4:nth-child(2){padding-left:10px;padding-right:10px}.advertisement-four-container img{height:100%;max-height:425px;width:100%}.advertisement-four-container img:first-of-type,.advertisement-four-container img:last-child{padding:0}.advertisement-two-container img{width:100%}.advertisement-three-container img{height:100%}.advertisement-three-container .bottom-container img,.advertisement-three-container .top-container img{height:225px}.advertisement-three-container .bottom-container{padding-top:15px}.recently-viewed-items{padding:0!important}.product-policy-container .card{background:#fff;border:none;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);padding:20px 10px}.product-policy-container .card .policy{display:table;padding:0 10px}.product-policy-container .card .policy .left{display:inline-block;margin-right:10px}.product-policy-container .card .policy .right{display:table-cell;vertical-align:middle}.product-policy-container .product-policy-wrapper:first-of-type{padding-left:0}.product-policy-container .product-policy-wrapper:last-of-type{padding-right:0}.category-with-custom-options img{height:100%;max-height:100%;max-width:100%;width:100%}.category-with-custom-options .row:first-child{margin-bottom:0}.category-with-custom-options .row:first-child .category-image{height:350px}.category-with-custom-options .row:first-child>div{background-repeat:no-repeat;padding:0}.category-with-custom-options .row:first-child>div:first-child(),.category-with-custom-options .row:first-child>div:nth-child(3){max-height:345px}.category-with-custom-options .row:nth-child(2) .category-image{height:350px}.category-with-custom-options .row:nth-child(2)>div{background-repeat:no-repeat;padding:0}.category-with-custom-options .row:nth-child(2)>div:nth-child(2),.category-with-custom-options .row:nth-child(2)>div:nth-child(4){max-height:345px}.category-with-custom-options .categories-collection{background:#2b2b2b;display:table;height:100%;max-height:345px;min-height:310px;padding-left:36px;width:100%}.category-with-custom-options .categories-collection h2{color:#fff}.category-with-custom-options .categories-collection li{color:hsla(0,0%,100%,.83)}.category-with-custom-options .categories-collection .category-text-content{display:table-cell;height:100%;vertical-align:middle}.hot-categories-container .hot-category-wrapper{padding:0 10px 0 0}.hot-categories-container .hot-category-wrapper .card{border:none;height:100%;padding:20px}.hot-categories-container .hot-category-wrapper .velocity-divide-page .left{height:30px;margin-left:10px;width:30px}.hot-categories-container .hot-category-wrapper .velocity-divide-page .left img{height:100%;width:100%}.hot-categories-container .hot-category-wrapper .velocity-divide-page .right{padding-left:50px!important}.hot-categories-container .hot-category-wrapper:nth-last-child(2){padding:0}.hot-categories-container .hot-category-wrapper:last-child{padding:0 0 0 10px}.hot-categories-container ul,.popular-categories-container ul{line-height:2.5rem}.hot-categories-container li,.popular-categories-container li{font-size:16px}.popular-categories-container .popular-category-wrapper{padding:0 8px}.popular-categories-container .popular-category-wrapper .card{border:none;height:100%}.popular-categories-container .popular-category-wrapper .card .category-image{height:180px}.popular-categories-container .popular-category-wrapper .card .category-image img{height:100%;width:100%}.popular-categories-container .popular-category-wrapper .card-image{background-image:url(../images/man.png);background-size:100% 100%;height:180px}.popular-categories-container .popular-category-wrapper .card-description{padding:10px 20px}.popular-categories-container .popular-category-wrapper:first-child{padding-left:0}.popular-categories-container .popular-category-wrapper:nth-last-child(2){padding-right:0}.popular-categories-container .popular-category-wrapper:last-child{padding-left:16px;padding-right:0}.reviews-container .review-wrapper:first-of-type{padding:0 8px 0 0}.reviews-container .review-wrapper{padding:0 8px}.reviews-container .review-wrapper:nth-last-of-type(2){padding:0 0 0 8px}.reviews-container .review-wrapper:last-of-type{padding:0 0 0 16px}.reviews-container .card{border:none;box-shadow:0 4px 17px 0 rgba(0,0,0,.11);height:100%;padding:20px 15px}.reviews-container .card .customer-info>div{display:inline-block;padding:0}.reviews-container .card .customer-info>div:first-child(){margin-right:10px;width:60px}.reviews-container .card .customer-info>div:last-child(){width:calc(100% - 75px)}.reviews-container .card .review-info{box-shadow:0 4px 17px 0 rgba(0,0,0,.11);height:100%;padding:20px 15px}.reviews-container .card .review-info>div:not(:last-child){margin-bottom:10px}.reviews-container .card .review-info .star-ratings{margin-bottom:5px!important}.main-content-wrapper,.reviews-container .product-info{display:inline-block}.main-content-wrapper>.row.disabled{cursor:not-allowed}.main-content-wrapper .main-category{border-top:1px solid #ccc;padding:10px 15px}.main-content-wrapper .main-category .pl5{vertical-align:top}.main-content-wrapper .content-list{display:inline-block;height:42px;list-style:none;margin:0;position:relative;text-align:left;vertical-align:top;width:100%}.main-content-wrapper .content-list ul{background-color:#4d7ea8;display:inline-flex;height:100%;overflow-x:auto;white-space:nowrap;width:100%}.main-content-wrapper .content-list ul li a{color:#fff;cursor:pointer;display:block;font-size:16px;font-weight:600;letter-spacing:0;padding:11px 15px;position:relative;text-decoration:none}.main-content-wrapper .content-list ul li:hover{background-color:#42719a}.velocity-divide-page{position:relative}.velocity-divide-page .left{position:absolute;width:230px;z-index:1}.velocity-divide-page .right{padding-left:230px!important;width:100%}.container-right{display:inline-block;width:100%}.container-right>:first-child(){width:100%}.home-base{margin-bottom:60px}.broken-image{background-image:url(../images/static/broken-clock.png);height:160px;width:320px}.velocity-icon{background-image:url(../images/static/v-icon.png);height:150px;width:150px}.error-page{padding-top:30vh}.custom-circle{background:#fff;border:2px solid #21a179;border-radius:50%;color:#21a179;display:inline-block;font-size:20px;font:18px josefin sans,arial;height:54px;padding:14px;text-align:center;vertical-align:middle;width:56px}body:after{background:rgba(71,55,78,.8);height:100%;left:0;opacity:0;position:absolute;top:0;transition:opacity .3s 0s,visibility 0s .3s;width:100%}.cd-quick-view{backface-visibility:hidden;-webkit-backface-visibility:hidden;background-color:#fff;box-shadow:0 0 30px rgba(0,0,0,.2);display:none;left:calc(50% - 350px);margin-bottom:50px;padding:40px;position:absolute;top:30px;transform:translateZ(0);width:700px;will-change:left,top,width;z-index:101}.cd-quick-view .cd-slider li.selected img{display:inline-block!important;height:100%;width:100%}.cd-quick-view .cd-slider img{display:none}.cd-quick-view .close-btn{font-weight:600;position:absolute;right:20px;top:15px}.cd-quick-view .action-buttons{margin-left:118px;padding-top:10px}.cd-quick-view .action-buttons>span{font-size:24px;margin-left:24px}.cd-quick-view .product-actions{display:inline-block}.cd-quick-view .product-actions .compare-icon,.cd-quick-view .product-actions .wishlist-icon{cursor:pointer;display:inline-table;height:38px;margin-left:10px}.cd-quick-view .product-actions .compare-icon i,.cd-quick-view .product-actions .wishlist-icon i{display:table-cell;vertical-align:middle}.cd-quick-view .product-actions .wishlist-icon{float:right}.cd-quick-view .product-actions .add-to-cart-btn{float:left}.cd-quick-view .quick-view-name{font-size:24px;line-height:25px}.cd-quick-view .product-price{margin-top:10px}.cd-quick-view .product-rating{display:table;margin:10px 0}.cd-quick-view .product-rating a,.cd-quick-view .product-rating span{display:table-cell;vertical-align:top}.cd-quick-view .product-gallery{position:-webkit-sticky;position:sticky;top:10px}.cd-quick-view .product-gallery .VueCarousel-pagination button{background-color:#fff!important;border:1px solid #dcdcdc!important;margin:3px!important;padding:0!important}.cd-quick-view .product-gallery .VueCarousel-pagination button.VueCarousel-dot--active{background-color:#dcdcdc!important}.cd-quick-view .product-gallery .VueCarousel-pagination button.VueCarousel-dot--active:focus{outline:none}.cd-quick-view .description-text{overflow:auto;word-break:break-word}.container{max-width:1300px!important}.slider-container{margin-bottom:20px;min-height:400px}.category-page-wrapper,.remove-padding-margin{margin:0!important;padding:0!important;width:100%!important}.demo{border:1px solid red}.quick-addtocart-btn{margin-left:-82px;margin-top:306px}.model-display-block{display:block}.footer{background-color:#fff;display:inline-block;width:100%}.footer .footer-content .newsletter-subscription{background-color:#4d7ea8;color:#fff;padding:10px 130px}.footer .footer-content .newsletter-subscription .newsletter-wrapper input.subscribe-field{border:none;color:rgba(0,0,0,.83);font-size:18px;height:38px;max-width:250px;padding:10px 20px;width:300px}.footer .footer-content .newsletter-subscription .newsletter-wrapper button.subscribe-btn{font-size:18px;height:38px;left:-2px;line-height:10px;position:relative}.footer .footer-content .newsletter-subscription .newsletter-wrapper .social-icons{color:#fff;height:100%;padding:20px 0}.footer .footer-content .newsletter-subscription .newsletter-wrapper .social-icons i{cursor:pointer;margin:0}.footer .footer-content .newsletter-subscription .newsletter-wrapper .social-icons .within-circle{background:#4d7ea8;border:1px solid hsla(0,0%,100%,.52);margin-right:2px}.footer .footer-content .newsletter-subscription .newsletter-wrapper .social-icons .within-circle:hover{opacity:.5}.footer .footer-content .newsletter-subscription .newsletter-wrapper .social-icons img{background:#4d7ea8;border:1px solid hsla(0,0%,100%,.52);padding-left:15px;padding-right:15px}.footer .footer-content .newsletter-subscription .newsletter-wrapper .subscribe-newsletter{padding:25px 0 30px;text-align:right}.footer .footer-content>.row{background:#30383f;padding:60px 130px}.footer .footer-content>.row .logo{max-height:40px;width:auto}.footer .footer-content>.row .footer-ct-content>div{font-size:14px;line-height:2.5rem;margin:0;padding:0}.footer .footer-content>.row .footer-ct-content>div ul{margin-bottom:0}.footer .footer-content>.row .footer-ct-content>div ul li{margin-bottom:5px}.footer .footer-content>.row .footer-ct-content>div ul li a{color:hsla(0,0%,100%,.83)}.footer .footer-content>.row .footer-rt-content{padding-right:0}.footer .footer-content>.row .footer-rt-content .row>div{display:block;width:100%}.footer .footer-content>.row .footer-rt-content .row .bg-image,.footer .footer-content>.row .footer-rt-content .row .small-card-container .product-image,.small-card-container .footer .footer-content>.row .footer-rt-content .row .product-image{background-position:0;display:inline-block;height:30px;width:42px}.footer .footer-content>.row .footer-rt-content .row .bg-image:not(:last-child),.footer .footer-content>.row .footer-rt-content .row .small-card-container .product-image:not(:last-child),.small-card-container .footer .footer-content>.row .footer-rt-content .row .product-image:not(:last-child){margin-right:3px}.footer .footer-content>.row .footer-rt-content .row .cash{background-image:url(../images/static/cash.png)}.footer .footer-content>.row .footer-rt-content .row .cheque{background-image:url(../images/static/cheque.png);width:57px!important}.footer .footer-content>.row .footer-rt-content .row .visa{background-image:url(../images/static/visa.png)}.footer .footer-content>.row .footer-rt-content .row .master-card{background-image:url(../images/static/master-card.png)}.footer .footer-content>.row .footer-rt-content .row .paypal{background-image:url(../images/static/paypal.png)}.footer .footer-content>.row .footer-rt-content .row .discover{background-image:url(../images/static/discover.png)}.footer .footer-content>.row .footer-rt-content .row:not(:last-child){padding-bottom:20px}.footer .footer-content>.row .footer-rt-content h3{color:hsla(0,0%,100%,.52);font-size:14px}.footer .footer-content .footer-statics .software-description{padding-left:0}.footer .footer-content .footer-statics .software-description p{font-size:14px}.footer .top-brands{padding:30px 130px}.footer .top-brands .top-brands-body ul{display:inline-block;width:85%}.footer .top-brands .top-brands-body ul li{display:inline-block;font-size:16px;margin-left:0;padding:15px 0 0}.footer .footer-copy-right{background:#30383f;color:hsla(0,0%,100%,.83);font-size:16px;height:60px;line-height:6rem;text-align:center;width:100%}.footer .footer-copy-right p{padding:0 20px}.footer .footer-copy-right a{color:unset}.footer .footer-copy-right a:hover{color:#4d7ea8}.product-detail{padding-left:0!important;padding-right:0!important;padding-top:20px}.product-detail,.product-detail .right>div.attributes .attribute{margin-bottom:20px}.product-detail .right>div.attributes .attribute:last-child{margin-bottom:30px}.product-detail .right .category-breadcrumb{margin-left:0;padding:0 15px}.product-detail .right .reviews{vertical-align:top}.product-detail .right .reviews .stars{margin-bottom:-6px;vertical-align:middle}.product-detail .right .reviews>div{display:inline-block;vertical-align:middle}.product-detail .right .info{border-bottom:1px solid #d3d3d3;margin-left:0}.product-detail .right .info div,.product-detail .right .info>h2{padding-left:0}.product-detail .right .info>*{margin-bottom:14px}.product-detail .right .info .availability label{background:#f05153;border:none;color:#fff;cursor:default;font-weight:600;margin:0;padding:1px 8px 3px;width:-webkit-max-content;width:-moz-max-content;width:max-content}.product-detail .right .info .availability label.active{background:#4d7ea8}.product-detail .right .options .box{background-color:#ccc;display:inline-block;height:32px;width:32px}.product-detail .right h3{margin-bottom:0}.product-detail .right .row.reviews .reviews-text{line-height:3rem}.product-detail .right .add-to-cart-btn{padding:0}.product-detail .right .add-to-cart-btn button{padding:9px 15px!important;text-transform:uppercase}.product-detail .right .add-to-cart-btn button span{font-size:16px;top:0}.product-detail .right .product-price{line-height:38px}.product-detail .right .product-price .price-from .bundle-regular-price{font-size:20px!important;font-weight:500;margin-right:10px;text-decoration:line-through}.product-detail .right .product-price .price-from .bundle-special-price{font-size:20px!important;font-weight:600}.product-detail .right .product-price .price-from .bundle-to{display:block;font-size:20px!important;font-weight:500;margin-bottom:1px;margin-top:1px}.product-detail .right .quantity{width:unset}.product-detail .right .form-group label{display:block}.product-detail .right .form-group .radio{margin-right:10px}.product-detail .right .form-group .radio input[type=radio]{margin-left:0;position:static}.product-detail .right .form-group .radio .radio-view{display:none}.product-detail .thumb-list{left:15px;margin-top:10px;overflow:hidden;padding:0;position:relative;z-index:99}.product-detail .thumb-list .arrow{align-items:center;background:#dcdcdc;cursor:pointer;display:flex;height:100%;left:0;line-height:13em;margin-top:5px;opacity:.5;position:absolute;z-index:1001}.product-detail .thumb-list .arrow.right{left:unset;line-height:13rem;right:0}.product-detail .thumb-list .thumb-frame{border:1px solid transparent;padding:1px}.product-detail .thumb-list .thumb-frame.active{border:1px solid #26a37c}.product-detail .thumb-list .small-card-container .thumb-frame>.product-image,.product-detail .thumb-list .thumb-frame>.bg-image,.small-card-container .product-detail .thumb-list .thumb-frame>.product-image{background-position-y:center;background-size:100% 100%;height:110px;width:100%}.product-detail .product-actions>div{display:inline-block}.product-detail .product-actions>div .add-to-cart-btn{float:left}.product-detail .product-actions>div .compare-icon,.product-detail .product-actions>div .wishlist-icon{float:right;height:46px;margin-left:0;padding-left:10px}.product-detail .product-actions>div .compare-icon i,.product-detail .product-actions>div .wishlist-icon i{display:table-cell;vertical-align:middle}.product-detail .product-actions>div .compare-icon{display:inline-table}.product-detail .product-actions>div .wishlist-icon{float:right}.product-detail #product-form,.product-detail .layouter{height:100%}.product-detail #product-form .form-container{height:100%;position:relative}.product-detail #product-form .form-container div.left{padding:0;position:-webkit-sticky;position:sticky;top:60px}.product-detail #product-form .form-container div.left .product-image-group{position:-webkit-sticky;position:sticky;top:70px}.product-detail #product-form .form-container div.left .product-image-group>div{margin:0;padding:0}.product-detail #product-form .form-container .right .swatch-container{display:block;margin-top:10px}.product-detail #product-form .form-container .right .swatch-container .swatch{display:inline-block;height:40px;margin-right:5px;min-width:40px}.product-detail #product-form .form-container .right .swatch-container .swatch span{border:1px solid #c7c7c7;border-radius:3px;cursor:pointer;float:left;height:38px;line-height:36px;min-width:38px;padding:0 10px;text-align:center}.product-detail #product-form .form-container .right .swatch-container .swatch img{background:#f2f2f2;border:1px solid #c7c7c7;border-radius:3px;cursor:pointer;height:38px;width:38px}.product-detail #product-form .form-container .right .swatch-container .swatch input:checked+img,.product-detail #product-form .form-container .right .swatch-container .swatch input:checked+span{border:1px solid #242424}.product-detail #product-form .form-container .right .swatch-container .swatch input{display:none}.product-detail #product-form .form-container .right .swatch-container .no-options{color:#fb3949}.product-detail .description{overflow:auto}.product-detail .description ol,.product-detail .description ul{margin:revert;padding:revert}.product-detail .accordian-content{font-size:16px;font-weight:400}.product-detail .full-description ol,.product-detail .full-description ul{margin:revert;padding:revert}.product-detail .full-specifications{width:100%}.product-detail .full-specifications tr td:first-child(){width:100px}.product-detail select[disabled=disabled]{background-color:#dcdcdc;border-color:#dcdcdc;cursor:not-allowed}.zoomContainer,.zoomLens{z-index:99!important}.store-meta-images{margin-top:20px}.store-meta-images img{height:100%;max-height:300px;width:100%}.related-products{margin-bottom:60px}.vc-small-screen{display:none!important}@media only screen and (max-width:1192px){.sticky-header,.vc-full-screen{display:block!important}.vc-small-screen{display:none!important}#main-category{display:block!important}.footer .footer-content .newsletter-subscription .newsletter-wrapper .social-icons{padding:5px 0;text-align:center!important;width:100%}.footer .footer-content .newsletter-subscription .newsletter-wrapper .subscribe-newsletter{padding:10px 0;text-align:center;width:100%}.footer .footer-content .footer-statics>div:not(:last-child){margin-bottom:30px}.slider-container{min-height:290px}}@media only screen and (max-width:992px){body.open-hamburger{color:#7f7f7f;opacity:.8;overflow:hidden}#webheader{background-color:#fff;position:fixed}#main-category,#webheader{display:none!important}#home-right-bar-container{position:relative}.sticky-header,.vc-full-screen{display:none!important}.vc-small-screen{display:block!important}.force-center{margin:0 auto!important}.main-content-wrapper{background-color:#fff;margin-bottom:25px;z-index:100}.main-content-wrapper .vc-header{background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);margin:0;padding:0;top:0;width:100%}.main-content-wrapper .vc-header>div{display:none}.main-content-wrapper .vc-header>div.vc-small-screen{display:block}.main-content-wrapper .vc-header>div.vc-small-screen img{height:100%;max-height:50px;width:100%}.main-content-wrapper .vc-header>div.vc-small-screen .hamburger-wrapper{display:inline-block;height:50px}.main-content-wrapper .vc-header>div.vc-small-screen .hamburger-wrapper .hamburger{font-size:24px;position:relative;top:12px}.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header{display:table;height:50px;position:relative;text-align:right;z-index:2}.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header>a{display:table-cell;vertical-align:middle}.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header .badge-container,.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header .badge-wrapper{left:-12px;position:relative;top:-32px}.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header .badge-container .badge,.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header .badge-wrapper .badge{background:#26a37c;border-radius:50%;color:hsla(0,0%,100%,.83);position:absolute;z-index:10}.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header .badge-container{left:4px;margin-right:10px}#top{display:none}.product-card-new{max-width:19rem}.product-card-new.grid-card .card-body .product-name{width:13rem}.product-card-new.grid-card .card-body .product-rating{display:none}.product-card-new.grid-card .card-body .add-to-cart-btn{display:table;padding:0}.carousel-products.with-recent-viewed .product-card-new.grid-card .card-body .add-to-cart-btn .btn-add-to-cart .btn-add-to-cart,.product-card-new.grid-card .card-body .add-to-cart-btn .btn-add-to-cart .carousel-products.with-recent-viewed .btn-add-to-cart,.product-card-new.grid-card .card-body .add-to-cart-btn .btn-add-to-cart .small-padding.btn-add-to-cart{padding:3px 14px!important}.product-card-new.grid-card .card-body .add-to-cart-btn~a{position:relative}.product-card-new.grid-card .card-body .add-to-cart-btn~a.compare-icon{right:0}.product-card-new.grid-card .card-body .add-to-cart-btn~a.wishlist-icon{left:10px;max-width:25px;padding:0}.product-card-new.grid-card #quick-view-btn-container{display:none}.advertisement-four-container .offers-ct-panel{padding:8px 0}.advertisement-four-container .offers-ct-panel a:first-child{padding-bottom:10px!important}.advertisement-three-container .bottom-container img,.advertisement-three-container .top-container img{height:unset;padding:0}.advertisement-three-container .second-panel{padding-top:10px}.advertisement-two-container a:nth-of-type(2){padding:15px 0 0}.category-with-custom-options{display:none}.category-with-custom-options.vc-small-screen{display:block}.category-with-custom-options.vc-small-screen .smart-category-container .col-12{padding:0}.category-with-custom-options.vc-small-screen .smart-category-container:not(:first-child){padding-top:20px}.footer .footer-content .newsletter-subscription{padding:10px 20px}.footer .footer-content .newsletter-subscription .newsletter-wrapper{margin:0;padding:0}.footer .footer-content .newsletter-subscription .newsletter-wrapper input.subscribe-field{width:200px}.footer .footer-content .newsletter-subscription .newsletter-wrapper .subscribe-newsletter{text-align:left}.footer .footer-content .newsletter-subscription .newsletter-wrapper .subscribe-newsletter .subscriber-form-div{text-align:center}.footer .footer-content .footer-statics{padding:30px 50px}.footer .footer-content .footer-copy-right{font-size:14px}.popular-categories-container .popular-category-wrapper{padding:0}.popular-categories-container .popular-category-wrapper .card .category-image{height:100%}.popular-categories-container .popular-category-wrapper:last-child{padding-left:0}.slides-container .VueCarousel .VueCarousel-pagination button{height:5px!important;width:5px!important}.slides-container .VueCarousel .VueCarousel-pagination .VueCarousel-dot{padding:2px!important}.account-content .sidebar{display:none}.account-content .account-layout{padding:0}.account-content .account-layout.right{padding-left:20px!important;padding-right:20px!important}.account-content .account-layout .account-items-list.wishlist-container .product-card-new{width:calc(50% - 5px)}.account-content .account-layout .sale-container .tabs-content .totals .sale-summary{font-size:17px;width:100%}.account-content .account-layout .sale-container .tabs-content .totals .sale-summary tbody tr td{width:50%!important}.account-content .account-layout .sale-container .tabs-content .totals .sale-summary tbody tr td:last-child{text-align:right}.account-content .account-layout .sale-container .order-box-container .box{margin-bottom:20px;width:100%}.account-content .account-layout .sale-container .order-box-container .box .box-title{padding-bottom:0}.mini-cart-btn{display:none}header .vc-small-screen .searchbar{padding-left:20px!important;padding-right:20px!important}header .vc-small-screen .searchbar .compare-btn,header .vc-small-screen .searchbar .wishlist-btn{display:none}header .vc-small-screen #search-form{background:transparent;width:100%}header .vc-small-screen #search-form .selectdiv{display:none}header .vc-small-screen #search-form .selectdiv+input{border:1px solid #26a37c;width:calc(100% - 40px)}.carousel-products.vc-full-screen{display:none}.carousel-products.vc-small-screen{display:block!important}.carousel-products+.recently-viewed{position:static;top:0}.reviews-container .review-wrapper,.reviews-container .review-wrapper:first-of-type,.reviews-container .review-wrapper:last-of-type,.reviews-container .review-wrapper:nth-last-of-type(2){padding:0}.reviews-container .review-wrapper:not(:last-child){margin-bottom:10px}.product-policy-wrapper{padding:0!important}.product-policy-wrapper:not(:last-child){margin-bottom:10px}.product-detail #product-form .form-container div.left{margin-bottom:20px;position:relative;top:0}.product-detail #product-form .form-container div.left .vc-small-product-image{width:100%}.product-detail .customer-rating>.row>div{margin-bottom:30px}.product-detail .arrow.left,.product-detail .arrow.right{display:none}.product-detail .thumb-list .small-card-container .thumb-frame>.product-image,.product-detail .thumb-list .thumb-frame>.bg-image,.small-card-container .product-detail .thumb-list .thumb-frame>.product-image{background-size:contain}.review-page-container>div{padding:0}.review-page-container>div:not(:last-child){margin-bottom:60px;position:relative}.customer-rating>.row>div:not(:last-child){margin-bottom:20px}.auth-content.form-container>.container{margin:0;width:100%}.auth-content.form-container>.container>div:first-child{padding:0}.auth-content.form-container>.container>div:first-child .body{padding:20px}.category-page-wrapper .layered-filter-wrapper{display:none}.category-page-wrapper .category-container{margin:20px 0 0;padding-left:0!important;padding-right:0!important}.category-page-wrapper .category-container>div{padding:0 10px}.category-page-wrapper .category-container>div:first-child{padding:0 10px!important}.category-page-wrapper .category-container .filters-container{background-color:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,.21);left:0;padding:0 0 10px;position:fixed;top:30px;width:100%;z-index:9}.category-page-wrapper .category-container .filters-container .toolbar-wrapper>div.col-4{display:table;margin:0;padding:0;text-align:center}.category-page-wrapper .category-container .filters-container .toolbar-wrapper>div.col-4 *{display:table-cell;vertical-align:middle}.category-page-wrapper .category-container .filters-container .toolbar-wrapper>div.col-4 a{display:inline-block;text-align:center}.category-page-wrapper .category-container .filters-container .toolbar-wrapper>div.col-4 span{left:5px;position:relative}.nav-container{background-color:#fff;box-shadow:0 2px 8px 0;font-size:16px;height:100vh;left:0;opacity:1;overflow-y:scroll;position:fixed;top:0;width:75%;z-index:9999}.nav-container .wrapper{position:relative}.nav-container .wrapper .category-title{display:none;display:table;margin:13px 0;padding-left:10px;width:100%}.nav-container .wrapper .category-title>i{display:table-cell;font-size:26px;vertical-align:middle}.nav-container .wrapper .category-title span{display:table-cell;font-size:20px;vertical-align:top}.nav-container .wrapper .category-title span i{float:left!important;margin:2px 2px 0 0!important}.nav-container .wrapper .greeting{background-color:#fff;border-bottom:1px solid #ccc;color:#111;display:table;position:-webkit-sticky;position:sticky;top:0;width:100%}.nav-container .wrapper .greeting>i{display:table-cell;font-size:26px;vertical-align:middle}.nav-container .wrapper .greeting span{display:table-cell;font-size:20px;vertical-align:top}.nav-container .wrapper ul{border-top:1px solid #ccc;color:#111;font-weight:600}.nav-container .wrapper ul li{font-size:16px;padding:10px 0 10px 20px}.nav-container .wrapper ul li:hover{background-color:#ececec}.nav-container .wrapper ul li .category-logo,.nav-container .wrapper ul li .language-logo-wrapper{display:inline-block;height:18px;margin-right:5px;width:18px}.nav-container .wrapper ul li .rango-arrow-right{float:right;font-size:20px;padding-right:15px;padding-top:5px}.nav-container .wrapper ul li .nested-category{border-top:unset}.nav-container .wrapper ul li .nested-category li:last-child{padding-bottom:0}.nav-container .wrapper ul:first-of-type{border-top:unset}.nav-container .wrapper .category-wrapper li,.nav-container .wrapper .vc-customer-options li{font-size:14px}.nav-container .wrapper .category-wrapper li i.icon,.nav-container .wrapper .vc-customer-options li i.icon{speak:none;-webkit-font-smoothing:antialiased;display:contents;font-family:Webkul Rango!important;font-size:18px;font-style:normal;font-variant:normal;font-weight:400;line-height:1;padding-right:5px;text-transform:none}.nav-container .wrapper .category-wrapper li i.icon.profile:before,.nav-container .wrapper .vc-customer-options li i.icon.profile:before{content:""}.nav-container .wrapper .category-wrapper li i.icon.address:before,.nav-container .wrapper .vc-customer-options li i.icon.address:before{content:""}.nav-container .wrapper .category-wrapper li i.icon.reviews:before,.nav-container .wrapper .vc-customer-options li i.icon.reviews:before{content:""}.nav-container .wrapper .category-wrapper li i.icon.wishlist:before,.nav-container .wrapper .vc-customer-options li i.icon.wishlist:before{content:""}.nav-container .wrapper .category-wrapper li i.icon.compare:before,.nav-container .wrapper .vc-customer-options li i.icon.compare:before{content:""}.nav-container .wrapper .category-wrapper li i.icon.orders:before,.nav-container .wrapper .vc-customer-options li i.icon.orders:before{content:""}.nav-container .wrapper .category-wrapper li i.icon.downloadables:before,.nav-container .wrapper .vc-customer-options li i.icon.downloadables:before{content:""}.nav-container .drawer-section{padding:15px}.nav-container .header.drawer-section{display:table;width:100%}.nav-container .header.drawer-section>*{display:table-cell;vertical-align:middle}.nav-container .header.drawer-section i{padding-right:10px;width:25px}.nav-container .layered-filter-wrapper{display:block;margin-bottom:0;padding-top:0;width:100%}.category-container .grid-card,.search-container .grid-card{width:45%}.category-container .grid-card:nth-child(odd),.search-container .grid-card:nth-child(odd){float:left}.category-container .grid-card:nth-child(2n),.search-container .grid-card:nth-child(2n){float:right}.cart-details .order-summary-container.offset-1,.cart-details.offset-1{margin-left:0;padding-left:0;padding-right:0}.cart-details .cart-details-header,.cart-details h1{padding:0}.cart-details h1{margin-bottom:20px}.cart-details .cart-header{display:none}.cart-details .cart-item-list>div{margin:0;padding:0}.cart-details .product-price .special-price,.cart-details .product-price span:first-child{font-size:18px}.cart-details .actions{margin-top:7px!important}.cart-details .continue-shopping,.cart-details .empty-cart-message{padding:0}.checkout-process{margin-left:0!important;padding-left:0!important;padding-right:0!important}.checkout-process h1,.checkout-process>div{padding:0}.checkout-process .billing-address{margin-bottom:20px}.address-holder>div{padding-bottom:15px;padding-right:0}.wishlist-container{margin:0!important;padding:0!important;width:100%!important}.wishlist-container .product-card-new{margin-left:0}.compare-products{padding:0!important}.compare-products .col,.compare-products .col-2{max-width:unset}.compare-icon,.wishlist-icon{margin-left:0}.image-search-result .searched-terms{margin-left:0;margin-top:20px}.image-search-result .searched-terms .term-list a{line-height:40px}#sort-by.sorter select{display:inline-block;left:25px;padding:0 10px;position:absolute;top:2px}.slider-container{min-height:220px}}@media only screen and (max-width:768px){.sticky-header{display:none!important}#home-right-bar-container{position:unset;top:unset}.modal-container{left:10%;margin-left:0;max-width:80%}.footer .footer-list-container{padding-left:0!important}.footer .currency{display:block!important}button.btn.btn-sm.btn-primary.apply-filter{margin-top:10px}.quick-view-btn-container span{font-size:13px;left:24%;top:-24px}.quick-view-in-list{display:none}.product-card-new{max-width:18rem}.slider-container{min-height:220px}}@media only screen and (max-width:460px){.product-card-new{max-width:11rem}.product-card-new .product-image-container img{min-height:unset}}@media only screen and (max-width:420px){.sticky-header{display:none!important}#home-right-bar-container{position:unset;top:unset}.slider-container{min-height:100px}.advertisement-four-container{min-height:992px}.advertisement-four-container .advertisement-container-block,.advertisement-four-container .offers-ct-panel{min-height:425px}.product-card-new{max-width:9rem}.product-card-new .product-image-container img{min-height:unset}}@media only screen and (max-width:360px){.product-card-new{max-width:8rem}.product-card-new .product-image-container img{min-height:unset}}@media only screen and (max-width:320px){body{min-width:280px}.sticky-header{display:none!important}#home-right-bar-container{position:unset;top:unset}.quick-view-in-list{display:none}.slider-container{min-height:100px}.advertisement-four-container{min-height:992px}.advertisement-four-container .advertisement-container-block,.advertisement-four-container .offers-ct-panel{min-height:425px}.product-card-new{max-width:7rem}.product-card-new .product-image-container img{min-height:unset}}body.rtl{text-align:right}.account-content .account-layout .bottom-toolbar .pagination body.rtl .page-item,.product-detail body.rtl .right,body.rtl .account-content .account-layout .bottom-toolbar .pagination .page-item,body.rtl .fs16,body.rtl .product-detail .right{font-size:14px!important}body.rtl .order-summary-container{margin-left:0;margin-right:130px}body.rtl .velocity-divide-page .right{padding-left:0!important;padding-right:230px!important}body.rtl header #search-form #header-search-icon{border-radius:2px 0 0 2px;float:right}body.rtl header #search-form .btn-group select,body.rtl header #search-form .quantity select{border-left:0;border-right:1px solid #26a37c}body.rtl header #search-form .btn-group .selectdiv select,body.rtl header #search-form .quantity .selectdiv select{float:unset}body.rtl header #search-form .btn-group .selectdiv select~.select-icon-container,body.rtl header #search-form .quantity .selectdiv select~.select-icon-container{position:absolute;right:100px;top:0}body.rtl header #search-form .btn-group .selectdiv .select-icon,body.rtl header #search-form .quantity .selectdiv .select-icon{left:8px;top:12px}body.rtl header.sticky-header img{float:right}body.rtl header .left-wrapper{float:left}body.rtl header .left-wrapper .compare-btn .badge-container .badge,body.rtl header .left-wrapper .wishlist-btn .badge-container .badge{left:-2px;top:-28px}body.rtl header .left-wrapper .mini-cart-btn{margin-left:0;margin-right:16px}body.rtl header .left-wrapper .mini-cart-btn .mini-cart-content{margin-left:7px;margin-right:0!important}body.rtl header .left-wrapper .mini-cart-btn .mini-cart-content .badge-container .badge{left:unset;right:-15px}body.rtl header .left-wrapper .mini-cart-btn #cart-modal-content{left:0}body.rtl header .left-wrapper .mini-cart-btn #cart-modal-content .small-card-container .remove-item{left:unset;right:-10px}body.rtl header .left-wrapper .mini-cart-btn #cart-modal-content .small-card-container .card-total-price{float:left}body.rtl header .left-wrapper .mini-cart-btn .dropdown-list{right:unset!important}body.rtl .main-content-wrapper .main-category{text-align:right}body.rtl .main-content-wrapper .main-category i{float:right;margin-left:10px}body.rtl .main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header .badge-container{left:-4px}body.rtl .form-container .container .heading h2{float:right}body.rtl .form-container .back-button,body.rtl .form-container .container .heading a{float:left}body.rtl .sticker{left:unset;right:8px}body.rtl .subscriber-form-div{text-align:left}body.rtl .footer .footer-content .newsletter-subscription .newsletter-wrapper input.subscribe-field{left:-4px;position:relative}body.rtl .lg-card-container.list-card .add-to-cart-btn{float:right;margin-left:20px}body.rtl #top #account .welcome-content{float:left}body.rtl #top #account .welcome-content i{text-align:left}body.rtl #top .locale-icon~.select-icon-container{right:20px}body.rtl #top .currency-icon~.select-icon-container{right:7px}body.rtl .category-list-container .sub-categories{left:-100%}body.rtl .category-list-container li a{padding:7px 15px 5px}body.rtl .category-list-container li ul.nested li a{padding-right:25px}body.rtl .filters-container .view-mode>div{padding-right:6px}body.rtl .filters-container .toolbar-wrapper>div label{margin-left:10px;margin-right:0}body.rtl .filter-attributes-content{margin-left:7px;margin-right:0}body.rtl .filter-attributes-item input[type=checkbox]+span{margin-right:10px}body.rtl .filter-attributes-item .filter-input{margin-right:0}body.rtl .product-card-new .card-body .cart-wish-wrap{margin-right:0!important}body.rtl .product-card-new .card-body .cart-wish-wrap .add-to-cart-btn{padding-left:35px!important}body.rtl .product-card-new .card-body .wishlist-icon{left:0;right:unset}body.rtl .product-card-new .card-body .product-name{width:unset}body.rtl .account-content{min-height:100vh}body.rtl .account-content .account-layout.right{padding-right:250px!important;width:calc(100% - 20px)}body.rtl .account-content .account-layout .account-table-content .address-holder .card-link+.card-link{margin-right:1.25rem}body.rtl .account-content .account-layout .account-table-content .address-holder>div{padding-left:15px;padding-right:0}body.rtl .account-content .account-action{float:left!important}body.rtl .account-content .sidebar{border-left:1px solid #e5e5e5}body.rtl .account-content .sidebar .customer-sidebar .navigation li i.icon{padding-left:5px;padding-right:0}body.rtl .image-wrapper.image-wrapper .image-item{float:unset}body.rtl .image-wrapper.image-wrapper .image-item .remove-image{margin-right:unset}body.rtl .product-detail .product-actions .compare-icon,body.rtl .product-detail .product-actions .wishlist-icon{float:left}body.rtl .product-detail .right .info{margin-right:0}body.rtl .product-detail .right .info div,body.rtl .product-detail .right .info>h2{padding-right:0}body.rtl .product-detail .right .info .buynow{margin-right:10px}body.rtl .product-detail .thumb-list{left:0;margin-right:0}body.rtl .product-detail .wishlist-icon{padding-right:10px}body.rtl .zoomWindow{right:100%!important}body.rtl .modal-footer>:not(:last-child){margin-left:.25rem}body.rtl .compare-products .wishlist-icon{left:30px;right:unset}body.rtl .compare-products .material-icons.cross{left:20px;right:unset}body.rtl #alert-container{left:15px;right:unset}body.rtl .alert-dismissible .close{left:-8px}body.rtl .booking-information .book-slots .control-group-container .form-group:not(.quantity).date:after{left:40px;right:unset}body.rtl .full-content-wrapper>.container-fluid>.row.pl-26{padding-right:26%!important}body.rtl .image-search-container{left:45px;right:unset}body.rtl .product-policy-container .card .policy .left{margin-left:10px}body.rtl .advertisement-three-container .second-panel{padding-right:30px}body.rtl .advertisement-two-container .row{padding:0!important}body.rtl .advertisement-two-container .row .pr0{padding-right:15px!important}body.rtl .downloadable-container .link-list ul li a{float:left;margin-top:3px}body.rtl .text-right{text-align:left!important}body.rtl .text-left{text-align:right!important}body.rtl .pr0{padding-left:0!important;padding-right:15px!important}body.rtl .pl0{padding-right:0!important}body.rtl .pl10{padding-right:10px!important}body.rtl .rango-arrow-right:before{content:""}body.rtl .rango-arrow-left:before{content:""}body.rtl .styled-select+.select-icon-container .select-icon{left:6px;right:unset}body.rtl .ml15{margin-right:15px!important}body.rtl .pl30{padding-right:30px}body.rtl .ml-5{margin-right:3rem!important}.product-detail .right .options .buttons body.rtl :not(:last-child),.product-detail .right .options body.rtl .quantity>label,body.rtl .mr15,body.rtl .product-detail .right .options .buttons :not(:last-child),body.rtl .product-detail .right .options .quantity>label{margin-left:15px!important}body.rtl .ml5{margin-right:5px}body.rtl .payment-methods .pl40{padding-left:0!important;padding-right:40px!important}body.rtl #top #account .dropdown-list{left:10px;right:unset!important;text-align:right}body.rtl .VueCarousel .VueCarousel-inner{flex-direction:row-reverse}body.rtl .quantity .input-btn-group button.increase{border-left:1px solid #dcdcdc;border-right:0}body.rtl .quantity .input-btn-group button.decrease{border-left:0;border-right:1px solid #dcdcdc}body.rtl .full-content-wrapper .container-fluid .row.carousel-products-header{padding-left:75px!important;padding-right:15px!important}body.rtl .carousel-products .VueCarousel-slide,body.rtl .carousel-products .VueCarousel-wrapper{direction:ltr}body.rtl .carousel-products .VueCarousel-navigation{left:12px;right:unset}@media only screen and (max-width:992px){body.rtl .order-summary-container{margin-right:0}body.rtl .nav-container ul li{padding:10px 20px 10px 0}body.rtl .nav-container ul li .rango-arrow-right{float:left;padding-left:40px}body.rtl .nav-container .wrapper .vc-customer-options li i.icon{float:right;padding-left:5px}body.rtl .account-content .account-layout.right,body.rtl .full-content-wrapper>.container-fluid>.row.pl-26{padding-right:20px!important}body.rtl .velocity-divide-page .left{right:35px;top:4px;width:150px}body.rtl .velocity-divide-page .right{padding:0 20px!important}body.rtl .checkout-process{margin-right:0!important;padding-left:0!important;padding-right:0!important}}@media only screen and (max-width:425px){.account-content .account-layout .bottom-toolbar .pagination body.rtl .page-item,.product-detail body.rtl .right,body.rtl .account-content .account-layout .bottom-toolbar .pagination .page-item,body.rtl .fs16,body.rtl .product-detail .right{font-size:12px!important}body.rtl .velocity-divide-page .right{padding:0 20px!important}}@media only screen and (max-width:375px){.account-content .account-layout .bottom-toolbar .pagination body.rtl .page-item,.product-detail body.rtl .right,body.rtl .account-content .account-layout .bottom-toolbar .pagination .page-item,body.rtl .fs16,body.rtl .product-detail .right{font-size:10px!important}body.rtl .velocity-divide-page .right{padding:0 20px!important}}@media only screen and (max-width:320px){.account-content .account-layout .bottom-toolbar .pagination body.rtl .page-item,.product-detail body.rtl .right,body.rtl .account-content .account-layout .bottom-toolbar .pagination .page-item,body.rtl .fs16,body.rtl .product-detail .right{font-size:8px!important}body.rtl .velocity-divide-page .right{padding:0 20px!important}}.table{width:100%}.table .table-responsive{overflow-x:auto;width:100%}.table .table-responsive::-webkit-scrollbar{height:5px!important}.table .table-responsive::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px #c8c8c8!important}.table .table-responsive::-webkit-scrollbar-thumb{background-color:#fff!important;border-radius:10px!important;-webkit-box-shadow:inset 0 0 6px rgba(90,90,90,.7)!important}.table table{border-collapse:collapse;text-align:left;width:100%}.table table thead th{background:#f8f9fa;border-right:1px solid #ccc!important;color:rgba(0,0,0,.83);font-weight:700;padding:12px 10px}.table table thead th.sortable{cursor:pointer}.table table thead th:last-child{border-right:none}.table table tbody td{border-bottom:1px solid #d3d3d3;color:rgba(0,0,0,.83);padding:10px;vertical-align:top}.table table tbody td.actions .action{display:inline-flex}.table table tbody td.actions .icon{cursor:pointer;display:block}.table table tbody td.empty{text-align:center}.table table tbody tr:last-child td{border-bottom:none}.table .control-group{margin-bottom:0;min-width:140px;width:100%}.table .control-group .control{margin:0;width:100%}.grid-container{display:block;width:100%}.grid-container .grid-top{align-items:center;display:grid;grid-template-rows:auto auto auto;row-gap:8px}.grid-container .grid-top .datagrid-filters,.grid-container .grid-top .datagrid-filters .grid-right{-moz-column-gap:10px;column-gap:10px;display:grid;grid-template-columns:auto auto}.grid-container .grid-top .datagrid-filters .grid-right{align-items:end;justify-self:end}.grid-container .grid-top .datagrid-filters .dropdown-filters{display:inline-block}.grid-container .grid-top .datagrid-filters .dropdown-filters.per-page .control-group{margin-bottom:0}.grid-container .grid-top .datagrid-filters .dropdown-filters.per-page .control-group label{flex:auto;margin-right:10px;margin-top:7px}.grid-container .grid-top .datagrid-filters .dropdown-filters.per-page .control-group .control{flex:1;margin:0;width:100%}.grid-container .datagrid-filters{position:relative}.grid-container .datagrid-filters,.grid-container .datagrid-filters .filter-right{align-items:end;-moz-column-gap:10px;column-gap:10px;display:grid;grid-template-columns:auto auto}.grid-container .datagrid-filters .filter-right{justify-self:end}.grid-container .datagrid-filters .filter-right .control-group{margin-bottom:10px}.grid-container .datagrid-filters .filter-right .control-group .control{margin-bottom:0}.grid-container .datagrid-filters .filter-right .dropdown-list{padding:15px;right:0}.grid-container .datagrid-filters .filter-right .dropdown-list ul{list-style:none;margin:0;padding:0}.grid-container .datagrid-filters .filter-right .dropdown-list .apply-filter{width:100%}.filtered-tags{align-items:flex-start;display:inline-flex;flex-wrap:wrap;margin-bottom:10px}.search-filter{border-radius:3px;height:36px;max-width:300px;position:relative}.search-filter .control{-webkit-appearance:none;border:1px solid #c7c7c7;border-bottom-left-radius:3px;border-right:none;border-top-left-radius:3px;font-size:15px;height:36px;padding-left:10px;width:calc(100% - 36px)}.search-filter:hover{box-shadow:0 0 0 1px rgba(0,64,255,.6)}.search-filter .contorl:focus{border-color:#0041ff}.search-filter .icon-wrapper{border:1px solid #c7c7c7;border-radius:3px;border-bottom-left-radius:0;border-top-left-radius:0;height:36px;padding:5px;position:absolute;right:0;top:0;width:36px}.search-icon{background-image:url(../images/icon-search.svg);height:24px;width:24px}.icon{background-size:cover;display:inline-block}.grid-dropdown-header{align-items:center;background-color:#fff;border:1px solid #c7c7c7;border-radius:3px;display:inline-flex;height:36px;justify-content:space-between;min-width:200px;padding:0 5px;width:100%}.grid-dropdown-header .arrow-icon-down{float:right}.dropdown-toggle:after{display:none}.dropdown-list{background-color:#fff;border-radius:3px;box-shadow:0 2px 4px 0 rgba(0,0,0,.16),0 0 9px 0 rgba(68,58,58,.16);display:none;margin-bottom:20px;position:absolute;text-align:left;width:200px;z-index:1000}.dropdown-list.bottom-left{left:0;top:42px}.dropdown-list.bottom-right{right:0;top:42px}.dropdown-list.top-left{bottom:0;left:42px}.dropdown-list.top-right{bottom:0;right:42px}.dropdown-list .dropdown-label{border-bottom:1px solid #c1c2c3;color:rgba(0,0,0,.53);cursor:default;display:block;font-size:18px;font-weight:600;padding:8px 12px}.dropdown-list .dropdown-container{overflow-y:auto}.dropdown-list .dropdown-container label{color:#9e9e9e;display:inline-block;font-size:15px;font-weight:700;padding-bottom:5px;text-transform:uppercase}.dropdown-list .dropdown-container ul{list-style-type:none;margin:0;padding:0}.dropdown-list .dropdown-container ul li a{font-size:16px;padding:8px 12px}.dropdown-list .dropdown-container ul li a:active,.dropdown-list .dropdown-container ul li a:focus,.dropdown-list .dropdown-container ul li a:link,.dropdown-list .dropdown-container ul li a:visited{color:rgba(0,0,0,.83);display:block}.dropdown-list .dropdown-container ul li a:hover{background-color:#ececec}.dropdown-list .dropdown-container ul li .control-group label{color:rgba(0,0,0,.83);font-size:15px;font-weight:500;text-transform:capitalize;width:100%}.dropdown-list .dropdown-container .btn{margin-top:10px;width:100%}.checkbox-dropdown-list{right:14px!important;width:170px!important}.checkbox-dropdown-list input{width:unset!important}.dropdown-btn{background:#fff;border:1px solid #ccc;border-radius:3px;cursor:pointer;font-size:14px;min-width:150px;padding:8px 35px 8px 10px;position:relative;text-align:left}.dropdown-btn:focus{border-color:#26a37c!important;outline:unset!important}.filter-advance{display:flex;justify-content:space-between}.filter-tag{border-radius:2px;justify-content:space-between;margin-right:20px}.filter-tag,.filter-tag .wrapper{align-items:center;display:flex;flex-direction:row;font-size:14px;height:40px}.filter-tag .wrapper{background:#e7e7e7;border:1px solid #e7e7e7;border-radius:24px;color:#000311;letter-spacing:-.22px;margin-left:4px;padding:5px 10px 5px 16px}.filter-tag .wrapper .icon.cross-icon{cursor:pointer;margin-left:10px}.filter-tag .wrapper:hover{background:#fff;border:1px solid #e7e7e7}.rtl .grid-container .datagrid-filters .filter-right .dropdown-list{right:unset}.rtl .search-filter .control{border-bottom-left-radius:0;border-bottom-right-radius:3px;border-left:0;border-right:1px solid #c7c7c7;border-top-left-radius:0;border-top-right-radius:3px;padding-right:10px}.rtl .search-filter .icon-wrapper{border-bottom-left-radius:3px;border-bottom-right-radius:0;border-top-left-radius:3px;border-top-right-radius:0;float:left}.rtl .search-filter:hover{box-shadow:0 0 0 1px rgba(0,64,255,.6)}.rtl .dropdown-filters{display:inline-block}.rtl .dropdown-filters.per-page{margin-left:10px;margin-right:10px}.rtl .filtered-tags .filter-tag .cross-icon,.rtl .filtered-tags .filter-tag .wrapper{margin-left:0;margin-right:10px}.rtl .checkbox-dropdown-list .dropdown-container{text-align:right}.rtl .checkbox-dropdown-list .checkbox input[type=checkbox]{float:right;margin-left:unset;margin-right:unset}@media only screen and (max-width:768px){.grid-container .grid-top .datagrid-filters{grid-template-columns:100%;row-gap:0}.grid-container .grid-top .datagrid-filters .search-filter{max-width:100%!important}.grid-container .grid-top .datagrid-filters .filter-left,.grid-container .grid-top .datagrid-filters .filter-right{-moz-column-gap:5px;column-gap:5px;display:grid;grid-template-columns:49.5% 49%}.grid-container .grid-top .datagrid-filters .filter-right{width:100%}.grid-dropdown-header{min-width:122px}.dropdown-list.dropdown-container{padding:10px}}@font-face{font-display:swap;font-family:Material Icons;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialicons/v48/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format("woff2")}@font-face{font-display:swap;font-family:Material Icons Outlined;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialiconsoutlined/v14/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUce.woff2) format("woff2")}@font-face{font-display:swap;font-family:Material Icons Round;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialiconsround/v14/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmP.woff2) format("woff2")}@font-face{font-display:swap;font-family:Material Icons Sharp;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialiconssharp/v15/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvR.woff2) format("woff2")}@font-face{font-display:swap;font-family:Material Icons Two Tone;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialiconstwotone/v13/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu0.woff2) format("woff2")}.material-icons{-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-family:Material Icons}.material-icons,.material-icons-outlined{word-wrap:normal;direction:ltr;display:inline-block;font-size:24px;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1;max-width:30px;overflow:hidden;text-transform:none;white-space:nowrap}.material-icons-outlined{-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-family:Material Icons Outlined}.material-icons-round{-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-family:Material Icons Round}.material-icons-round,.material-icons-sharp{word-wrap:normal;direction:ltr;display:inline-block;font-size:24px;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap}.material-icons-sharp{-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-family:Material Icons Sharp}.material-icons-two-tone{word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;direction:ltr;display:inline-block;font-family:Material Icons Two Tone;font-size:24px;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap}*{font-family:Source Sans Pro,sans-serif;margin:0;padding:0}*,:after,:before{box-sizing:inherit}::-webkit-scrollbar{height:5px;width:3px}::-webkit-scrollbar-track{background:#d8d8d8}::-webkit-scrollbar-thumb{background:#666}::-webkit-input-placeholder{font-family:Source Sans Pro,sans-serif}input[type=checkbox]{height:15px;margin-right:10px;width:24px}.form-control:focus{box-shadow:0 0 8px 1px rgba(105,221,157,.25)}button,input,optgroup,select,textarea{color:rgba(0,0,0,.83);font-family:Source Sans Pro,sans-serif}textarea{resize:none}html{box-sizing:border-box}body{background:#fff;color:rgba(0,0,0,.83);font-family:Source Sans Pro,sans-serif;font-size:12px;font-weight:400;line-height:20px;padding:0;width:100%}body,label{margin:0}.btn:hover{text-decoration:none}.btn:active:hover,.btn:focus{outline:none;outline-offset:0}.btn-link{color:rgba(0,0,0,.83);padding:6px 5px}.btn-link:focus,.btn-link:hover{color:rgba(0,0,0,.83);text-decoration:none}#top{border-bottom:1px solid #ccc;box-shadow:0 0 0 0 rgba(0,0,0,.24);color:rgba(0,0,0,.83);margin:0;min-height:32px}#top .btn{border-radius:0;font-family:Source Sans Pro,sans-serif;font-size:14px;letter-spacing:0;text-align:center}#top .btn,#top .btn:hover{text-decoration:none}#top .btn:active:hover,#top .btn:focus{outline:none;outline-offset:0}#top .btn-normal{background:#21a179;border-color:#269c77;color:#fff;font-weight:600}#top .btn-normal:active:focus,#top .btn-normal:active:hover,#top .btn-normal:hover{background:#fff;border-color:#21a179;color:#21a179}#top .btn-link{color:rgba(0,0,0,.83)}#top .dropdown-menu-large{left:-100px;min-width:250px}#top .customer-name{color:rgba(0,0,0,.83);font-size:16px;font-weight:600;padding:0 10px}#top #account{font-size:14px}#top #account .select-icon{left:0;padding-left:5px;top:0}#top #account .welcome-content{cursor:pointer;display:table;float:right;min-width:150px;padding-top:5px;text-align:right}#top #account .welcome-content *{display:table-cell;vertical-align:middle}#top #account .dropdown-list{right:10px;top:40px}#top #account .dropdown-list .modal-header{padding:20px}#top #account .dropdown-list .content{padding:5px 20px 15px}#top #account .dropdown-list .modal-footer .account-content .account-layout .bottom-toolbar .pagination .page-item,#top #account .dropdown-list .modal-footer .cart-details .continue-shopping-btn,#top #account .dropdown-list .modal-footer .theme-btn,.account-content .account-layout .bottom-toolbar .pagination #top #account .dropdown-list .modal-footer .page-item,.cart-details #top #account .dropdown-list .modal-footer .continue-shopping-btn{text-align:center;width:50%}#top>div:last-child{height:32px}#top>div .default{font-size:14px;padding:5px}#top .locale-icon{display:inline-block;width:20px}#top .locale-icon img{width:100%}#top .locale-switcher{cursor:pointer;padding-left:5px;padding-right:15px;position:relative;text-align:left}#top .dropdown{margin-right:15px}#top .dropdown .select-icon-container .select-icon{right:0}.dropdown-menu{background:#fff;border-radius:0;border-top:3px solid #269c77;box-shadow:11px 10px 17px 0 rgba(0,0,0,.21)}.dropdown-menu li a .dropdown-menu li a:focus,.dropdown-menu li a:focus,.dropdown-menu li a:hover{background:#21a179;color:#fff}.no-padding,.product-detail .right h3{padding:0!important}.btn-normal{background:#21a179;border-color:#269c77;border-radius:0;color:#fff;font-weight:600}.btn-normal:active:focus,.btn-normal:active:hover,.btn-normal:hover{background:#fff;border-color:#21a179;color:#21a179}.btn-secondary{background:#fff;border-color:#fff;color:#21a179}.btn-secondary:active:focus,.btn-secondary:active:hover,.btn-secondary:focus,.btn-secondary:hover{background:#21a179;border-color:#21a179}.btn-danger{color:#fff}.btn-danger,.btn-danger:active:focus,.btn-danger:active:hover,.btn-danger:focus,.btn-danger:hover{background:#f05153;border-color:#f05153}header .logo{height:46px;padding-left:10px}header #search-form{background:#fff;height:40px;margin:8px 0}header #search-form *{height:100%}header #search-form .btn-group,header #search-form .quantity{max-width:550px}header #search-form .btn-group .selectdiv,header #search-form .quantity .selectdiv{width:210px}header #search-form .btn-group .selectdiv .select-icon,header #search-form .quantity .selectdiv .select-icon{background-color:#fff;font-size:18px;height:20px;right:8px;top:-30px;z-index:10}header #search-form .btn-group select,header #search-form .quantity select{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:1px solid #26a37c;border-radius:2px 0 0 2px;border-right:0;cursor:pointer;font-family:Source Sans Pro,sans-serif;height:100%;width:100%}header #search-form .btn-group select::-ms-expand,header #search-form .quantity select::-ms-expand{display:none}header #search-form input{border:1px solid #26a37c;border-left-color:#ccc;border-radius:0;font-size:14px;height:100%;letter-spacing:0;line-height:20px;padding:0 10px}header #search-form .btn:hover{text-decoration:none}header #search-form .btn:active:hover,header #search-form .btn:focus{outline:none;outline-offset:0}header #search-form #header-search-icon{background-color:#26a37c;border-radius:0 2px 2px 0;min-width:40px}header #search-form #header-search-icon i{color:#fff}header .left-wrapper{float:right}header .left-wrapper .compare-btn,header .left-wrapper .mini-cart-btn,header .left-wrapper .wishlist-btn{cursor:pointer;display:inline-block;font-size:18px;font-weight:600;margin:16px}header .left-wrapper .compare-btn.mini-cart-btn,header .left-wrapper .mini-cart-btn.mini-cart-btn,header .left-wrapper .wishlist-btn.mini-cart-btn{margin-right:0}header .left-wrapper .compare-btn i,header .left-wrapper .mini-cart-btn i,header .left-wrapper .wishlist-btn i{margin-right:5px;vertical-align:middle}header .left-wrapper .compare-btn .badge-container,header .left-wrapper .mini-cart-btn .badge-container,header .left-wrapper .wishlist-btn .badge-container{display:inline-block;position:relative}header .left-wrapper .compare-btn .badge-container .badge,header .left-wrapper .mini-cart-btn .badge-container .badge,header .left-wrapper .wishlist-btn .badge-container .badge{background:#21a179;border-radius:50%;color:hsla(0,0%,100%,.83);left:-15px;min-width:20px;padding:4px;position:absolute;top:-23px}header .left-wrapper .compare-btn span,header .left-wrapper .mini-cart-btn span,header .left-wrapper .wishlist-btn span{padding-left:0;position:relative}header .left-wrapper .compare-btn #mini-cart,header .left-wrapper .mini-cart-btn #mini-cart,header .left-wrapper .wishlist-btn #mini-cart{line-height:inherit;padding:0}header .left-wrapper .compare-btn #mini-cart .mini-cart-content,header .left-wrapper .mini-cart-btn #mini-cart .mini-cart-content,header .left-wrapper .wishlist-btn #mini-cart .mini-cart-content{color:rgba(0,0,0,.83);display:inline-block;font-size:16px;font-weight:600;letter-spacing:0;margin-right:7px;position:relative;text-align:right}header .left-wrapper .compare-btn #mini-cart .mini-cart-content i+span.cart-text,header .left-wrapper .mini-cart-btn #mini-cart .mini-cart-content i+span.cart-text,header .left-wrapper .wishlist-btn #mini-cart .mini-cart-content i+span.cart-text{padding-left:0;vertical-align:text-bottom}header .left-wrapper .compare-btn #mini-cart .mini-cart-content+.down-arrow-container,header .left-wrapper .compare-btn #mini-cart .mini-cart-content+.down-arrow-container .rango-arrow-down,header .left-wrapper .mini-cart-btn #mini-cart .mini-cart-content+.down-arrow-container,header .left-wrapper .mini-cart-btn #mini-cart .mini-cart-content+.down-arrow-container .rango-arrow-down,header .left-wrapper .wishlist-btn #mini-cart .mini-cart-content+.down-arrow-container,header .left-wrapper .wishlist-btn #mini-cart .mini-cart-content+.down-arrow-container .rango-arrow-down{top:0}header .dropdown-menu-large{left:-180px;min-width:280px}header .dropdown-menu-large .dropdown-content{max-height:300px;overflow-y:auto;width:100%}header .dropdown-menu-large .dropdown-content .item{display:flex;padding:10px}header .dropdown-menu-large .dropdown-content .item .item-image{position:relative}header .dropdown-menu-large .dropdown-content .item .item-image .material-icons{cursor:pointer;font-size:16px;left:-6px;position:absolute;top:-6px}header .dropdown-menu-large .dropdown-content .item .item-image .thumbnail{border:1px solid #ccc;border-radius:0;height:75px;margin:0;width:75px}header .dropdown-menu-large .dropdown-content .item .item-name{color:rgba(0,0,0,.83);font-size:18px;font-weight:600;letter-spacing:0}header .dropdown-menu-large .dropdown-content .item .item-details{height:auto;padding:0 10px}header .dropdown-menu-large .dropdown-content .item .item-details .item-options{color:rgba(0,0,0,.83);font-family:Source Sans Pro,sans-serif;font-size:13px;letter-spacing:0}header .dropdown-menu-large .dropdown-content .item .item-details .item-qty-price{display:inline-block;padding:5px 0}header .dropdown-menu-large .dropdown-content .item .item-details .item-qty-price .item-qty{color:rgba(0,0,0,.83);font-size:16px;letter-spacing:0;text-align:left}header .dropdown-menu-large .dropdown-content .item .item-details .item-qty-price .item-price{color:rgba(0,0,0,.83);font-size:16px;font-weight:600;letter-spacing:0;text-align:right}header .dropdown-menu-large .dropdown-header{border-top:1px solid #ccc;padding:10px 10px 5px}header .dropdown-menu-large .dropdown-header .sub-total-text{color:rgba(0,0,0,.83);font-size:16px;font-weight:600;letter-spacing:0}header .dropdown-menu-large .dropdown-header .cart-sub-total{color:rgba(0,0,0,.83);font-size:16px;font-weight:700;letter-spacing:0;text-align:right}header .dropdown-menu-large .dropdown-footer{border-top:1px solid #ccc;color:rgba(0,0,0,.83);font-size:16px;font-weight:700;letter-spacing:0;padding:10px 10px 0}header .dropdown-menu-large .dropdown-footer .cart-link{text-align:left}header .dropdown-menu-large .dropdown-footer .cart-link a{vertical-align:middle}header .dropdown-menu-large .dropdown-footer .checkout-link{text-align:right}#nav-menu{background-color:#fff;box-shadow:0 0 0 0 rgba(0,0,0,.24);margin:0}#nav-menu .navbar{color:rgba(0,0,0,.83);cursor:pointer;font-family:SourceSansPro-Semibold;font-size:16px;letter-spacing:0;margin:0;min-height:40px;position:relative}#nav-menu .navbar .navbar-header{display:inline-block;width:100%}#nav-menu .navbar .navbar-header .main-category{display:inline-block;overflow:hidden;padding:5px 5px 5px 35px;position:relative;width:100%}#nav-menu .navbar .navbar-header .main-category .material-icons{font-size:28px;left:0;position:absolute;top:2px}#nav-menu .navbar .category-dropdown{background:#fff;height:525px;left:0;position:absolute;top:40px;width:100%}#nav-menu .navbar .category-dropdown li.category-list{background:#fff;display:inline-block;position:relative;width:100%}#nav-menu .navbar .category-dropdown li.category-list a{color:rgba(0,0,0,.83);display:block;font-size:14px;font-weight:600;letter-spacing:0;padding:10px 0;position:relative}#nav-menu .navbar .category-dropdown li.category-list a .material-icons{position:absolute;right:0;top:8px}#nav-menu .navbar .category-dropdown li.category-list a:hover{background-color:#f7f7f9;color:#28557b;text-decoration:none}#nav-menu .navbar .category-dropdown li.category-list .child-container{background-color:#ccc;height:350px;left:283px;position:absolute;top:0;width:250px}#nav-menu .secondary-navbar{background-color:#4d7ea8;display:inline-block;height:auto;list-style:none;margin:0;min-height:40px;padding:5px;text-align:left;vertical-align:middle;width:100%}#nav-menu .secondary-navbar li{float:left}#nav-menu .secondary-navbar li a{color:#fff;cursor:pointer;display:block;font-size:16px;font-weight:600;letter-spacing:0;padding:5px 20px 5px 5px;position:relative;text-decoration:none}.viewed-products .viewed-products-listing{background-color:#f6f6f6;border:1px solid #fff}.viewed-products .viewed-products-listing .product-description,.viewed-products .viewed-products-listing .product-image{display:inline-block}.viewed-products .viewed-products-listing .product-description div{padding-top:2px}.customer-reviews .first-row{display:flex;justify-content:space-between}.customer-reviews .second-row{display:inline-block;width:100%}.customer-reviews .second-row .reviews-listing{background:#fff;box-shadow:0 4px 17px 0 rgba(0,0,0,.11);padding-right:10px}.customer-reviews .second-row .review-grid{display:grid;height:262px;padding-left:10px;padding-right:10px;padding-top:40px;width:345px}.categories-grid-customizable .category-grid{padding-bottom:10px;padding-left:5px;padding-right:5px}.categories-grid-customizable .category-grid .category-image{border:1px solid red}.categories-grid-customizable .category-grid .category-details{border:1px solid blue}.categories-grid-customizable .category-grid .category-details h3{color:#fff;text-align:center}.categories-grid-customizable .category-grid .category-details li{color:#fff;list-style-type:none;text-align:center}.product-policy{border:1px solid maroon;padding:30px 0 50px;text-align:center}.popular-products{height:auto;padding-right:10px;width:100%}.popular-products .second-row .popular-products-listing{border:1px solid red}.popular-products .second-row .popular-products-listing .product-buttons .add-to-cart-button .btn-primary{border:#26a37c!important;border-radius:0}.popular-products .second-row .popular-products-listing .product-buttons .add-to-cart-button .addtocart{background-color:#26a37c;text-transform:uppercase}.customer-name{background:#21a179;border-radius:50%;color:#fff;display:table-cell;font:18px josefin sans,arial;height:54px;padding:16px;text-align:center;vertical-align:middle;width:56px}.spacing{margin:5px 0}i.within-circle{border-radius:50%;box-shadow:0 0 2px #888;display:inline-block;height:50px;margin:15px 0;padding:12px;width:50px}.center_div{margin:0 auto;width:80%}.form-style{background-color:#fff;background-image:none;border:1px solid #dcdcdc;border-radius:0;color:rgba(0,0,0,.83);display:block;font-size:16px;height:36px;line-height:1.42857143;padding:6px 12px;width:100%}.label-style{display:inline-block!important;font-size:16px!important;font-weight:100!important;margin-bottom:5px!important;max-width:100%!important}.btn-white{color:#fff;height:36px;width:133px}.w3-card-2{width:133px}.w3-card-2,.w3-card-login{box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);float:right;height:36px}.w3-card-login{width:71px}.btn-new-customer-login{color:#26a37c!important;font-size:16px;padding:11px;text-decoration:none!important}.btn-dark-green{background-color:#26a37c;border-color:#26a37c;border-radius:0!important;color:#fff;height:36px}.login-text{border:1px #e5e5e5;height:65px;margin:0 auto;width:575px}.row:after,.row:before{display:none!important}.image-wrapper{display:inline-block;margin-bottom:20px;margin-top:10px;width:100%}.image-wrapper .image-item{background:#f8f9fa;background-image:url(../images/placeholder-icon.svg);background-position:50%;background-repeat:no-repeat;background-size:75%;border-radius:3px;display:inline-block;float:left;height:150px;margin-bottom:20px;margin-right:20px;position:relative;width:150px}.image-wrapper .image-item img.preview{height:100%;width:100%}.image-wrapper .image-item input{display:none}.image-wrapper .image-item .remove-image{background-image:linear-gradient(-180deg,rgba(0,0,0,.08),rgba(0,0,0,.24));border-radius:0 0 4px 4px;bottom:0;color:#fff;cursor:pointer;margin-right:20px;padding:10px;position:absolute;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.24);width:100%}.image-wrapper .image-item:hover .remove-image{display:block}.image-wrapper .image-item.has-image{background-image:none}.btn-primary{background-color:#26a37c!important;border-color:#26a37c!important}.category-page-wrapper .category-container .filters-container{background-color:#fff;box-shadow:none;left:0;margin-left:7px;padding:0 0 7px;position:unset;top:30px;width:96%;z-index:9}.filters-container .toolbar-wrapper>div select{background-color:#fff;color:rgba(0,0,0,.83);cursor:pointer;padding:6px 8px}.filters-container .toolbar-wrapper>div{margin:0 8px 0 0}@media(max-width:600px){.selective-div{-webkit-appearance:none;width:97px}.nav-container{background-color:#fff;box-shadow:5px 0 5px -5px #333;font-size:16px;height:100vh;left:0;opacity:1;overflow-y:scroll;position:fixed!important;top:0;width:75%;z-index:9999}}.velocity-divide-page .right{width:99%!important}.main-content-wrapper .content-list ul{width:101.2%!important}.show-password{margin-top:10px!important} +.velocity-icon{height:55px;width:60px}@font-face{font-display:swap;font-family:Webkul Rango;font-style:normal;font-weight:400;src:url(../fonts/font-rango/rango.eot?o0evyv);src:url(../fonts/font-rango/rango.eot?o0evyv#iefix) format("embedded-opentype"),url(../fonts/font-rango/rango.ttf?o0evyv) format("truetype"),url(../fonts/font-rango/rango.woff?o0evyv) format("woff"),url(../fonts/font-rango/rango.svg?o0evyv#rango) format("svg")}.wk-icon{color:#0041ff;font-size:20px;font-weight:400;text-align:center}[class*=" rango-"],[class^=rango-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:Webkul Rango!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.rango-activity:before{content:""}.rango-announcement:before{content:""}.rango-arrow-circle-down:before{content:""}.rango-arrow-circle-left:before{content:""}.rango-arrow-circle-right:before{content:""}.rango-arrow-circle-up:before{content:""}.rango-arrow-down:before{content:""}.rango-arrow-left:before{content:""}.rango-arrow-right:before{content:""}.rango-arrow-up:before{content:""}.rango-auction:before{content:""}.rango-baby:before{content:""}.rango-bag:before{content:""}.rango-ball-2:before{content:""}.rango-bar-code:before{content:""}.rango-batch:before{content:""}.rango-book:before{content:""}.rango-calender:before{content:""}.rango-camera:before{content:""}.rango-car:before{content:""}.rango-card:before{content:""}.rango-cart-1:before{content:""}.rango-cart-2:before{content:""}.rango-cart-3:before{content:""}.rango-circel-1:before{content:""}.rango-circel:before{content:""}.rango-circle-1:before{content:""}.rango-circle-2:before{content:""}.rango-circle-check:before{content:""}.rango-clear:before{content:""}.rango-close-2:before{content:""}.rango-close:before{content:""}.rango-cloth:before{content:""}.rango-coin:before{content:""}.rango-copy:before{content:""}.rango-currency:before{content:""}.rango-delete:before{content:""}.rango-donwload-1:before{content:""}.rango-download-1:before{content:""}.rango-edit-pencil:before{content:""}.rango-ellipse:before{content:""}.rango-envelop:before{content:""}.rango-exchange:before{content:""}.rango-exchnage:before{content:""}.rango-expend-collaps:before{content:""}.rango-expend:before{content:""}.rango-eye-hide:before{content:""}.rango-eye-visible:before{content:""}.rango-facebook:before{content:""}.rango-file:before{content:""}.rango-filter:before{content:""}.rango-flag:before{content:""}.rango-folder:before{content:""}.rango-food:before{content:""}.rango-furniture:before{content:""}.rango-gift:before{content:""}.rango-globe:before{content:""}.rango-google-plus:before{content:""}.rango-gps:before{content:""}.rango-graph-1:before{content:""}.rango-graph:before{content:""}.rango-heart-fill:before{content:""}.rango-heart:before{content:""}.rango-hold-cart:before{content:""}.rango-home:before{content:""}.rango-info:before{content:""}.rango-instagram:before{content:""}.rango-language-1:before{content:""}.rango-language:before{content:""}.rango-laptop:before{content:""}.rango-limit:before{content:""}.rango-linked-in:before{content:""}.rango-lipstick:before{content:""}.rango-location:before{content:""}.rango-lock-1:before{content:""}.rango-lock-2:before{content:""}.rango-map:before{content:""}.rango-message-1:before{content:""}.rango-message:before{content:""}.rango-minus:before{content:""}.rango-mobile:before{content:""}.rango-more:before{content:""}.rango-neckless:before{content:""}.rango-next:before{content:""}.rango-notification:before{content:""}.rango-num-pad:before{content:""}.rango-percentage:before{content:""}.rango-phone:before{content:""}.rango-picture:before{content:""}.rango-pintrest:before{content:""}.rango-play:before{content:""}.rango-plus:before{content:""}.rango-pos:before{content:""}.rango-power:before{content:""}.rango-previous:before{content:""}.rango-printer:before{content:""}.rango-product-add:before{content:""}.rango-product-retrun:before{content:""}.rango-product:before{content:""}.rango-produt-group:before{content:""}.rango-push:before{content:""}.rango-quotation:before{content:""}.rango-refresh:before{content:""}.rango-refrigrator:before{content:""}.rango-return-credit:before{content:""}.rango-return:before{content:""}.rango-search:before{content:""}.rango-security:before{content:""}.rango-setting-cog:before{content:""}.rango-setting-reset:before{content:""}.rango-share-1:before{content:""}.rango-share-2:before{content:""}.rango-shoes:before{content:""}.rango-shop:before{content:""}.rango-sign-in:before{content:""}.rango-sign-out:before{content:""}.rango-sort-1:before{content:""}.rango-sort-2:before{content:""}.rango-square-1:before{content:""}.rango-square-3:before{content:""}.rango-square-4:before{content:""}.rango-square-tick-fill:before{content:""}.rango-square:before{content:""}.rango-star-fill:before{content:""}.rango-star:before{content:""}.rango-stat-down:before{content:""}.rango-stat-up:before{content:""}.rango-support-head:before{content:""}.rango-t-shirt:before{content:""}.rango-table:before{content:""}.rango-tag-1:before{content:""}.rango-tag-2:before{content:""}.rango-tag-3:before{content:""}.rango-tag-4:before{content:""}.rango-tick-2:before{content:""}.rango-tick-square:before{content:""}.rango-tick:before{content:""}.rango-toggle:before{content:""}.rango-trophy:before{content:""}.rango-twitter:before{content:""}.rango-upload-2:before{content:""}.rango-upload:before{content:""}.rango-user-add:before{content:""}.rango-user-cash:before{content:""}.rango-user-group:before{content:""}.rango-user-info:before{content:""}.rango-user-owner:before{content:""}.rango-user-shop:before{content:""}.rango-user:before{content:""}.rango-van-ship:before{content:""}.rango-video-camera:before{content:""}.rango-video:before{content:""}.rango-view-grid:before{content:""}.rango-view-list:before{content:""}.rango-wifi-on:before{content:""}.rango-wifi:before{content:""}.rango-youtube:before{content:""}.rango-zoom-minus:before{content:""}.rango-zoom-plus:before{content:""}.velocity-icon{background-image:url(../images/Icon-Velocity.svg);height:48px;width:48px}.camera-icon,.velocity-icon{background-size:cover;display:inline-block}.camera-icon{background-image:url(../images/icon-camera.svg);width:24px}.active .velocity-icon,.active.velocity-icon,.router-link-active .velocity-icon,.router-link-active.velocity-icon{background-image:url(../images/Icon-Velocity-Active.svg)}.eye-icon{background-image:url(../images/icon-eye.svg);height:24px;width:24px}.cross-icon{background-image:url(../images/icon-crossed.svg);height:18px;width:18px}.ltr{direction:ltr}.rtl{direction:rtl}.padding-10,.padding-15{padding:15px}.fw5{font-weight:500}.fw6,.product-detail .right .info .price,.product-detail .right .info h2,.product-detail .right h3,.product-detail .right h4{font-weight:600}.fw7{font-weight:700}.fs13{font-size:13px!important}.fs14,.main-content-wrapper{font-size:14px}.fs15{font-size:15px}.account-content .account-layout .bottom-toolbar .pagination .page-item,.fs16,.product-detail .right{font-size:16px}.fs16i{font-size:16px!important}.fs17{font-size:17px}.fs18,.product-detail .right h3{font-size:18px}.fs19{font-size:19px}.fs20,.product-detail .right .info .price{font-size:20px}.fs24,.product-detail .right .info h2{font-size:24px}.fs30,.product-detail .right .info .price .card-current-price{font-size:30px}.fs40{font-size:40px}.pt0{padding-top:0!important}.pt10{padding-top:10px!important}.pt15{padding-top:15px!important}.pt20{padding-top:20px!important}.pl0{padding-left:0!important}.pl5{padding-left:5px!important}.pl15{padding-left:15px!important}.pl10{padding-left:10px!important}.pl20{padding-left:20px!important}.pl30{padding-left:30px!important}.pl40{padding-left:40px!important}.pr0{padding-right:0!important}.pr5{padding-right:5px!important}.pr15{padding-right:15px!important}.pr40{padding-right:40px!important}.pb0{padding-bottom:0!important}.pb10{padding-bottom:10px!important}.pb15{padding-bottom:15px!important}.pb30{padding-bottom:30px!important}.mt5{margin-top:5px!important}.mt10{margin-top:10px}.mt15{margin-top:15px!important}.mr5{margin-right:5px}.mr7{margin-right:7px}.mr10{margin-right:10px}.mr15,.product-detail .right .options .buttons :not(:last-child),.product-detail .right .options .quantity>label{margin-right:15px}.mr20{margin-right:20px}.mb5{margin-bottom:5px!important}.mb10{margin-bottom:10px!important}.mb15{margin-bottom:15px}.mb20,.product-detail .right .options>*{margin-bottom:20px}.mb25{margin-bottom:25px}.mb30,.product-detail .right .customer-reviews .row{margin-bottom:30px}.ml0,.product-detail .right>div:not(:first-child){margin-left:0!important}.ml5{margin-left:5px}.ml10{margin-left:10px!important}.ml15{margin-left:15px!important}.ml30{margin-left:30px!important}.w-0{width:0!important}.w-5{width:5px!important}.w-10{width:10px!important}.w-15{width:15px!important}.body-blur{filter:blur(4px);-webkit-filter:blur(4px)}.no-margin{margin:0!important}.flex-wrap{flex-wrap:nowrap}.category-list-container .category,.cursor-pointer,.qty-btn>:not(:nth-child(2)){cursor:pointer}.cursor-not-allowed{cursor:not-allowed!important}.cursor-default{cursor:default}.grey{color:#9e9e9e}.clr-light{color:rgba(0,0,0,.53)}.clr-dark,.footer .footer-content .footer-statics .software-description p{color:hsla(0,0%,100%,.52)}.font-clr{color:rgba(0,0,0,.83)}.display-inbl,.product-detail .right .options .quantity>label{display:inline-block!important}.display-block,.product-detail .right .options label{display:block!important}.align-vertical-middle{vertical-align:middle}.full-width{width:100%}.full-image{height:100%;width:100%}.card-product-image-container .background-image-group,.full-back-size{background-size:100% 100%!important}.max-width-100{max-width:100%!important}.no-border{border:none!important}.back-pos-rt{background-position:100%}.account-content .account-layout .bottom-toolbar .pagination .page-item,.cart-details .continue-shopping-btn,.theme-btn{background-color:#26a37c!important;border:1px solid transparent;color:#fff!important;cursor:pointer;font-weight:600;padding:10px 20px;vertical-align:top;z-index:10}.account-content .account-layout .bottom-toolbar .pagination .page-item:focus,.account-content .account-layout .bottom-toolbar .pagination .page-item:hover,.cart-details .continue-shopping-btn:focus,.cart-details .continue-shopping-btn:hover,.theme-btn:focus,.theme-btn:hover{background-color:#26a37c!important;border:1px solid #247959;box-shadow:none;outline:none}.account-content .account-layout .bottom-toolbar .pagination .cart-details .continue-shopping-btn.page-item,.account-content .account-layout .bottom-toolbar .pagination .light.page-item,.account-content .account-layout .bottom-toolbar .pagination .page-item,.account-content .account-layout .bottom-toolbar .pagination .theme-btn.page-item,.cart-details .account-content .account-layout .bottom-toolbar .pagination .continue-shopping-btn.page-item,.cart-details .light.continue-shopping-btn,.theme-btn.light{background-color:#fff!important;border:1px solid rgba(0,0,0,.12);box-shadow:0 1px 0 0 #cfcfcf;color:#26a37c!important;z-index:0}.account-content .account-layout .bottom-toolbar .pagination .page-item:focus,.account-content .account-layout .bottom-toolbar .pagination .page-item:hover,.cart-details .light.continue-shopping-btn:focus,.cart-details .light.continue-shopping-btn:hover,.theme-btn.light:focus,.theme-btn.light:hover{background-color:#f5f5f5!important;border:1px solid #247959;box-shadow:none;outline:none}.account-content .account-layout .bottom-toolbar .pagination .page-item:hover,.btn-add-to-cart:hover,.cart-details .continue-shopping-btn:hover,.theme-btn:hover{background-color:#247959!important;border-color:#247959!important;text-decoration:none}.account-content .account-layout .bottom-toolbar .pagination .page-item:hover,.btn-add-to-cart:hover.light,.cart-details .continue-shopping-btn:hover.light,.theme-btn:hover.light{border:1px solid rgba(0,0,0,.12)!important}.norm-btn{background-color:#fff!important;border:1px solid #ccc;border-radius:2px;color:#111!important;font-size:14px;padding:9px 20px;vertical-align:top}.sale-btn{background-color:#26a37c;border:none;border-radius:12px;color:#fff;font-size:14px;padding:3px 10px;position:absolute;z-index:10}.bg-image,.small-card-container .product-image{background-position:top;background-repeat:no-repeat;background-size:contain;width:100%}#top #account .welcome-content *,.material-icons,.unselectable *{-webkit-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.card-arrow-container .card-arrow{background-color:#2b2b2b;box-shadow:0 0 0 1px rgba(39,44,48,.05),0 2px 7px 1px rgba(39,44,48,.16);display:block;height:20px;position:absolute;transform:rotate(45deg);-webkit-transform:rotate(45deg);width:20px;z-index:10}.card-arrow-container .card-arrow-tp{left:50%;top:-10px}.card-arrow-container .card-arrow-rt{right:-10px;top:50%}.card-arrow-container .card-arrow-bt{left:50%;top:calc(100% - 10px)}.card-arrow-container .card-arrow-lt{left:-7px;top:50%}.lg-card-container{cursor:pointer}.lg-card-container a{color:rgba(0,0,0,.83);text-decoration:none}.lg-card-container #quick-view-btn-container :hover{color:#fff!important}.lg-card-container .background-image-group{background-size:contain!important}.lg-card-container.grid-card .wishlist-icon i,.lg-card-container.list-card .wishlist-icon i{padding-left:10px}.lg-card-container.grid-card .product-price span:first-child,.lg-card-container.grid-card .product-price span:last-child,.lg-card-container.list-card .product-price span:first-child,.lg-card-container.list-card .product-price span:last-child{font-size:18px;font-weight:600}.lg-card-container.grid-card .card-current-price,.lg-card-container.list-card .card-current-price{font-size:18px}.lg-card-container.grid-card .product-rating .stars,.lg-card-container.list-card .product-rating .stars{display:inline-block}.lg-card-container.grid-card .product-rating span,.lg-card-container.list-card .product-rating span{vertical-align:middle}.lg-card-container.grid-card .product-information>div:not(:last-child),.lg-card-container.list-card .product-information>div:not(:last-child){margin-bottom:5px}.lg-card-container.grid-card img,.lg-card-container.list-card img{width:100%}.lg-card-container.list-card{margin-left:0;padding-left:0}.lg-card-container.list-card .background-image-group{height:100%}.lg-card-container.list-card .product-image{float:left;height:270px;max-width:200px;position:relative;width:30%}.lg-card-container.list-card .product-image .quick-view-btn-container button{left:calc(50% - 40px)}.lg-card-container.list-card .product-information{float:right;padding-left:20px;width:70%}.lg-card-container.list-card .product-rating .stars{display:inline-block}.lg-card-container.list-card .product-rating span{vertical-align:top}.lg-card-container.list-card .product-information{display:table;height:200px}.lg-card-container.list-card .product-information>div{display:table-cell}.lg-card-container.list-card .product-price .sticker{display:block}.lg-card-container.list-card .wishlist-icon{display:inline-table;height:40px;padding-left:0!important;vertical-align:top}.lg-card-container.list-card .wishlist-icon i{display:table-cell;padding-left:0!important;vertical-align:middle}.lg-card-container.list-card .compare-icon{display:inline-table;padding-left:0}.lg-card-container.list-card .add-to-cart-btn{display:inline-block;float:left}.lg-card-container.grid-card{padding:15px}.lg-card-container.grid-card .product-image{background:#f2f2f2;margin-bottom:10px;max-height:350px;max-width:280px}.lg-card-container.grid-card .product-image img{display:block;height:100%}.lg-card-container.list-card:not(:first-child){margin-top:20px}.carousel-products.with-recent-viewed .btn-add-to-cart,.small-padding{padding:3px 4px!important}.medium-padding{padding:3px 10px!important}.general-container{cursor:pointer}.lg-card-container>.product-card{border:none}.general-container:hover,.lg-card-container:hover,.product-card-new:hover{box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.lg-card-container:hover .quick-view-btn-container{display:block}.product-card-new .product-rating,.text-nowrap{color:#555;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.small-card-container{cursor:pointer;margin-bottom:10px;margin-left:0!important;margin-right:0!important}.small-card-container .material-icons{font-size:16px}.small-card-container .product-image-container{display:inline-block;padding:0}.small-card-container .product-image{background-position:50%;height:70px;width:70px}.small-card-container .card-body{display:inline-block;padding:10px 0!important;width:50%}.small-card-container .card-body .product-name{color:#000;font-size:18px;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.small-card-container .regular-price,.small-card-container .sticker{display:none}.small-card-container:hover{box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.text-down-3{position:relative;top:3px}.text-down-4{position:relative;top:4px}.text-down-6{position:relative;top:6px}.text-up-1{position:relative;top:-1px}.text-up-4{position:relative;top:-4px}.text-up-14{position:relative;top:-14px}ul.circle-list{padding-top:10px;text-align:center}ul.circle-list li.circle{border:1px solid #d8d8d8;border-radius:50%;cursor:pointer;display:inline-block;height:10px;width:10px}ul.circle-list li.circle.fill{background:#d8d8d8}ul.circle-list li.circle:not(:last-child){margin-right:6px}.hide{display:none}.category-breadcrumb{font-size:16px}.link-color{color:#4d7ea8}.account-content .account-layout .bottom-toolbar .pagination a.page-item,a.unset{color:unset!important;text-decoration:none!important}a.active-hover:hover{color:#4d7ea8!important;text-decoration:underline!important}a.remove-decoration,a.remove-decoration:active,a.remove-decoration:focus,a.remove-decoration:hover{text-decoration:none!important}.dropdown-icon:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:1rem;vertical-align:middle}.disable-box-shadow,.disable-box-shadow:active,.disable-box-shadow:focus,input:focus,select:focus{box-shadow:none!important;-o-box-shadow:0 5px 15px transparent;box-shadow:0 5px 15px transparent;outline:none!important}.control-error{color:#f05153}.mandatory,.required{width:100%}.mandatory:after,.required:after{color:#f05153;content:"*";font-size:16px;margin-left:-1px}a.default{color:rgba(0,0,0,.83)!important;text-decoration:none!important}.VueCarousel{cursor:pointer;width:100%}.VueCarousel .VueCarousel-inner{padding-top:5px}.VueCarousel .VueCarousel-slide:first-of-type .product-card-new{margin-left:5px}.VueCarousel .VueCarousel-navigation .VueCarousel-navigation-prev{left:10px}.VueCarousel .VueCarousel-navigation .VueCarousel-navigation-next{right:12px}.VueCarousel .VueCarousel-navigation span{font-size:32px}.navigation-hide .VueCarousel-navigation,.pagination-hide .VueCarousel-pagination{display:none}.layered-filter-wrapper,.scrollable{-ms-overflow-style:none;max-height:100%;overflow-y:scroll;scrollbar-width:none}.layered-filter-wrapper::-webkit-scrollbar,.scrollable::-webkit-scrollbar{width:0!important}button[disabled]{cursor:not-allowed;opacity:.5}.max-sm-img-dimension{max-height:110px;max-width:110px}.max-sm-img-dimension img{width:100%}.max-width{margin:0 auto!important;width:1440px!important}.styled-select{appearance:none;-moz-appearance:none;-webkit-appearance:none}.styled-select+.select-icon-container{position:relative}.styled-select+.select-icon-container .select-icon{font-size:16px;left:unset;pointer-events:none;position:absolute;right:10px;top:-24px}.down-arrow-container{color:rgba(0,0,0,.83);display:inline-block;position:relative;vertical-align:top}.down-arrow-container .rango-arrow-down{font-size:16px;left:-5px;position:absolute;top:10px}.select-icon{font-size:16px;left:-7px;position:relative;top:5px}.normal-text{color:#141516}.normal-white-text{color:hsla(0,0%,100%,.83)}.display-table{display:table}.display-table .cell{display:table-cell;vertical-align:middle}.account-content .account-layout .bottom-toolbar .pagination .page-item.next .angle-left-icon,.account-content .account-layout .bottom-toolbar .pagination .page-item.next .angle-right-icon,.account-content .account-layout .bottom-toolbar .pagination .page-item.previous .angle-left-icon,.account-content .account-layout .bottom-toolbar .pagination .page-item.previous .angle-right-icon,.account-content .sidebar .customer-sidebar .navigation li i.icon,.pagination .page-item.next .angle-left-icon,.pagination .page-item.next .angle-right-icon,.pagination .page-item.previous .angle-left-icon,.pagination .page-item.previous .angle-right-icon,.rango-default{speak:none;-webkit-font-smoothing:antialiased;font-family:Webkul Rango!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.max-height-350{max-height:350px}.border-normal{border:1px solid #dcdcdc}.has-error input,.has-error select,.has-error textarea{border-color:#f05153!important}.modal-parent{background:rgba(0,0,0,.7);height:100%;position:fixed;top:0;width:100%;z-index:1001}.compare-icon,.wishlist-icon{cursor:pointer;display:table;height:38px;margin-left:10px}.compare-icon i,.wishlist-icon i{display:table-cell;vertical-align:middle}.qty-btn,.qty-btn>*{display:inline-block;height:36px}.qty-btn>*{border:1px solid #ccc;line-height:3.5rem;padding:0 10px;vertical-align:top}.qty-btn>:not(:first-child){border-left:none;position:relative}.qty-btn>:nth-child(2){left:-4px}.qty-btn>:nth-child(3){left:-7px}.btn-add-to-cart{background-color:#26a37c!important;border-color:#26a37c!important;border-radius:0!important;color:#fff!important;padding:3px 14px!important}.btn-add-to-cart.large{padding:12px 18px}.btn-add-to-cart .rango-cart-1{padding-right:5px}.accordian .accordian-header{border-bottom:1px solid #d3d3d3;color:#3a3a3a;cursor:pointer;display:inline-block;font-size:18px;padding:20px 0;width:100%}.accordian .accordian-header i.rango-arrow{float:right;font-size:24px}.accordian .accordian-header i.rango-arrow:before{content:""}.accordian .accordian-content{display:none;padding-bottom:20px;width:100%}.accordian.active .accordian-header{border-bottom:0}.accordian.active .accordian-header i.rango-arrow:before{content:""}.accordian.active .accordian-content{border-bottom:1px solid #d3d3d3;display:inline-block}#date-of-birth:after{background-image:url(../images/icon-calendar.svg);content:"";display:inline-block;height:24px;margin-left:-34px;pointer-events:none;position:absolute;top:14%;vertical-align:middle;width:24px}.rtl #date-of-birth:after{left:54px}.review-page-container{padding:20px;position:relative}.review-page-container>div:first-child{height:-webkit-max-content;height:-moz-max-content;height:max-content;position:-webkit-sticky;position:sticky;top:40px}.review-page-container .category-breadcrumb{margin-bottom:30px}.review-page-container h2{font-size:24px;font-weight:600}.review-page-container h3{font-size:20px;font-weight:600}.review-page-container h4{font-size:16px;font-weight:600}.review-page-container .customer-reviews>div.row{display:block;padding-bottom:30px}.review-page-container .submit-btn{font-weight:600}.review-page-container .submit-btn button{padding:10px 15px}.customer-rating .rating-container{padding:30px 0}.customer-rating a{color:#4d7ea8}.customer-rating a:hover{text-decoration:none}.customer-rating .col-lg-6:first-child{border-right:1px solid #ccc}.customer-rating .rating-bar{background-color:#f7f7f9;height:5px;padding:0;position:relative;top:12px}.customer-rating .rating-bar>div{background-color:#111;height:100%;width:0}.account-content .account-layout .bottom-toolbar .pagination .customer-rating .page-item,.cart-details .customer-rating .light.continue-shopping-btn,.customer-rating .account-content .account-layout .bottom-toolbar .pagination .page-item,.customer-rating .cart-details .light.continue-shopping-btn,.customer-rating .theme-btn.light{margin-top:10px}.review-form{width:80%}.review-form>div{padding-top:30px}.review-form>div label{display:block;font-size:14px;font-weight:500}.review-form>div input,.review-form>div textarea{border:1px solid #ccc;border-radius:1px;font-size:16px;padding:5px 16px;resize:none;width:100%}.filters-container{margin:20px 0}.filters-container .toolbar-wrapper>div{display:inline-block;margin:0 20px 0 0}.filters-container .toolbar-wrapper>div label{font-weight:500;margin-right:10px}.filters-container .toolbar-wrapper>div select{padding:6px 16px}.filters-container .toolbar-wrapper>div .down-icon-position{background-color:#fff;pointer-events:none}.filters-container .toolbar-wrapper>div:not(:first-child){vertical-align:super}.filters-container .toolbar-wrapper .limiter:after{margin-left:10px}.view-mode{margin-bottom:20px}.view-mode .rango-view-grid-container{color:rgba(0,0,0,.83);cursor:pointer;display:inline-block;height:36px;padding:6px 0 0 5px;width:36px}.view-mode .rango-view-grid-container.active{background-color:#26a37c;color:#fff}.view-mode .rango-view-list-container{color:rgba(0,0,0,.83);cursor:pointer;display:inline-block;height:36px;padding:6px 0 0 5px;width:36px}.view-mode .rango-view-list-container.active{background-color:#26a37c;color:#fff}.modal-container{-webkit-animation:jelly .5s ease-in-out;animation:jelly .5s ease-in-out;-webkit-animation:fade-in-white .3s ease-in-out;animation:fade-in-white .3s ease-in-out;background:#fff;border-radius:5px;box-shadow:0 15px 25px 0 rgba(0,0,0,.03),0 20px 45px 5px rgba(0,0,0,.2);font-size:14px;left:50%;margin-left:-300px;max-height:80%;max-width:80%;overflow-y:auto;position:fixed;top:100px;width:600px;z-index:11}.modal-container .modal-header h3{color:rgba(0,0,0,.83);display:inline-block;font-size:20px;margin:0}.modal-container .modal-header .icon{cursor:pointer}.modal-container .modal-header .icon.remove-icon{background-image:url(../images/Icon-remove.svg);height:24px;width:24px}.modal-container .modal-body{padding:20px}.modal-container .modal-body .control-group .control{width:100%}.product-card-new{border:none!important;margin:0 5px 10px 10px;width:12rem}.product-card-new .category-product-image-container{height:190px;margin:0 auto;position:relative}.product-card-new .category-product-image-container img{max-height:100%;max-width:100%}.product-card-new .product-image-container{max-height:190px;position:relative}.product-card-new .product-image-container img{max-height:190px;min-height:190px;width:100%}.product-card-new .card-current-price{font-size:18px}.product-card-new .product-rating .stars{display:inline-block}.product-card-new .product-rating span{font-size:14px;vertical-align:middle}.product-card-new .product-rating .material-icons{font-size:16px}.product-card-new .card-body{cursor:default}.product-card-new .card-body>div:last-child{margin-top:10px}.product-card-new .card-body .product-name,.product-card-new .card-body .product-rating{margin-bottom:2px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:15rem}.product-card-new .card-body .product-price{margin-bottom:15px}.product-card-new .sticker{display:block}.product-card-new .card-body .compare-icon,.product-card-new .card-body .wishlist-icon{display:none;left:0;margin-left:5px;margin-right:5px;position:absolute;top:10px}.product-card-new .card-body .compare-icon{left:unset;right:0}.product-card-new .card-body .add-to-cart-btn{position:relative;width:100%}.product-card-new .card-body .add-to-cart-btn .btn-add-to-cart{max-width:140px;max-width:100%!important;width:100%}.carousel-products.with-recent-viewed .product-card-new .card-body .add-to-cart-btn .btn-add-to-cart,.product-card-new .card-body .add-to-cart-btn .btn-add-to-cart.small-padding,.product-card-new .card-body .add-to-cart-btn .carousel-products.with-recent-viewed .btn-add-to-cart{max-width:130px}.quick-view-btn-container{bottom:10px;display:none;left:-20px;position:absolute;width:100%}.quick-view-btn-container span{color:#fff;font-size:16px;left:32%;position:absolute;top:-28px;z-index:1}.quick-view-btn-container button{background-color:#0d2438;border:none;color:#fff;font-size:16px;left:30%;opacity:.8;padding:5px 10px 7px 24px;position:absolute;top:-36px}.product-card-new:hover #quick-view-btn-container{display:block}.product-card-new:hover .category-product-image-container,.product-card-new:hover .product-image-container{overflow:hidden}.product-card-new:hover .category-product-image-container img,.product-card-new:hover .product-image-container img{transform:scale(1.05);transition:all .5s}.product-card-new:hover .compare-icon,.product-card-new:hover .wishlist-icon{display:block}.product-card-new:hover .sticker{display:none}.lg-card-container:hover .product-image{overflow:hidden}.lg-card-container:hover .product-image img{transform:scale(1.05);transition:all .5s}.quantity label{float:left;padding:5px 15px 10px 0}.quantity .input-btn-group button{background:transparent;border:1px solid #dcdcdc;height:38px;padding:7px;text-align:center}.quantity .input-btn-group button.decrease{border-right:0}.quantity .input-btn-group button.increase{border-left:0}.quantity .input-btn-group button:active,.quantity .input-btn-group button:focus,.quantity .input-btn-group button:hover{outline:none}.quantity .input-btn-group button .rango-minus,.quantity .input-btn-group button .rango-plus{font-size:20px;vertical-align:middle}.quantity .input-btn-group input{border:1px solid #dcdcdc;border-left:0;border-right:0;font-size:16px;font-weight:600;height:38px;margin-left:-5px;margin-right:-5px;max-width:50px;text-align:center;vertical-align:top}.quantity.has-error button{border-color:#fc6868;color:#fc6868}.quantity .control-error{display:block}.form-container .container{margin:0 auto;padding-top:30px;width:65%}.form-container .container .heading{display:inline-block;margin-bottom:28px;width:100%}.form-container .container .heading h2{display:inline-block;line-height:4rem}.form-container .container .heading .btn-new-customer{float:right;font-size:16px}.form-container .container .body{border:1px solid #ccc;font-size:16px;margin-bottom:60px;padding:35px 55px}.form-container .container .body .form-header{margin-bottom:20px}.form-container .container .body form>div{padding-bottom:20px}.form-container .back-button{float:right}.container-right>.recently-viewed{padding-top:20px}.rango-star{cursor:default}.customer-options{float:right;padding:20px;top:40px;width:200px!important}.customer-options .customer-session{padding:10px 20px 0}.customer-options .customer-session label{color:#9e9e9e;font-size:18px;text-transform:uppercase}.customer-options li{height:unset!important;padding:3px 0}.customer-options li a{display:block;padding:0 20px!important}.customer-options a{font-size:16px}.cart-btn-collection button[type=button].btn-secondary{background-color:#fff;border:none;color:#111;font-size:16px}.cart-btn-collection button[type=button].btn-secondary :hover{background-color:#fff!important;color:#111!important}.cart-btn-collection button[type=button].btn-secondary :active,.cart-btn-collection button[type=button].btn-secondary :focus{box-shadow:none;outline:none}.cart-btn-collection button[type=button].btn-secondary #cart-count{background:#21a179;border-radius:50%;color:#fff;left:-20px;min-width:20px;padding:4px;position:relative;top:-15px}.dropdown-icon-custom:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;color:#000;content:"";display:inline-block;font-size:16px;margin-left:1rem;position:relative;top:-5px;vertical-align:middle}#cart-modal-content{border-top:4px solid #26a37c;position:absolute;right:0;top:40px;width:350px;z-index:100}#cart-modal-content .close{padding:0;position:relative;right:15px;top:12px}#cart-modal-content .mini-cart-container{font-size:14px;height:100%;max-height:200px;overflow-y:scroll;padding:10px 15px 0 20px;width:100%}#cart-modal-content .small-card-container{margin:0;padding:0;width:100%}#cart-modal-content .small-card-container .product-image-container{border:1px solid #ececec;margin:10px 10px 10px 0}#cart-modal-content .small-card-container label{float:left;margin-top:7px}#cart-modal-content .small-card-container input{border:1px solid #ececec;font-weight:500;height:36px;text-align:center;width:40px}#cart-modal-content .small-card-container .card-total-price{float:right}#cart-modal-content .small-card-container .remove-item{background:#111;border-radius:50%;color:#fff;left:-10px;padding:0 4px;position:absolute;top:-10px}#cart-modal-content .small-card-container .remove-item .rango-close{font-size:12px;font-weight:600;padding:0}#cart-modal-content .small-card-container:hover{box-shadow:none}#cart-modal-content .modal-footer{padding-right:15px}.cart-details{padding:40px 0}.cart-details h1{margin-bottom:30px}.cart-details h2{margin-bottom:25px}.cart-details .cart-details-header .cart-header{border-bottom:2px solid #e5e5e5;margin-bottom:20px;max-height:45px;padding-bottom:20px!important}.cart-details .cart-details-header .cart-header>h3{font-size:16px;font-weight:600}.cart-details .cart-content{padding:0}.cart-details .cart-content .product-quantity .quantity{display:inline-block;float:right;width:unset}.cart-details .cart-content .product-quantity .quantity label{display:none!important}.cart-details .cart-content .destop-cart-view{display:block}.cart-details .cart-content .mobile-view{display:none}.cart-details .cart-content .cart-item-list>.row{margin-bottom:40px}.cart-details .cart-content .cart-item-list>.row:last-child{border-bottom:2px solid #e5e5e5;margin-bottom:20px;padding-bottom:20px}.cart-details .cart-content .cart-item-list .product-image-container{max-width:110px;padding:0}.cart-details .cart-content .cart-item-list .wishlist-icon{display:inline;margin:0}.cart-details .cart-content .product-details-content{padding-left:20px}.cart-details .cart-content .product-details-content .row{font-size:16px}.cart-details .cart-content .product-details-content .row .card-current-price{font-size:18px}.cart-details .cart-content .product-details-content .row>a{line-height:20px}.cart-details .cart-content .product-details-content .item-price{font-size:18px;font-weight:600;margin-top:12px!important}.cart-details .cart-content .product-details-content .item-actions{margin-top:12px!important}.cart-details .cart-content .product-details-content .item-actions .d-inline-block{float:left}.cart-details .cart-content .product-details-content .item-actions .d-inline-block:first-child{margin-right:30px}.cart-details .cart-content .product-details-content .item-actions .d-inline-block .material-icons{float:left;margin-left:-2px;margin-right:5px}.cart-details .cart-content .product-details-content .item-actions .d-inline-block .rango-delete{margin-left:-2px}.cart-details .cart-content .product-quantity .quantity{position:relative;top:-8px}.cart-details .cart-content .misc{display:flex;justify-content:space-between}.cart-details .continue-shopping-btn{margin-left:15px;margin-top:20px;max-width:156px}.cart-details .coupon-container{margin-top:20px}.cart-details .coupon-container .control-error{padding:10px 0}@media only screen and (max-width:375px){.cart-details .cart-content .misc{flex-direction:column}.cart-details .cart-content .misc button{margin-top:10px;width:100%}}.account-content{min-height:100vh}.account-content ol.breadcrumb{background-color:transparent;list-style:none;margin:0 0 2;padding:0}.account-content ol.breadcrumb li.breadcrumb-item{display:inline-block}.account-content ol.breadcrumb li.breadcrumb-item+.breadcrumb-item:before{content:"/";display:inline-block;padding-left:5px;padding-right:5px}.account-content .sidebar{border-right:1px solid #e5e5e5;height:100%}.account-content .sidebar .customer-sidebar{position:-webkit-sticky;position:sticky;top:40px}.account-content .sidebar .customer-sidebar .account-details{padding:25px 20px;text-align:center}.account-content .sidebar .customer-sidebar .account-details .customer-name{display:inline-block;font-size:24px;height:60px;margin:0 auto 5px;width:60px}.account-content .sidebar .customer-sidebar .account-details .customer-name-text{color:rgba(0,0,0,.83)}.account-content .sidebar .customer-sidebar .account-details .customer-email{color:#9e9e9e}.account-content .sidebar .customer-sidebar .navigation,.account-content .sidebar .customer-sidebar .navigation li{width:100%}.account-content .sidebar .customer-sidebar .navigation li.active,.account-content .sidebar .customer-sidebar .navigation li:hover{background-color:#ececec;color:#28557b}.account-content .sidebar .customer-sidebar .navigation li i.icon{font-size:18px;padding-right:5px}.account-content .sidebar .customer-sidebar .navigation li i.icon.profile:before{content:""}.account-content .sidebar .customer-sidebar .navigation li i.icon.address:before{content:""}.account-content .sidebar .customer-sidebar .navigation li i.icon.reviews:before{content:""}.account-content .sidebar .customer-sidebar .navigation li i.icon.wishlist:before{content:""}.account-content .sidebar .customer-sidebar .navigation li i.icon.orders:before{content:""}.account-content .sidebar .customer-sidebar .navigation li i.icon.downloadables:before{content:""}.account-content .sidebar .customer-sidebar .navigation li i.icon.compare:before{content:""}.account-content .sidebar .customer-sidebar .navigation li a{display:block;padding:10px 15px}.account-content .sidebar .customer-sidebar .navigation li:last-child{margin-bottom:0}.account-content .account-layout{color:rgba(0,0,0,.83);padding:15px 20px 60px}.account-content .account-layout .account-table-content.profile-page-content .table{width:100%!important}.account-content .account-layout .table table tr{border:1px solid #ccc;height:auto!important}.account-content .account-layout .table table tr td{border-right:1px solid #ccc!important;border-top:none;width:auto}.account-content .account-layout.right{padding-left:250px!important}.account-content .account-layout .account-head{display:flex;justify-content:space-between;margin-bottom:20px}.account-content .account-layout .account-heading{font-size:24px;font-weight:600}.account-content .account-layout .account-table-content .control-group,.account-content .account-layout .account-table-content>.row{margin-bottom:30px}.account-content .account-layout .account-table-content label{font-weight:500}.account-content .account-layout .account-table-content input,.account-content .account-layout .account-table-content select,.account-content .account-layout .account-table-content textarea{background:#fff;border:1px solid #ccc;border-radius:1px;font-size:16px;padding:5px 16px;resize:none;width:100%}.account-content .account-layout .account-table-content input[type=search]{padding-left:35px}.account-content .account-layout .account-table-content input:active,.account-content .account-layout .account-table-content input:focus,.account-content .account-layout .account-table-content select:active,.account-content .account-layout .account-table-content select:focus,.account-content .account-layout .account-table-content textarea:active,.account-content .account-layout .account-table-content textarea:focus{border-color:#26a37c}.account-content .account-layout .account-table-content .address-holder{margin-top:30px}.account-content .account-layout .account-table-content .address-holder>div{margin:5px 0;padding-left:0}.account-content .account-layout .account-table-content .address-holder .card{height:100%}.account-content .account-layout .account-table-content .account-items-list{margin-bottom:40px}.account-content .account-layout .account-table-content.profile-page-content .table{margin-bottom:15px;padding:0;width:800px}.account-content .account-layout .account-table-content.profile-page-content .table>table{border:1px solid rgba(0,0,0,.125);color:#5e5e5e;width:100%}.account-content .account-layout .account-table-content.profile-page-content .table td{border:unset;padding:6px 12px}.account-content .account-layout .account-table-content .image-wrapper{display:inline-block;margin-bottom:20px;margin-top:10px;width:100%}.account-content .account-layout .account-table-content .image-wrapper .image-item{background:#f8f9fa;background-image:url(/vendor/webkul/ui/assets/images/placeholder-icon.svg);background-position:50%;background-repeat:no-repeat;border-radius:3px;display:inline-block;height:200px;margin-bottom:20px;margin-right:20px;position:relative;width:200px}.account-content .account-layout .account-table-content .image-wrapper .image-item .remove-image{background-image:linear-gradient(-180deg,rgba(0,0,0,.08),rgba(0,0,0,.24));border-radius:0 0 4px 4px;bottom:0;color:#fff;cursor:pointer;left:0;margin-bottom:0;margin-right:20px;padding:10px;position:absolute;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.24);width:100%}.account-content .account-layout .account-table-content .image-wrapper .image-item input{display:none}.account-content .account-layout .account-table-content .image-wrapper .image-item img.preview{height:100%;width:100%}.account-content .account-layout .account-items-list.wishlist-container{margin:0 auto;width:100%}.account-content .account-layout .account-items-list.wishlist-container .product-card-new{width:19rem}.account-content .account-layout .reviews-container>.row{margin-bottom:40px}.account-content .account-layout .bottom-toolbar .pagination{margin:0}.account-content .account-layout .bottom-toolbar .pagination a:not([href]).next,.account-content .account-layout .bottom-toolbar .pagination a:not([href]).previous{color:#9e9e9e!important;cursor:not-allowed}.account-content .account-layout .bottom-toolbar .pagination .page-item{border:none!important;box-shadow:unset!important;-webkit-box-shadow:unset!important}.account-content .account-layout .bottom-toolbar .pagination .page-item.active{border:1px solid #26a37c;color:#26a37c!important}.account-content .account-layout .bottom-toolbar .pagination .page-item.next .angle-left-icon,.account-content .account-layout .bottom-toolbar .pagination .page-item.next .angle-right-icon,.account-content .account-layout .bottom-toolbar .pagination .page-item.previous .angle-left-icon,.account-content .account-layout .bottom-toolbar .pagination .page-item.previous .angle-right-icon{background:unset;font-size:24px;margin:0;text-align:center}.account-content .account-layout .bottom-toolbar .pagination .page-item.next .angle-right-icon:before{content:""}.account-content .account-layout .bottom-toolbar .pagination .page-item.previous .angle-left-icon:before{content:""}.account-content .account-layout .sale-container{font-size:16px}.account-content .account-layout .sale-container .tabs ul{font-size:20px;font-weight:600;list-style-type:none}.account-content .account-layout .sale-container .tabs ul li{border-bottom:2px solid transparent;cursor:pointer;display:inline-block;padding:10px 15px}.account-content .account-layout .sale-container .tabs ul li.active{border-bottom:2px solid #26a37c;cursor:default}.account-content .account-layout .sale-container .tabs-content .sale-section{border-bottom:1px solid #ccc;padding:20px 0 10px}.account-content .account-layout .sale-container .tabs-content .sale-section .section-title{color:#9e9e9e;font-size:18px;font-weight:600;padding-bottom:10px}.account-content .account-layout .sale-container .tabs-content .sale-section .section-content label+span{color:#9e9e9e;font-weight:600}.account-content .account-layout .sale-container .tabs-content .sale-section .section-content .totals{display:inline-block;width:100%}.account-content .account-layout .sale-container .tabs-content .sale-section .section-content .totals .sale-summary{float:right}.account-content .account-layout .sale-container .tabs-content .sale-section .section-content .totals .sale-summary tbody tr td:first-child{width:200px}.account-content .account-layout .sale-container .tabs-content .sale-section .section-content .table table{width:100%}.account-content .account-layout .sale-container .order-box-container{padding:10px 0}.account-content .account-layout .sale-container .order-box-container .box{display:inline-block;vertical-align:top;width:calc(25% - 5px)}.account-content .account-layout .sale-container .order-box-container .box .box-title{color:#9e9e9e;font-size:18px;font-weight:600;padding:10px 0}.account-content .select-icon{font-size:22px;left:95%;position:relative;top:-28px}#alert-container{font-size:16px;position:fixed;right:15px;top:50px;z-index:100}#alert-container .alert{max-height:100px!important;max-width:400px!important;min-height:45px!important}#alert-container .alert.alert-dismissible .close{font-size:23px;padding:.3rem 1.25rem}.wishlist-icon{vertical-align:middle}.wishlist-icon i{color:#111}.checkout-process{padding:40px 20px}.checkout-process .accordian-header h3{margin-bottom:0!important}.checkout-process .coupon-container{margin-top:20px}.checkout-process h1{font-weight:600;margin-bottom:30px}.checkout-process .layered-filter-wrapper,.checkout-process .scrollable{padding-top:25px}.checkout-process .order-summary-container{top:75px}.account-content .account-layout .bottom-toolbar .pagination .checkout-process .order-summary-container .page-item,.cart-details .checkout-process .order-summary-container .continue-shopping-btn,.checkout-process .order-summary-container .account-content .account-layout .bottom-toolbar .pagination .page-item,.checkout-process .order-summary-container .cart-details .continue-shopping-btn,.checkout-process .order-summary-container .theme-btn,.checkout-process .order-summary-container.bottom h3{display:none}.checkout-process input[type=radio]{transform:scale(1.3);-ms-transform:scale(1.3);-webkit-transform:scale(1.3)}.checkout-process .styled-select{cursor:pointer}.checkout-process .styled-select+.select-icon{font-size:20px;left:92%;position:absolute;top:55%}.checkout-process .coupon-container input{max-width:200px}.checkout-process .coupon-container button{margin:20px 0 30px}.checkout-process .coupon-container .applied-coupon-details{font-size:16px;margin-bottom:10px}.checkout-process .coupon-container .applied-coupon-details label:first-of-type{color:#26a37c}.checkout-process .coupon-container .rango-close{cursor:pointer;margin-left:5px}.address-container .address-holder{margin-top:15px}.address-container .address-holder>div{margin:5px 0;padding-left:0}.address-container .address-holder .card{height:100%}.address-container .address-holder .card h5{font-size:14px}.address-container .address-holder .card .add-address-button{display:table;height:100%;text-align:center}.address-container .address-holder .card .add-address-button>div{display:table-cell;vertical-align:middle}.address-container .address-holder .card .add-address-button>div span{vertical-align:super}.custom-form .form-field{margin-bottom:30px;padding:0}.custom-form label{font-size:16px;font-weight:500;margin-bottom:5px}.custom-form input[type=password],.custom-form input[type=search],.custom-form input[type=text],.custom-form select{background:#fff;border:1px solid #ccc;border-radius:1px;font-size:16px;height:36px;padding:5px 16px;resize:none;width:100%}.custom-form input[type=checkbox]{position:relative;top:3px}.custom-form input:active,.custom-form input:focus,.custom-form select:active,.custom-form select:focus{border-color:#26a37c}.payment-form .payment-methods>.row,.payment-form .shipping-methods>.row,.payment-form h3,.review-checkout-conainer .payment-methods>.row,.review-checkout-conainer .shipping-methods>.row,.review-checkout-conainer h3,.shipping-form .payment-methods>.row,.shipping-form .shipping-methods>.row,.shipping-form h3{margin-bottom:20px}.payment-form .payment-methods .instructions,.payment-form .shipping-methods .instructions,.review-checkout-conainer .payment-methods .instructions,.review-checkout-conainer .shipping-methods .instructions,.shipping-form .payment-methods .instructions,.shipping-form .shipping-methods .instructions{margin-left:-13px;margin-top:5px}.payment-form .payment-methods .instructions label,.payment-form .shipping-methods .instructions label,.review-checkout-conainer .payment-methods .instructions label,.review-checkout-conainer .shipping-methods .instructions label,.shipping-form .payment-methods .instructions label,.shipping-form .shipping-methods .instructions label{font-size:14px;font-weight:600}.payment-form .payment-methods .instructions p,.payment-form .shipping-methods .instructions p,.review-checkout-conainer .payment-methods .instructions p,.review-checkout-conainer .shipping-methods .instructions p,.shipping-form .payment-methods .instructions p,.shipping-form .shipping-methods .instructions p{color:#777;font-size:14px;font-style:italic;margin:0}.payment-form .address-summary li,.review-checkout-conainer .address-summary li,.shipping-form .address-summary li{display:inline-block}.payment-form .cart-item-list,.review-checkout-conainer .cart-item-list,.shipping-form .cart-item-list{border-bottom:1px solid #e5e5e5;padding:20px 0}.payment-form .cart-item-list h4,.review-checkout-conainer .cart-item-list h4,.shipping-form .cart-item-list h4{border-bottom:1px solid #e5e5e5;margin-bottom:20px!important;padding-bottom:20px}.payment-form .cart-item-list>.row:first-child,.review-checkout-conainer .cart-item-list>.row:first-child,.shipping-form .cart-item-list>.row:first-child{margin-top:50px}.payment-form .cart-item-list>.row,.review-checkout-conainer .cart-item-list>.row,.shipping-form .cart-item-list>.row{margin-bottom:20px}.payment-form .cart-details,.review-checkout-conainer .cart-details,.shipping-form .cart-details{padding:40px 0}.order-summary-container{height:-webkit-max-content;height:-moz-max-content;height:max-content;max-width:500px!important;padding-top:25px;position:-webkit-sticky!important;position:sticky!important;top:50px}.order-summary-container>div{width:100%}.order-summary-container .order-summary{border:1px solid #e5e5e5;padding:25px 30px}.order-summary-container .order-summary>h3{margin-bottom:20px}.order-summary-container .order-summary>.row:not(:last-child){margin-bottom:10px}.order-summary-container .order-summary #grand-total-detail{border-top:1px solid #e5e5e5;margin-bottom:25px;margin-top:15px;padding-top:15px}.order-success-content{font-size:16px;padding:40px 20px}.search-result-status{align-items:center;display:flex;flex-direction:column;justify-content:center;width:100%}#address-section .form-header h3{margin-bottom:20px}.attached-products-wrapper{margin-top:20px}#related-products-carousel .product-card-new:first-child{margin-left:0!important}.price-label{margin-right:6px}.product-price{display:inline-block}.product-price .price-label{margin-right:6px}.product-price .regular-price{display:inline-block;font-size:14px;font-weight:500;text-decoration:line-through}.product-price .special-price{display:inline-block;float:left;margin-right:10px}.product-price .price-from .bundle-regular-price{font-size:12px!important;font-weight:500;margin-right:10px;text-decoration:line-through}.product-price .price-from .bundle-special-price{font-size:15px!important;font-weight:600}.product-price .price-from .bundle-to{display:block;font-size:15px!important;font-weight:500;margin-bottom:1px;margin-top:1px}.product-price span.price-label{font-size:14px!important;font-weight:500!important}.product-price span.final-price{font-size:18px;font-weight:600}.sticker{border:none;border-radius:12px;color:#fff;display:none;font-size:14px;font-weight:600;left:8px;padding:2px 10px;position:absolute;top:8px}.sticker.sale{background-color:#f05153;padding:2px 14px}.sticker.new{background-color:#26a37c;display:block}#app{min-height:65vh;position:relative}.main-container-wrapper .sticky-header{background:#fff;height:56px;position:-webkit-sticky;position:sticky;top:0;z-index:100}.main-container-wrapper .sticky-header.header-shadow{box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.search-container{padding:30px 20px}.search-container .lg-card-container.list-card{margin:0 15px}.search-container :first-child{margin-top:0}.method-sticker{background-color:#141516;border-radius:1px;color:#cfcfd0;display:inline-block;font-size:13px;margin-bottom:3px;margin-right:3px;padding:4px 8px;text-align:center}.sidebar{width:230px;z-index:1000000}.sidebar .category-content .category-title{font-weight:600;position:relative;top:-1px}.sidebar .category-content .rango-arrow-right{position:relative;top:4px}.sidebar .category-content .category-icon{display:inline-block;height:20px;padding-right:5px;width:25px}.sidebar .category-content .category-icon img{height:100%;vertical-align:text-top;width:100%}.sidebar li:hover>a>span{color:#28557b}.sidebar .sub-categories{display:none}.sidebar .sub-categories .category{padding:5px 0 4px 15px}.sidebar .sub-categories .category+.nested{color:rgba(0,0,0,.83)}.sidebar .sub-categories .category+.nested li a{padding-top:0}.sidebar .sub-categories .category+.nested li a .category-title{font-weight:500;padding-left:28px}.sidebar .sub-categories .category .category-title{vertical-align:top}.category-list-container{background:#fff;box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);padding:0!important;position:absolute!important;z-index:10}.category-list-container .category{display:inline-block;line-height:2.5rem;width:100%}.category-list-container .category span{position:relative;top:-4px}.category-list-container li a{padding:7px 0 5px 15px}.category-list-container li a:hover{background:#ececec}.category-list-container .sub-categories{background:#fff;border-left:1px solid #ccc;box-shadow:0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);height:100%;left:100%;min-height:330px;overflow-y:scroll;padding-top:10px;position:absolute;top:-1px;z-index:100}.category-list-container .sub-categories li:last-of-type{margin-bottom:10px}#sidebar-level-0{border-top:1px solid #ccc;display:none;z-index:100000}.grouped-product-container .grouped-product-list ul li{display:inline-block;font-size:18px;margin-bottom:10px;width:100%}.grouped-product-container .grouped-product-list ul li:last-child{margin-bottom:0}.grouped-product-container .grouped-product-list ul li:first-child span{font-weight:600}.grouped-product-container .grouped-product-list ul li:first-child span:last-child{float:right;text-align:left;width:50px}.grouped-product-container .grouped-product-list ul li .name{display:inline-block;font-size:16px;vertical-align:middle}.grouped-product-container .grouped-product-list ul li .qty{float:right}.grouped-product-container .grouped-product-list ul li .qty .control-group{border-top:0;height:45px;margin-bottom:0;max-width:none;padding-top:0;text-align:center;width:auto}.grouped-product-container .grouped-product-list ul li .qty .control-group label{display:none}.grouped-product-container .grouped-product-list ul li .qty .control-group .control{line-height:38px;text-align:center;width:60px}.grouped-product-container .grouped-product-list ul li .qty .control-group>*{height:100%}.bundle-options-wrapper .bundle-option-list{border-top:1px solid hsla(0,0%,64%,.2);padding:15px 0}.bundle-options-wrapper .bundle-option-list h3{color:#242424;font-size:16px;margin:0}.bundle-options-wrapper .bundle-option-list .bundle-option-item{border-bottom:1px solid hsla(0,0%,64%,.2);display:inline-block;padding:15px 0;width:100%}.bundle-options-wrapper .bundle-option-list .bundle-option-item:last-child{border-bottom:0;padding-bottom:0}.bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group{color:#5e5e5e;margin-bottom:0}.bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group label{color:#242424}.bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group .control{color:#5e5e5e}.bundle-options-wrapper .bundle-option-list .bundle-option-item .quantity{border-top:0}.bundle-options-wrapper .bundle-option-list .bundle-option-item .control-error{float:left;width:100%}.bundle-options-wrapper .bundle-option-list .bundle-option-item.has-error button{border-color:#fc6868;color:#fc6868}.bundle-options-wrapper .bundle-summary{border-top:1px solid hsla(0,0%,64%,.2);padding:15px 0}.bundle-options-wrapper .bundle-summary h3{color:#242424;font-size:16px;margin:0}.bundle-options-wrapper .bundle-summary .quantity{border-top:0}.bundle-options-wrapper .bundle-summary .bundle-price{color:#ff6472;font-size:24px;font-weight:600;margin-top:10px}.bundle-options-wrapper .bundle-summary ul.bundle-items li{margin-bottom:20px}.bundle-options-wrapper .bundle-summary ul.bundle-items li:last-child{margin-bottom:0}.bundle-options-wrapper .bundle-summary ul.bundle-items li .selected-products{color:#5e5e5e}.category-container .grid-card,.search-container .grid-card{width:15rem}.downloadable-container .sample-list{padding:5px 0}.downloadable-container .sample-list h3{font-size:16px;margin-top:0}.downloadable-container .sample-list ul li{margin-bottom:5px}.downloadable-container .sample-list ul li:last-child{margin-bottom:0}.downloadable-container .link-list{padding:5px 0}.downloadable-container .link-list h3{font-size:16px;margin-top:0}.downloadable-container .link-list h3.required:after{color:#f05153;content:"*";font-size:16px;margin-left:-1px}.downloadable-container .link-list ul li{margin-bottom:15px}.downloadable-container .link-list ul li:last-child{margin-bottom:0}.downloadable-container .link-list ul li .checkbox input[type=checkbox]{height:15px!important;margin-left:-10px;width:15px!important}.downloadable-container .link-list ul li a{float:right;margin-top:3px}.category-container{margin-left:15px;min-height:670px;padding:40px 15px!important}.category-container .hero-image{display:inline-block}.category-container .hero-image img{height:100%;margin-bottom:30px;max-height:500px;width:100%}.vue-slider .vue-slider-rail{background-color:#ccc}.vue-slider .vue-slider-dot-handle{background-color:#fff;border-radius:50%;box-shadow:.5px .5px 2px 1px rgba(0,0,0,.32);height:100%;width:100%}.vue-slider .vue-slider-dot-tooltip-inner,.vue-slider .vue-slider-dot-tooltip-text{background-color:#26a37c!important;border-color:#26a37c!important}.vue-slider .vue-slider-dot-tooltip-text{border-radius:5px;color:#fff;display:block;font-size:14px;min-width:20px;padding:2px 5px;text-align:center;white-space:nowrap}.vue-slider .vue-slider-dot-tooltip-text:before{border:6px solid transparent\0;border-top-color:inherit;bottom:-10px;content:"";height:0;left:50%;position:absolute;transform:translate(-50%);width:0}.vue-slider .vue-slider-process{background-color:#26a37c!important}.full-content-wrapper>.container-fluid{margin:10px 0;padding:0}.full-content-wrapper>.container-fluid>.row{padding:0 15px}.full-content-wrapper div>.container-fluid,.full-content-wrapper p>.container-fluid{margin:10px 0;padding:0}.full-content-wrapper div>.container-fluid>.row,.full-content-wrapper p>.container-fluid>.row{padding:0 15px}.cd-slider .VueCarousel-dot.VueCarousel-dot--active{background-color:#000!important}.cd-slider .VueCarousel-dot{background-color:rgba(26,24,24,.59)!important}.slides-container{position:relative}.slides-container .VueCarousel-pagination{display:none}.slides-container .VueCarousel-pagination button:active,.slides-container .VueCarousel-pagination button:focus{box-shadow:none;outline:none}.slides-container .VueCarousel-pagination .VueCarousel-dot{padding:5px!important}.slides-container .VueCarousel-dot--active{background-color:#26a37c!important}.slides-container .VueCarousel .VueCarousel-inner{padding-top:0}.slides-container .VueCarousel .VueCarousel-slide{position:relative}.slides-container .VueCarousel .VueCarousel-slide .show-content{display:table;height:100%;left:0;position:absolute;text-align:center;top:0;width:100%}.slides-container .VueCarousel .VueCarousel-slide .show-content p{display:table-cell;vertical-align:middle}.filter-attributes-item{border-bottom:1px solid #ccc;margin-bottom:10px}.filter-attributes-item.active .filter-attributes-content{display:block}.filter-attributes-item .filter-input{margin:10px 15px 13px -4px}.filter-attributes-item .filter-input input[type=text]{background-color:#fff;border:1px solid #26a37c;text-align:center;width:30%}.filter-attributes-item input[type=checkbox]+span{margin-left:10px!important}.filter-attributes-content{display:none;margin-left:7px}.layered-filter-wrapper{margin-bottom:42px;max-height:670px;overflow-x:hidden;padding:42px 10px 0}.layered-filter-wrapper .recently-viewed{margin-top:20px}.layered-filter-wrapper .recently-viewed h2{font-size:18px}.selective-div{-webkit-appearance:none;width:150px}.select-icon-margin{margin-left:96px;margin-top:10px}.down-icon-position{position:absolute}.select-icon-show-margin{margin-left:35px;margin-top:10px}.down-arrow-margin{margin-left:75px;margin-top:8px}.vc-header{box-shadow:0 1px 3px rgba(0,0,0,.16),0 1px 3px rgba(0,0,0,.23);margin:0!important;padding:0!important;z-index:10}.new-products-recent{position:relative;top:-44px}.recently-viewed-products-wrapper{padding:2px}.recently-viewed-products-wrapper .price-from .bundle-regular-price{display:none}.recently-viewed-products-wrapper .price-from .bundle-special-price{font-size:15px!important;font-weight:600}.recently-viewed-products-wrapper .price-from .bundle-to{display:unset;font-size:15px!important;font-weight:500;margin:0 2px}.pagination{width:100%}.pagination .page-item{padding:0 10px}.pagination .page-item.active{border-bottom:2px solid #26a37c;color:#26a37c!important;font-weight:600}.pagination .page-item.next .angle-left-icon,.pagination .page-item.next .angle-right-icon,.pagination .page-item.previous .angle-left-icon,.pagination .page-item.previous .angle-right-icon{background:unset;font-size:24px;margin:0;text-align:center}.pagination .page-item.next .angle-right-icon:before{content:""}.pagination .page-item.previous .angle-left-icon:before{content:""}.pagination a{color:unset!important;text-decoration:none!important}.pagination a i{font-size:18px;position:relative;top:2px}.pagination .angle-left-icon,.pagination .angle-right-icon{speak:none;-webkit-font-smoothing:antialiased;background:unset;font-family:Webkul Rango!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.pagination .angle-right-icon:before{content:""}.pagination .angle-left-icon:before{content:""}.full-content-wrapper .container-fluid .row.carousel-products-header{padding-right:75px!important}.carousel-products+.recently-viewed{position:relative;top:-40px}.carousel-products .VueCarousel-slide{cursor:default}.carousel-products .VueCarousel-navigation{position:absolute;right:12px;top:-49px}.carousel-products .VueCarousel-navigation .VueCarousel-navigation-button{margin:0!important;padding:0!important;position:unset!important;transform:none!important}.carousel-products .VueCarousel-navigation .VueCarousel-navigation-button span{font-size:24px}.vue-slider{max-width:97%}.profile-update-form{width:800px}.compare-products{cursor:pointer;margin-left:0!important;margin-right:10px!important;overflow-x:auto;padding-bottom:20px;width:100%;word-break:break-word}.compare-products .active{cursor:grabbing;cursor:-webkit-grabbing;transform:scale(1)}.compare-products tr{width:100%}.compare-products td{max-width:250px;min-width:250px;padding:15px;vertical-align:top}.compare-products .header{min-width:150px}.compare-products .image-wrapper{width:100%}.compare-products .stars i{font-size:16px}.compare-products .action{position:relative}.compare-products .action .btn-add-to-cart{white-space:pre-wrap}.compare-products .action .close-btn{display:inline-block;position:absolute;right:0;top:6px}.compare-products .action .close-btn:hover{font-weight:600}.compare-products .action .compare-icon{display:none}.compare-products .material-icons.cross{cursor:pointer;position:absolute;right:20px;top:5px}.compare-products .wishlist-icon{display:inline-block;position:absolute;right:60px;top:5px}.compare-container .cart-details{padding:unset}.compare-container .cart-details h2{padding:0}.compare-container .compare-products .col,.compare-container .compare-products .col-2{max-width:25%}.compare-products::-webkit-scrollbar{display:none}.compare-products{-ms-overflow-style:none;scrollbar-width:none}.cp-spinner{box-sizing:border-box;display:inline-block;height:48px;left:calc(50% - 24px);margin-top:calc(40% - 24px);position:absolute;width:48px}.overlay-loader{left:50%;margin-left:-24px;margin-top:-24px;position:fixed;top:50%;z-index:11}@media only screen and (max-width:720px){.product-quantity .input-btn-group{display:flex}.cp-spinner{left:50%;margin-left:-24px;margin-top:-24px;top:50%}}@media only screen and (max-width:425px){.cart-details .cart-content .product-quantity{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}.cart-details .cart-content .product-quantity .quantity{display:flex;width:100%}.cart-details .cart-content .product-price.col-1{flex:0 0 100%;max-width:100%}.cart-details .cart-content .product-price.col-1 .card-current-price.fw6,.cart-details .cart-content .product-price.col-1 .product-detail .right .info .card-current-price.price,.cart-details .cart-content .product-price.col-1 .product-detail .right .info h2.card-current-price,.cart-details .cart-content .product-price.col-1 .product-detail .right h3.card-current-price,.cart-details .cart-content .product-price.col-1 .product-detail .right h4.card-current-price,.product-detail .right .cart-details .cart-content .product-price.col-1 h3.card-current-price,.product-detail .right .cart-details .cart-content .product-price.col-1 h4.card-current-price,.product-detail .right .info .cart-details .cart-content .product-price.col-1 .card-current-price.price,.product-detail .right .info .cart-details .cart-content .product-price.col-1 h2.card-current-price{float:right}}.cp-round:before{border:6px solid gray;border-radius:50%}.cp-round:after,.cp-round:before{box-sizing:border-box;content:" ";display:inline-block;height:48px;left:0;position:absolute;top:0;width:48px}.cp-round:after{-webkit-animation:spin 1s ease-in-out infinite;animation:spin 1s ease-in-out infinite;border:6px solid transparent;border-radius:50%;border-top-color:#26a37c}.image-search-container{background:#fff;cursor:pointer;height:24px!important;position:absolute;right:45px;top:9px;z-index:10}.image-search-result{background-color:rgba(0,65,255,.1);border:1px solid #0041ff;border-radius:2px;display:inline-block;margin-bottom:20px;padding:20px;width:100%}.image-search-result .searched-image{float:left}.image-search-result .searched-image img{box-shadow:1px 1px 3px 0 rgba(0,0,0,.32);height:auto;width:150px}.image-search-result .searched-terms{display:inline-block;margin-left:20px}.image-search-result .searched-terms .term-list a{background:#fff;margin-right:10px;margin-top:10px;padding:5px 8px}.filtered-tags{margin-bottom:20px}@-webkit-keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}body{scroll-behavior:smooth}body .container-margin{margin:auto 20px}.root-category-menu{border-bottom:1px solid #d8e6ed}.angle-right-icon{background-image:url(../images/Icon-Arrow-Right.svg);float:right;height:20px;margin-right:10px;width:22px}.card-product-image-container{height:300px;max-height:300px;min-height:100px}.card-product-image-container img{height:100%;width:100%}.card-product-image-container .background-image-group{background-position:50%;background-repeat:no-repeat;height:100%;width:100%}.hide-text{display:inline-block;overflow:hidden!important;text-overflow:ellipsis;white-space:nowrap;width:100%}.card-bottom-container{margin-top:12px}.card-actual-price{text-decoration:line-through}.card-discount{color:rgba(38,163,124,.83)}.no-border-shadow{border:none!important;box-shadow:none!important;-webkit-box-shadow:none!important}.card-bottom-container .rango-heart{cursor:pointer;float:right;font-size:20px;margin-top:8px}.disable-active:active,.disable-active:focus,header #search-form>:focus{box-shadow:none;outline:none}.container-margin>.container-fluid{margin-bottom:60px}.v-mr-20{margin-right:2rem}.popular-product-categories .active{border-bottom:2px solid;color:#4d7ea8;display:inline-block;padding:0 10px 5px}.popular-product-categories .switch-buttons{position:relative;top:-3px}.align-vertical-super{vertical-align:super}.align-vertical-top{vertical-align:top}.card-sale-btn{top:5px}.star-rating>*{font-size:14px}.advertisement-four-container .offers-ct-panel>.row{padding:0 10px}.advertisement-four-container .offers-ct-panel a:first-child{padding-bottom:15px!important}.advertisement-four-container .offers-ct-panel .offers-ct-top{height:180px}.advertisement-four-container .offers-ct-panel .offers-ct-bottom{height:220px}.advertisement-four-container>.row:first-child{padding:0 10px!important}.advertisement-four-container .col-4:nth-child(2){padding-left:10px;padding-right:10px}.advertisement-four-container img{height:100%;max-height:425px;width:100%}.advertisement-four-container img:first-of-type,.advertisement-four-container img:last-child{padding:0}.advertisement-two-container img{width:100%}.advertisement-three-container img{height:100%}.advertisement-three-container .bottom-container img,.advertisement-three-container .top-container img{height:225px}.advertisement-three-container .bottom-container{padding-top:15px}.recently-viewed-items{padding:0!important}.product-policy-container .card{background:#fff;border:none;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);padding:20px 10px}.product-policy-container .card .policy{display:table;padding:0 10px}.product-policy-container .card .policy .left{display:inline-block;margin-right:10px}.product-policy-container .card .policy .right{display:table-cell;vertical-align:middle}.product-policy-container .product-policy-wrapper:first-of-type{padding-left:0}.product-policy-container .product-policy-wrapper:last-of-type{padding-right:0}.category-with-custom-options img{height:100%;max-height:100%;max-width:100%;width:100%}.category-with-custom-options .row:first-child{margin-bottom:0}.category-with-custom-options .row:first-child .category-image{height:350px}.category-with-custom-options .row:first-child>div{background-repeat:no-repeat;padding:0}.category-with-custom-options .row:first-child>div:first-child(),.category-with-custom-options .row:first-child>div:nth-child(3){max-height:345px}.category-with-custom-options .row:nth-child(2) .category-image{height:350px}.category-with-custom-options .row:nth-child(2)>div{background-repeat:no-repeat;padding:0}.category-with-custom-options .row:nth-child(2)>div:nth-child(2),.category-with-custom-options .row:nth-child(2)>div:nth-child(4){max-height:345px}.category-with-custom-options .categories-collection{background:#2b2b2b;display:table;height:100%;max-height:345px;min-height:310px;padding-left:36px;width:100%}.category-with-custom-options .categories-collection h2{color:#fff}.category-with-custom-options .categories-collection li{color:hsla(0,0%,100%,.83)}.category-with-custom-options .categories-collection .category-text-content{display:table-cell;height:100%;vertical-align:middle}.hot-categories-container .hot-category-wrapper{padding:0 10px 0 0}.hot-categories-container .hot-category-wrapper .card{border:none;height:100%;padding:20px}.hot-categories-container .hot-category-wrapper .velocity-divide-page .left{height:30px;margin-left:10px;width:30px}.hot-categories-container .hot-category-wrapper .velocity-divide-page .left img{height:100%;width:100%}.hot-categories-container .hot-category-wrapper .velocity-divide-page .right{padding-left:50px!important}.hot-categories-container .hot-category-wrapper:nth-last-child(2){padding:0}.hot-categories-container .hot-category-wrapper:last-child{padding:0 0 0 10px}.hot-categories-container ul,.popular-categories-container ul{line-height:2.5rem}.hot-categories-container li,.popular-categories-container li{font-size:16px}.popular-categories-container .popular-category-wrapper{padding:0 8px}.popular-categories-container .popular-category-wrapper .card{border:none;height:100%}.popular-categories-container .popular-category-wrapper .card .category-image{height:180px}.popular-categories-container .popular-category-wrapper .card .category-image img{height:100%;width:100%}.popular-categories-container .popular-category-wrapper .card-image{background-image:url(../images/man.png);background-size:100% 100%;height:180px}.popular-categories-container .popular-category-wrapper .card-description{padding:10px 20px}.popular-categories-container .popular-category-wrapper:first-child{padding-left:0}.popular-categories-container .popular-category-wrapper:nth-last-child(2){padding-right:0}.popular-categories-container .popular-category-wrapper:last-child{padding-left:16px;padding-right:0}.reviews-container .review-wrapper:first-of-type{padding:0 8px 0 0}.reviews-container .review-wrapper{padding:0 8px}.reviews-container .review-wrapper:nth-last-of-type(2){padding:0 0 0 8px}.reviews-container .review-wrapper:last-of-type{padding:0 0 0 16px}.reviews-container .card{border:none;box-shadow:0 4px 17px 0 rgba(0,0,0,.11);height:100%;padding:20px 15px}.reviews-container .card .customer-info>div{display:inline-block;padding:0}.reviews-container .card .customer-info>div:first-child(){margin-right:10px;width:60px}.reviews-container .card .customer-info>div:last-child(){width:calc(100% - 75px)}.reviews-container .card .review-info{box-shadow:0 4px 17px 0 rgba(0,0,0,.11);height:100%;padding:20px 15px}.reviews-container .card .review-info>div:not(:last-child){margin-bottom:10px}.reviews-container .card .review-info .star-ratings{margin-bottom:5px!important}.main-content-wrapper,.reviews-container .product-info{display:inline-block}.main-content-wrapper>.row.disabled{cursor:not-allowed}.main-content-wrapper .main-category{border-top:1px solid #ccc;padding:10px 15px}.main-content-wrapper .main-category .pl5{vertical-align:top}.main-content-wrapper .content-list{display:inline-block;height:42px;list-style:none;margin:0;position:relative;text-align:left;vertical-align:top;width:100%}.main-content-wrapper .content-list ul{background-color:#4d7ea8;display:inline-flex;height:100%;overflow-x:auto;white-space:nowrap;width:100%}.main-content-wrapper .content-list ul li a{color:#fff;cursor:pointer;display:block;font-size:16px;font-weight:600;letter-spacing:0;padding:11px 15px;position:relative;text-decoration:none}.main-content-wrapper .content-list ul li:hover{background-color:#42719a}.velocity-divide-page{position:relative}.velocity-divide-page .left{position:absolute;width:230px;z-index:1}.velocity-divide-page .right{padding-left:230px!important;width:100%}.container-right{display:inline-block;width:100%}.container-right>:first-child(){width:100%}.home-base{margin-bottom:60px}.broken-image{background-image:url(../images/static/broken-clock.png);height:160px;width:320px}.velocity-icon{background-image:url(../images/static/v-icon.png);height:150px;width:150px}.error-page{padding-top:30vh}.custom-circle{background:#fff;border:2px solid #21a179;border-radius:50%;color:#21a179;display:inline-block;font-size:20px;font:18px josefin sans,arial;height:54px;padding:14px;text-align:center;vertical-align:middle;width:56px}body:after{background:rgba(71,55,78,.8);height:100%;left:0;opacity:0;position:absolute;top:0;transition:opacity .3s 0s,visibility 0s .3s;width:100%}.cd-quick-view{backface-visibility:hidden;-webkit-backface-visibility:hidden;background-color:#fff;box-shadow:0 0 30px rgba(0,0,0,.2);display:none;left:calc(50% - 350px);margin-bottom:50px;padding:40px;position:absolute;top:30px;transform:translateZ(0);width:700px;will-change:left,top,width;z-index:101}.cd-quick-view .cd-slider li.selected img{display:inline-block!important;height:100%;width:100%}.cd-quick-view .cd-slider img{display:none}.cd-quick-view .close-btn{font-weight:600;position:absolute;right:20px;top:15px}.cd-quick-view .action-buttons{margin-left:118px;padding-top:10px}.cd-quick-view .action-buttons>span{font-size:24px;margin-left:24px}.cd-quick-view .product-actions{display:inline-block}.cd-quick-view .product-actions .compare-icon,.cd-quick-view .product-actions .wishlist-icon{cursor:pointer;display:inline-table;height:38px;margin-left:10px}.cd-quick-view .product-actions .compare-icon i,.cd-quick-view .product-actions .wishlist-icon i{display:table-cell;vertical-align:middle}.cd-quick-view .product-actions .wishlist-icon{float:right}.cd-quick-view .product-actions .add-to-cart-btn{float:left}.cd-quick-view .quick-view-name{font-size:24px;line-height:25px}.cd-quick-view .product-price{margin-top:10px}.cd-quick-view .product-rating{display:table;margin:10px 0}.cd-quick-view .product-rating a,.cd-quick-view .product-rating span{display:table-cell;vertical-align:top}.cd-quick-view .product-gallery{position:-webkit-sticky;position:sticky;top:10px}.cd-quick-view .product-gallery .VueCarousel-pagination button{background-color:#fff!important;border:1px solid #dcdcdc!important;margin:3px!important;padding:0!important}.cd-quick-view .product-gallery .VueCarousel-pagination button.VueCarousel-dot--active{background-color:#dcdcdc!important}.cd-quick-view .product-gallery .VueCarousel-pagination button.VueCarousel-dot--active:focus{outline:none}.cd-quick-view .description-text{overflow:auto;word-break:break-word}.container{max-width:1300px!important}.slider-container{margin-bottom:20px;min-height:400px}.category-page-wrapper,.remove-padding-margin{margin:0!important;padding:0!important;width:100%!important}.demo{border:1px solid red}.quick-addtocart-btn{margin-left:-82px;margin-top:306px}.model-display-block{display:block}.footer{background-color:#fff;display:inline-block;width:100%}.footer .footer-content .newsletter-subscription{background-color:#4d7ea8;color:#fff;padding:10px 130px}.footer .footer-content .newsletter-subscription .newsletter-wrapper input.subscribe-field{border:none;color:rgba(0,0,0,.83);font-size:18px;height:38px;max-width:250px;padding:10px 20px;width:300px}.footer .footer-content .newsletter-subscription .newsletter-wrapper button.subscribe-btn{font-size:18px;height:38px;left:-2px;line-height:10px;position:relative}.footer .footer-content .newsletter-subscription .newsletter-wrapper .social-icons{color:#fff;height:100%;padding:20px 0}.footer .footer-content .newsletter-subscription .newsletter-wrapper .social-icons i{cursor:pointer;margin:0}.footer .footer-content .newsletter-subscription .newsletter-wrapper .social-icons .within-circle{background:#4d7ea8;border:1px solid hsla(0,0%,100%,.52);margin-right:2px}.footer .footer-content .newsletter-subscription .newsletter-wrapper .social-icons .within-circle:hover{opacity:.5}.footer .footer-content .newsletter-subscription .newsletter-wrapper .social-icons img{background:#4d7ea8;border:1px solid hsla(0,0%,100%,.52);padding-left:15px;padding-right:15px}.footer .footer-content .newsletter-subscription .newsletter-wrapper .subscribe-newsletter{padding:25px 0 30px;text-align:right}.footer .footer-content>.row{background:#30383f;padding:60px 130px}.footer .footer-content>.row .logo{max-height:40px;width:auto}.footer .footer-content>.row .footer-ct-content>div{font-size:14px;line-height:2.5rem;margin:0;padding:0}.footer .footer-content>.row .footer-ct-content>div ul{margin-bottom:0}.footer .footer-content>.row .footer-ct-content>div ul li{margin-bottom:5px}.footer .footer-content>.row .footer-ct-content>div ul li a{color:hsla(0,0%,100%,.83)}.footer .footer-content>.row .footer-rt-content{padding-right:0}.footer .footer-content>.row .footer-rt-content .row>div{display:block;width:100%}.footer .footer-content>.row .footer-rt-content .row .bg-image,.footer .footer-content>.row .footer-rt-content .row .small-card-container .product-image,.small-card-container .footer .footer-content>.row .footer-rt-content .row .product-image{background-position:0;display:inline-block;height:30px;width:42px}.footer .footer-content>.row .footer-rt-content .row .bg-image:not(:last-child),.footer .footer-content>.row .footer-rt-content .row .small-card-container .product-image:not(:last-child),.small-card-container .footer .footer-content>.row .footer-rt-content .row .product-image:not(:last-child){margin-right:3px}.footer .footer-content>.row .footer-rt-content .row .cash{background-image:url(../images/static/cash.png)}.footer .footer-content>.row .footer-rt-content .row .cheque{background-image:url(../images/static/cheque.png);width:57px!important}.footer .footer-content>.row .footer-rt-content .row .visa{background-image:url(../images/static/visa.png)}.footer .footer-content>.row .footer-rt-content .row .master-card{background-image:url(../images/static/master-card.png)}.footer .footer-content>.row .footer-rt-content .row .paypal{background-image:url(../images/static/paypal.png)}.footer .footer-content>.row .footer-rt-content .row .discover{background-image:url(../images/static/discover.png)}.footer .footer-content>.row .footer-rt-content .row:not(:last-child){padding-bottom:20px}.footer .footer-content>.row .footer-rt-content h3{color:hsla(0,0%,100%,.52);font-size:14px}.footer .footer-content .footer-statics .software-description{padding-left:0}.footer .footer-content .footer-statics .software-description p{font-size:14px}.footer .top-brands{padding:30px 130px}.footer .top-brands .top-brands-body ul{display:inline-block;width:85%}.footer .top-brands .top-brands-body ul li{display:inline-block;font-size:16px;margin-left:0;padding:15px 0 0}.footer .footer-copy-right{background:#30383f;color:hsla(0,0%,100%,.83);font-size:16px;height:60px;line-height:6rem;text-align:center;width:100%}.footer .footer-copy-right p{padding:0 20px}.footer .footer-copy-right a{color:unset}.footer .footer-copy-right a:hover{color:#4d7ea8}.product-detail{padding-left:0!important;padding-right:0!important;padding-top:20px}.product-detail,.product-detail .right>div.attributes .attribute{margin-bottom:20px}.product-detail .right>div.attributes .attribute:last-child{margin-bottom:30px}.product-detail .right .category-breadcrumb{margin-left:0;padding:0 15px}.product-detail .right .reviews{vertical-align:top}.product-detail .right .reviews .stars{margin-bottom:-6px;vertical-align:middle}.product-detail .right .reviews>div{display:inline-block;vertical-align:middle}.product-detail .right .info{border-bottom:1px solid #d3d3d3;margin-left:0}.product-detail .right .info div,.product-detail .right .info>h2{padding-left:0}.product-detail .right .info>*{margin-bottom:14px}.product-detail .right .info .availability label{background:#f05153;border:none;color:#fff;cursor:default;font-weight:600;margin:0;padding:1px 8px 3px;width:-webkit-max-content;width:-moz-max-content;width:max-content}.product-detail .right .info .availability label.active{background:#4d7ea8}.product-detail .right .options .box{background-color:#ccc;display:inline-block;height:32px;width:32px}.product-detail .right h3{margin-bottom:0}.product-detail .right .row.reviews .reviews-text{line-height:3rem}.product-detail .right .add-to-cart-btn{padding:0}.product-detail .right .add-to-cart-btn button{padding:9px 15px!important;text-transform:uppercase}.product-detail .right .add-to-cart-btn button span{font-size:16px;top:0}.product-detail .right .product-price{line-height:38px}.product-detail .right .product-price .price-from .bundle-regular-price{font-size:20px!important;font-weight:500;margin-right:10px;text-decoration:line-through}.product-detail .right .product-price .price-from .bundle-special-price{font-size:20px!important;font-weight:600}.product-detail .right .product-price .price-from .bundle-to{display:block;font-size:20px!important;font-weight:500;margin-bottom:1px;margin-top:1px}.product-detail .right .quantity{width:unset}.product-detail .right .form-group label{display:block}.product-detail .right .form-group .radio{margin-right:10px}.product-detail .right .form-group .radio input[type=radio]{margin-left:0;position:static}.product-detail .right .form-group .radio .radio-view{display:none}.product-detail .thumb-list{left:15px;margin-top:10px;overflow:hidden;padding:0;position:relative;z-index:99}.product-detail .thumb-list .arrow{align-items:center;background:#dcdcdc;cursor:pointer;display:flex;height:100%;left:0;line-height:13em;margin-top:5px;opacity:.5;position:absolute;z-index:1001}.product-detail .thumb-list .arrow.right{left:unset;line-height:13rem;right:0}.product-detail .thumb-list .thumb-frame{border:1px solid transparent;padding:1px}.product-detail .thumb-list .thumb-frame.active{border:1px solid #26a37c}.product-detail .thumb-list .small-card-container .thumb-frame>.product-image,.product-detail .thumb-list .thumb-frame>.bg-image,.small-card-container .product-detail .thumb-list .thumb-frame>.product-image{background-position-y:center;background-size:100% 100%;height:110px;width:100%}.product-detail .product-actions>div{display:inline-block}.product-detail .product-actions>div .add-to-cart-btn{float:left}.product-detail .product-actions>div .compare-icon,.product-detail .product-actions>div .wishlist-icon{float:right;height:46px;margin-left:0;padding-left:10px}.product-detail .product-actions>div .compare-icon i,.product-detail .product-actions>div .wishlist-icon i{display:table-cell;vertical-align:middle}.product-detail .product-actions>div .compare-icon{display:inline-table}.product-detail .product-actions>div .wishlist-icon{float:right}.product-detail #product-form,.product-detail .layouter{height:100%}.product-detail #product-form .form-container{height:100%;position:relative}.product-detail #product-form .form-container div.left{padding:0;position:-webkit-sticky;position:sticky;top:60px}.product-detail #product-form .form-container div.left .product-image-group{position:-webkit-sticky;position:sticky;top:70px}.product-detail #product-form .form-container div.left .product-image-group>div{margin:0;padding:0}.product-detail #product-form .form-container .right .swatch-container{display:block;margin-top:10px}.product-detail #product-form .form-container .right .swatch-container .swatch{display:inline-block;height:40px;margin-right:5px;min-width:40px}.product-detail #product-form .form-container .right .swatch-container .swatch span{border:1px solid #c7c7c7;border-radius:3px;cursor:pointer;float:left;height:38px;line-height:36px;min-width:38px;padding:0 10px;text-align:center}.product-detail #product-form .form-container .right .swatch-container .swatch img{background:#f2f2f2;border:1px solid #c7c7c7;border-radius:3px;cursor:pointer;height:38px;width:38px}.product-detail #product-form .form-container .right .swatch-container .swatch input:checked+img,.product-detail #product-form .form-container .right .swatch-container .swatch input:checked+span{border:1px solid #242424}.product-detail #product-form .form-container .right .swatch-container .swatch input{display:none}.product-detail #product-form .form-container .right .swatch-container .no-options{color:#fb3949}.product-detail .description{overflow:auto}.product-detail .description ol,.product-detail .description ul{margin:revert;padding:revert}.product-detail .accordian-content{font-size:16px;font-weight:400}.product-detail .full-description ol,.product-detail .full-description ul{margin:revert;padding:revert}.product-detail .full-specifications{width:100%}.product-detail .full-specifications tr td:first-child(){width:100px}.product-detail select[disabled=disabled]{background-color:#dcdcdc;border-color:#dcdcdc;cursor:not-allowed}.zoomContainer,.zoomLens{z-index:99!important}.store-meta-images{margin-top:20px}.store-meta-images img{height:100%;max-height:300px;width:100%}.related-products{margin-bottom:60px}.vc-small-screen{display:none!important}@media only screen and (max-width:1192px){.sticky-header,.vc-full-screen{display:block!important}.vc-small-screen{display:none!important}#main-category{display:block!important}.footer .footer-content .newsletter-subscription .newsletter-wrapper .social-icons{padding:5px 0;text-align:center!important;width:100%}.footer .footer-content .newsletter-subscription .newsletter-wrapper .subscribe-newsletter{padding:10px 0;text-align:center;width:100%}.footer .footer-content .footer-statics>div:not(:last-child){margin-bottom:30px}.slider-container{min-height:290px}}@media only screen and (max-width:992px){body.open-hamburger{color:#7f7f7f;opacity:.8;overflow:hidden}#webheader{background-color:#fff;position:fixed}#main-category,#webheader{display:none!important}#home-right-bar-container{position:relative}.sticky-header,.vc-full-screen{display:none!important}.vc-small-screen{display:block!important}.force-center{margin:0 auto!important}.main-content-wrapper{background-color:#fff;margin-bottom:25px;z-index:100}.main-content-wrapper .vc-header{background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);margin:0;padding:0;top:0;width:100%}.main-content-wrapper .vc-header>div{display:none}.main-content-wrapper .vc-header>div.vc-small-screen{display:block}.main-content-wrapper .vc-header>div.vc-small-screen img{height:100%;max-height:50px;width:100%}.main-content-wrapper .vc-header>div.vc-small-screen .hamburger-wrapper{display:inline-block;height:50px}.main-content-wrapper .vc-header>div.vc-small-screen .hamburger-wrapper .hamburger{font-size:24px;position:relative;top:12px}.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header{display:table;height:50px;position:relative;text-align:right;z-index:2}.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header>a{display:table-cell;vertical-align:middle}.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header .badge-container,.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header .badge-wrapper{left:-12px;position:relative;top:-32px}.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header .badge-container .badge,.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header .badge-wrapper .badge{background:#26a37c;border-radius:50%;color:hsla(0,0%,100%,.83);position:absolute;z-index:10}.main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header .badge-container{left:4px;margin-right:10px}#top{display:none}.product-card-new{max-width:19rem}.product-card-new.grid-card .card-body .product-name{width:13rem}.product-card-new.grid-card .card-body .product-rating{display:none}.product-card-new.grid-card .card-body .add-to-cart-btn{display:table;padding:0}.carousel-products.with-recent-viewed .product-card-new.grid-card .card-body .add-to-cart-btn .btn-add-to-cart .btn-add-to-cart,.product-card-new.grid-card .card-body .add-to-cart-btn .btn-add-to-cart .carousel-products.with-recent-viewed .btn-add-to-cart,.product-card-new.grid-card .card-body .add-to-cart-btn .btn-add-to-cart .small-padding.btn-add-to-cart{padding:3px 14px!important}.product-card-new.grid-card .card-body .add-to-cart-btn~a{position:relative}.product-card-new.grid-card .card-body .add-to-cart-btn~a.compare-icon{right:0}.product-card-new.grid-card .card-body .add-to-cart-btn~a.wishlist-icon{left:10px;max-width:25px;padding:0}.product-card-new.grid-card #quick-view-btn-container{display:none}.advertisement-four-container .offers-ct-panel{padding:8px 0}.advertisement-four-container .offers-ct-panel a:first-child{padding-bottom:10px!important}.advertisement-three-container .bottom-container img,.advertisement-three-container .top-container img{height:unset;padding:0}.advertisement-three-container .second-panel{padding-top:10px}.advertisement-two-container a:nth-of-type(2){padding:15px 0 0}.category-with-custom-options{display:none}.category-with-custom-options.vc-small-screen{display:block}.category-with-custom-options.vc-small-screen .smart-category-container .col-12{padding:0}.category-with-custom-options.vc-small-screen .smart-category-container:not(:first-child){padding-top:20px}.footer .footer-content .newsletter-subscription{padding:10px 20px}.footer .footer-content .newsletter-subscription .newsletter-wrapper{margin:0;padding:0}.footer .footer-content .newsletter-subscription .newsletter-wrapper input.subscribe-field{width:200px}.footer .footer-content .newsletter-subscription .newsletter-wrapper .subscribe-newsletter{text-align:left}.footer .footer-content .newsletter-subscription .newsletter-wrapper .subscribe-newsletter .subscriber-form-div{text-align:center}.footer .footer-content .footer-statics{padding:30px 50px}.footer .footer-content .footer-copy-right{font-size:14px}.popular-categories-container .popular-category-wrapper{padding:0}.popular-categories-container .popular-category-wrapper .card .category-image{height:100%}.popular-categories-container .popular-category-wrapper:last-child{padding-left:0}.slides-container .VueCarousel .VueCarousel-pagination button{height:5px!important;width:5px!important}.slides-container .VueCarousel .VueCarousel-pagination .VueCarousel-dot{padding:2px!important}.account-content .sidebar{display:none}.account-content .account-layout{padding:0}.account-content .account-layout.right{padding-left:20px!important;padding-right:20px!important}.account-content .account-layout .account-items-list.wishlist-container .product-card-new{width:calc(50% - 5px)}.account-content .account-layout .sale-container .tabs-content .totals .sale-summary{font-size:17px;width:100%}.account-content .account-layout .sale-container .tabs-content .totals .sale-summary tbody tr td{width:50%!important}.account-content .account-layout .sale-container .tabs-content .totals .sale-summary tbody tr td:last-child{text-align:right}.account-content .account-layout .sale-container .order-box-container .box{margin-bottom:20px;width:100%}.account-content .account-layout .sale-container .order-box-container .box .box-title{padding-bottom:0}.mini-cart-btn{display:none}header .vc-small-screen .searchbar{padding-left:20px!important;padding-right:20px!important}header .vc-small-screen .searchbar .compare-btn,header .vc-small-screen .searchbar .wishlist-btn{display:none}header .vc-small-screen #search-form{background:transparent;width:100%}header .vc-small-screen #search-form .selectdiv{display:none}header .vc-small-screen #search-form .selectdiv+input{border:1px solid #26a37c;width:calc(100% - 40px)}.carousel-products.vc-full-screen{display:none}.carousel-products.vc-small-screen{display:block!important}.carousel-products+.recently-viewed{position:static;top:0}.reviews-container .review-wrapper,.reviews-container .review-wrapper:first-of-type,.reviews-container .review-wrapper:last-of-type,.reviews-container .review-wrapper:nth-last-of-type(2){padding:0}.reviews-container .review-wrapper:not(:last-child){margin-bottom:10px}.product-policy-wrapper{padding:0!important}.product-policy-wrapper:not(:last-child){margin-bottom:10px}.product-detail #product-form .form-container div.left{margin-bottom:20px;position:relative;top:0}.product-detail #product-form .form-container div.left .vc-small-product-image{width:100%}.product-detail .customer-rating>.row>div{margin-bottom:30px}.product-detail .arrow.left,.product-detail .arrow.right{display:none}.product-detail .thumb-list .small-card-container .thumb-frame>.product-image,.product-detail .thumb-list .thumb-frame>.bg-image,.small-card-container .product-detail .thumb-list .thumb-frame>.product-image{background-size:contain}.review-page-container>div{padding:0}.review-page-container>div:not(:last-child){margin-bottom:60px;position:relative}.customer-rating>.row>div:not(:last-child){margin-bottom:20px}.auth-content.form-container>.container{margin:0;width:100%}.auth-content.form-container>.container>div:first-child{padding:0}.auth-content.form-container>.container>div:first-child .body{padding:20px}.category-page-wrapper .layered-filter-wrapper{display:none}.category-page-wrapper .category-container{margin:20px 0 0;padding-left:0!important;padding-right:0!important}.category-page-wrapper .category-container>div{padding:0 10px}.category-page-wrapper .category-container>div:first-child{padding:0 10px!important}.category-page-wrapper .category-container .filters-container{background-color:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,.21);left:0;padding:0 0 10px;position:fixed;top:30px;width:100%;z-index:9}.category-page-wrapper .category-container .filters-container .toolbar-wrapper>div.col-4{display:table;margin:0;padding:0;text-align:center}.category-page-wrapper .category-container .filters-container .toolbar-wrapper>div.col-4 *{display:table-cell;vertical-align:middle}.category-page-wrapper .category-container .filters-container .toolbar-wrapper>div.col-4 a{display:inline-block;text-align:center}.category-page-wrapper .category-container .filters-container .toolbar-wrapper>div.col-4 span{left:5px;position:relative}.nav-container{background-color:#fff;box-shadow:0 2px 8px 0;font-size:16px;height:100vh;left:0;opacity:1;overflow-y:scroll;position:fixed;top:0;width:75%;z-index:9999}.nav-container .wrapper{position:relative}.nav-container .wrapper .category-title{display:none;display:table;margin:13px 0;padding-left:10px;width:100%}.nav-container .wrapper .category-title>i{display:table-cell;font-size:26px;vertical-align:middle}.nav-container .wrapper .category-title span{display:table-cell;font-size:20px;vertical-align:top}.nav-container .wrapper .category-title span i{float:left!important;margin:2px 2px 0 0!important}.nav-container .wrapper .greeting{background-color:#fff;border-bottom:1px solid #ccc;color:#111;display:table;position:-webkit-sticky;position:sticky;top:0;width:100%}.nav-container .wrapper .greeting>i{display:table-cell;font-size:26px;vertical-align:middle}.nav-container .wrapper .greeting span{display:table-cell;font-size:20px;vertical-align:top}.nav-container .wrapper ul{border-top:1px solid #ccc;color:#111;font-weight:600}.nav-container .wrapper ul li{font-size:16px;padding:10px 0 10px 20px}.nav-container .wrapper ul li:hover{background-color:#ececec}.nav-container .wrapper ul li .category-logo,.nav-container .wrapper ul li .language-logo-wrapper{display:inline-block;height:18px;margin-right:5px;width:18px}.nav-container .wrapper ul li .rango-arrow-right{float:right;font-size:20px;padding-right:15px;padding-top:5px}.nav-container .wrapper ul li .nested-category{border-top:unset}.nav-container .wrapper ul li .nested-category li:last-child{padding-bottom:0}.nav-container .wrapper ul:first-of-type{border-top:unset}.nav-container .wrapper .category-wrapper li,.nav-container .wrapper .vc-customer-options li{font-size:14px}.nav-container .wrapper .category-wrapper li i.icon,.nav-container .wrapper .vc-customer-options li i.icon{speak:none;-webkit-font-smoothing:antialiased;display:contents;font-family:Webkul Rango!important;font-size:18px;font-style:normal;font-variant:normal;font-weight:400;line-height:1;padding-right:5px;text-transform:none}.nav-container .wrapper .category-wrapper li i.icon.profile:before,.nav-container .wrapper .vc-customer-options li i.icon.profile:before{content:""}.nav-container .wrapper .category-wrapper li i.icon.address:before,.nav-container .wrapper .vc-customer-options li i.icon.address:before{content:""}.nav-container .wrapper .category-wrapper li i.icon.reviews:before,.nav-container .wrapper .vc-customer-options li i.icon.reviews:before{content:""}.nav-container .wrapper .category-wrapper li i.icon.wishlist:before,.nav-container .wrapper .vc-customer-options li i.icon.wishlist:before{content:""}.nav-container .wrapper .category-wrapper li i.icon.compare:before,.nav-container .wrapper .vc-customer-options li i.icon.compare:before{content:""}.nav-container .wrapper .category-wrapper li i.icon.orders:before,.nav-container .wrapper .vc-customer-options li i.icon.orders:before{content:""}.nav-container .wrapper .category-wrapper li i.icon.downloadables:before,.nav-container .wrapper .vc-customer-options li i.icon.downloadables:before{content:""}.nav-container .drawer-section{padding:15px}.nav-container .header.drawer-section{display:table;width:100%}.nav-container .header.drawer-section>*{display:table-cell;vertical-align:middle}.nav-container .header.drawer-section i{padding-right:10px;width:25px}.nav-container .layered-filter-wrapper{display:block;margin-bottom:0;padding-top:0;width:100%}.category-container .grid-card,.search-container .grid-card{width:45%}.category-container .grid-card:nth-child(odd),.search-container .grid-card:nth-child(odd){float:left}.category-container .grid-card:nth-child(2n),.search-container .grid-card:nth-child(2n){float:right}.cart-details .order-summary-container.offset-1,.cart-details.offset-1{margin-left:0;padding-left:0;padding-right:0}.cart-details .cart-details-header,.cart-details h1{padding:0}.cart-details h1{margin-bottom:20px}.cart-details .cart-header{display:none}.cart-details .cart-item-list>div{margin:0;padding:0}.cart-details .product-price .special-price,.cart-details .product-price span:first-child{font-size:18px}.cart-details .actions{margin-top:7px!important}.cart-details .continue-shopping,.cart-details .empty-cart-message{padding:0}.checkout-process{margin-left:0!important;padding-left:0!important;padding-right:0!important}.checkout-process h1,.checkout-process>div{padding:0}.checkout-process .billing-address{margin-bottom:20px}.address-holder>div{padding-bottom:15px;padding-right:0}.wishlist-container{margin:0!important;padding:0!important;width:100%!important}.wishlist-container .product-card-new{margin-left:0}.compare-products{padding:0!important}.compare-products .col,.compare-products .col-2{max-width:unset}.compare-icon,.wishlist-icon{margin-left:0}.image-search-result .searched-terms{margin-left:0;margin-top:20px}.image-search-result .searched-terms .term-list a{line-height:40px}#sort-by.sorter select{display:inline-block;left:25px;padding:0 10px;position:absolute;top:2px}.slider-container{min-height:220px}}@media only screen and (max-width:768px){.sticky-header{display:none!important}#home-right-bar-container{position:unset;top:unset}.modal-container{left:10%;margin-left:0;max-width:80%}.footer .footer-list-container{padding-left:0!important}.footer .currency{display:block!important}button.btn.btn-sm.btn-primary.apply-filter{margin-top:10px}.quick-view-btn-container span{font-size:13px;left:24%;top:-24px}.quick-view-in-list{display:none}.product-card-new{max-width:18rem}.slider-container{min-height:220px}}@media only screen and (max-width:460px){.product-card-new{max-width:11rem}.product-card-new .product-image-container img{min-height:unset}}@media only screen and (max-width:420px){.sticky-header{display:none!important}#home-right-bar-container{position:unset;top:unset}.slider-container{min-height:100px}.advertisement-four-container{min-height:992px}.advertisement-four-container .advertisement-container-block,.advertisement-four-container .offers-ct-panel{min-height:425px}.product-card-new{max-width:9rem}.product-card-new .product-image-container img{min-height:unset}}@media only screen and (max-width:360px){.product-card-new{max-width:8rem}.product-card-new .product-image-container img{min-height:unset}}@media only screen and (max-width:320px){body{min-width:280px}.sticky-header{display:none!important}#home-right-bar-container{position:unset;top:unset}.quick-view-in-list{display:none}.slider-container{min-height:100px}.advertisement-four-container{min-height:992px}.advertisement-four-container .advertisement-container-block,.advertisement-four-container .offers-ct-panel{min-height:425px}.product-card-new{max-width:7rem}.product-card-new .product-image-container img{min-height:unset}}body.rtl{text-align:right}.account-content .account-layout .bottom-toolbar .pagination body.rtl .page-item,.product-detail body.rtl .right,body.rtl .account-content .account-layout .bottom-toolbar .pagination .page-item,body.rtl .fs16,body.rtl .product-detail .right{font-size:14px!important}body.rtl .order-summary-container{margin-left:0;margin-right:130px}body.rtl .velocity-divide-page .right{padding-left:0!important;padding-right:230px!important}body.rtl header #search-form #header-search-icon{border-radius:2px 0 0 2px;float:right}body.rtl header #search-form .btn-group select,body.rtl header #search-form .quantity select{border-left:0;border-right:1px solid #26a37c}body.rtl header #search-form .btn-group .selectdiv select,body.rtl header #search-form .quantity .selectdiv select{float:unset}body.rtl header #search-form .btn-group .selectdiv select~.select-icon-container,body.rtl header #search-form .quantity .selectdiv select~.select-icon-container{position:absolute;right:100px;top:0}body.rtl header #search-form .btn-group .selectdiv .select-icon,body.rtl header #search-form .quantity .selectdiv .select-icon{left:8px;top:12px}body.rtl header.sticky-header img{float:right}body.rtl header .left-wrapper{float:left}body.rtl header .left-wrapper .compare-btn .badge-container .badge,body.rtl header .left-wrapper .wishlist-btn .badge-container .badge{left:-2px;top:-28px}body.rtl header .left-wrapper .mini-cart-btn{margin-left:0;margin-right:16px}body.rtl header .left-wrapper .mini-cart-btn .mini-cart-content{margin-left:7px;margin-right:0!important}body.rtl header .left-wrapper .mini-cart-btn .mini-cart-content .badge-container .badge{left:unset;right:-15px}body.rtl header .left-wrapper .mini-cart-btn #cart-modal-content{left:0}body.rtl header .left-wrapper .mini-cart-btn #cart-modal-content .small-card-container .remove-item{left:unset;right:-10px}body.rtl header .left-wrapper .mini-cart-btn #cart-modal-content .small-card-container .card-total-price{float:left}body.rtl header .left-wrapper .mini-cart-btn .dropdown-list{right:unset!important}body.rtl .main-content-wrapper .main-category{text-align:right}body.rtl .main-content-wrapper .main-category i{float:right;margin-left:10px}body.rtl .main-content-wrapper .vc-header>div.vc-small-screen .right-vc-header .badge-container{left:-4px}body.rtl .form-container .container .heading h2{float:right}body.rtl .form-container .back-button,body.rtl .form-container .container .heading a{float:left}body.rtl .sticker{left:unset;right:8px}body.rtl .subscriber-form-div{text-align:left}body.rtl .footer .footer-content .newsletter-subscription .newsletter-wrapper input.subscribe-field{left:-4px;position:relative}body.rtl .lg-card-container.list-card .add-to-cart-btn{float:right;margin-left:20px}body.rtl #top #account .welcome-content{float:left}body.rtl #top #account .welcome-content i{text-align:left}body.rtl #top .locale-icon~.select-icon-container{right:20px}body.rtl #top .currency-icon~.select-icon-container{right:7px}body.rtl .category-list-container .sub-categories{left:-100%}body.rtl .category-list-container li a{padding:7px 15px 5px}body.rtl .category-list-container li ul.nested li a{padding-right:25px}body.rtl .filters-container .view-mode>div{padding-right:6px}body.rtl .filters-container .toolbar-wrapper>div label{margin-left:10px;margin-right:0}body.rtl .filter-attributes-content{margin-left:7px;margin-right:0}body.rtl .filter-attributes-item input[type=checkbox]+span{margin-right:10px}body.rtl .filter-attributes-item .filter-input{margin-right:0}body.rtl .product-card-new .card-body .cart-wish-wrap{margin-right:0!important}body.rtl .product-card-new .card-body .cart-wish-wrap .add-to-cart-btn{padding-left:35px!important}body.rtl .product-card-new .card-body .wishlist-icon{left:0;right:unset}body.rtl .product-card-new .card-body .product-name{width:unset}body.rtl .account-content{min-height:100vh}body.rtl .account-content .account-layout.right{padding-right:250px!important;width:calc(100% - 20px)}body.rtl .account-content .account-layout .account-table-content .address-holder .card-link+.card-link{margin-right:1.25rem}body.rtl .account-content .account-layout .account-table-content .address-holder>div{padding-left:15px;padding-right:0}body.rtl .account-content .account-action{float:left!important}body.rtl .account-content .sidebar{border-left:1px solid #e5e5e5}body.rtl .account-content .sidebar .customer-sidebar .navigation li i.icon{padding-left:5px;padding-right:0}body.rtl .image-wrapper.image-wrapper .image-item{float:unset}body.rtl .image-wrapper.image-wrapper .image-item .remove-image{margin-right:unset}body.rtl .product-detail .product-actions .compare-icon,body.rtl .product-detail .product-actions .wishlist-icon{float:left}body.rtl .product-detail .right .info{margin-right:0}body.rtl .product-detail .right .info div,body.rtl .product-detail .right .info>h2{padding-right:0}body.rtl .product-detail .right .info .buynow{margin-right:10px}body.rtl .product-detail .thumb-list{left:0;margin-right:0}body.rtl .product-detail .wishlist-icon{padding-right:10px}body.rtl .zoomWindow{right:100%!important}body.rtl .modal-footer>:not(:last-child){margin-left:.25rem}body.rtl .compare-products .wishlist-icon{left:30px;right:unset}body.rtl .compare-products .material-icons.cross{left:20px;right:unset}body.rtl #alert-container{left:15px;right:unset}body.rtl .alert-dismissible .close{left:-8px}body.rtl .booking-information .book-slots .control-group-container .form-group:not(.quantity).date:after{left:40px;right:unset}body.rtl .full-content-wrapper>.container-fluid>.row.pl-26{padding-right:26%!important}body.rtl .image-search-container{left:45px;right:unset}body.rtl .product-policy-container .card .policy .left{margin-left:10px}body.rtl .advertisement-three-container .second-panel{padding-right:30px}body.rtl .advertisement-two-container .row{padding:0!important}body.rtl .advertisement-two-container .row .pr0{padding-right:15px!important}body.rtl .downloadable-container .link-list ul li a{float:left;margin-top:3px}body.rtl .text-right{text-align:left!important}body.rtl .text-left{text-align:right!important}body.rtl .pr0{padding-left:0!important;padding-right:15px!important}body.rtl .pl0{padding-right:0!important}body.rtl .pl10{padding-right:10px!important}body.rtl .rango-arrow-right:before{content:""}body.rtl .rango-arrow-left:before{content:""}body.rtl .styled-select+.select-icon-container .select-icon{left:6px;right:unset}body.rtl .ml15{margin-right:15px!important}body.rtl .pl30{padding-right:30px}body.rtl .ml-5{margin-right:3rem!important}.product-detail .right .options .buttons body.rtl :not(:last-child),.product-detail .right .options body.rtl .quantity>label,body.rtl .mr15,body.rtl .product-detail .right .options .buttons :not(:last-child),body.rtl .product-detail .right .options .quantity>label{margin-left:15px!important}body.rtl .ml5{margin-right:5px}body.rtl .payment-methods .pl40{padding-left:0!important;padding-right:40px!important}body.rtl #top #account .dropdown-list{left:10px;right:unset!important;text-align:right}body.rtl .VueCarousel .VueCarousel-inner{flex-direction:row-reverse}body.rtl .quantity .input-btn-group button.increase{border-left:1px solid #dcdcdc;border-right:0}body.rtl .quantity .input-btn-group button.decrease{border-left:0;border-right:1px solid #dcdcdc}body.rtl .full-content-wrapper .container-fluid .row.carousel-products-header{padding-left:75px!important;padding-right:15px!important}body.rtl .carousel-products .VueCarousel-slide,body.rtl .carousel-products .VueCarousel-wrapper{direction:ltr}body.rtl .carousel-products .VueCarousel-navigation{left:12px;right:unset}@media only screen and (max-width:992px){body.rtl .order-summary-container{margin-right:0}body.rtl .nav-container ul li{padding:10px 20px 10px 0}body.rtl .nav-container ul li .rango-arrow-right{float:left;padding-left:40px}body.rtl .nav-container .wrapper .vc-customer-options li i.icon{float:right;padding-left:5px}body.rtl .account-content .account-layout.right,body.rtl .full-content-wrapper>.container-fluid>.row.pl-26{padding-right:20px!important}body.rtl .velocity-divide-page .left{right:35px;top:4px;width:150px}body.rtl .velocity-divide-page .right{padding:0 20px!important}body.rtl .checkout-process{margin-right:0!important;padding-left:0!important;padding-right:0!important}}@media only screen and (max-width:425px){.account-content .account-layout .bottom-toolbar .pagination body.rtl .page-item,.product-detail body.rtl .right,body.rtl .account-content .account-layout .bottom-toolbar .pagination .page-item,body.rtl .fs16,body.rtl .product-detail .right{font-size:12px!important}body.rtl .velocity-divide-page .right{padding:0 20px!important}}@media only screen and (max-width:375px){.account-content .account-layout .bottom-toolbar .pagination body.rtl .page-item,.product-detail body.rtl .right,body.rtl .account-content .account-layout .bottom-toolbar .pagination .page-item,body.rtl .fs16,body.rtl .product-detail .right{font-size:10px!important}body.rtl .velocity-divide-page .right{padding:0 20px!important}}@media only screen and (max-width:320px){.account-content .account-layout .bottom-toolbar .pagination body.rtl .page-item,.product-detail body.rtl .right,body.rtl .account-content .account-layout .bottom-toolbar .pagination .page-item,body.rtl .fs16,body.rtl .product-detail .right{font-size:8px!important}body.rtl .velocity-divide-page .right{padding:0 20px!important}}.table{width:100%}.table .table-responsive{overflow-x:auto;width:100%}.table .table-responsive::-webkit-scrollbar{height:5px!important}.table .table-responsive::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px #c8c8c8!important}.table .table-responsive::-webkit-scrollbar-thumb{background-color:#fff!important;border-radius:10px!important;-webkit-box-shadow:inset 0 0 6px rgba(90,90,90,.7)!important}.table table{border-collapse:collapse;text-align:left;width:100%}.table table thead th{background:#f8f9fa;border-right:1px solid #ccc!important;color:rgba(0,0,0,.83);font-weight:700;padding:12px 10px}.table table thead th.sortable{cursor:pointer}.table table thead th:last-child{border-right:none}.table table tbody td{border-bottom:1px solid #d3d3d3;color:rgba(0,0,0,.83);padding:10px;vertical-align:top}.table table tbody td.actions .action{display:inline-flex}.table table tbody td.actions .icon{cursor:pointer;display:block}.table table tbody td.empty{text-align:center}.table table tbody tr:last-child td{border-bottom:none}.table .control-group{margin-bottom:0;min-width:140px;width:100%}.table .control-group .control{margin:0;width:100%}.grid-container{display:block;width:100%}.grid-container .grid-top{align-items:center;display:grid;grid-template-rows:auto auto auto;row-gap:8px}.grid-container .grid-top .datagrid-filters,.grid-container .grid-top .datagrid-filters .grid-right{-moz-column-gap:10px;column-gap:10px;display:grid;grid-template-columns:auto auto}.grid-container .grid-top .datagrid-filters .grid-right{align-items:end;justify-self:end}.grid-container .grid-top .datagrid-filters .dropdown-filters{display:inline-block}.grid-container .grid-top .datagrid-filters .dropdown-filters.per-page .control-group{margin-bottom:0}.grid-container .grid-top .datagrid-filters .dropdown-filters.per-page .control-group label{flex:auto;margin-right:10px;margin-top:7px}.grid-container .grid-top .datagrid-filters .dropdown-filters.per-page .control-group .control{flex:1;margin:0;width:100%}.grid-container .datagrid-filters{position:relative}.grid-container .datagrid-filters,.grid-container .datagrid-filters .filter-right{align-items:end;-moz-column-gap:10px;column-gap:10px;display:grid;grid-template-columns:auto auto}.grid-container .datagrid-filters .filter-right{justify-self:end}.grid-container .datagrid-filters .filter-right .control-group{margin-bottom:10px}.grid-container .datagrid-filters .filter-right .control-group .control{margin-bottom:0}.grid-container .datagrid-filters .filter-right .dropdown-list{padding:15px;right:0}.grid-container .datagrid-filters .filter-right .dropdown-list ul{list-style:none;margin:0;padding:0}.grid-container .datagrid-filters .filter-right .dropdown-list .apply-filter{width:100%}.filtered-tags{align-items:flex-start;display:inline-flex;flex-wrap:wrap;margin-bottom:10px}.search-filter{border-radius:3px;height:36px;max-width:300px;position:relative}.search-filter .control{-webkit-appearance:none;border:1px solid #c7c7c7;border-bottom-left-radius:3px;border-right:none;border-top-left-radius:3px;font-size:15px;height:36px;padding-left:10px;width:calc(100% - 36px)}.search-filter:hover{box-shadow:0 0 0 1px rgba(0,64,255,.6)}.search-filter .contorl:focus{border-color:#0041ff}.search-filter .icon-wrapper{border:1px solid #c7c7c7;border-radius:3px;border-bottom-left-radius:0;border-top-left-radius:0;height:36px;padding:5px;position:absolute;right:0;top:0;width:36px}.search-icon{background-image:url(../images/icon-search.svg);height:24px;width:24px}.icon{background-size:cover;display:inline-block}.grid-dropdown-header{align-items:center;background-color:#fff;border:1px solid #c7c7c7;border-radius:3px;display:inline-flex;height:36px;justify-content:space-between;min-width:200px;padding:0 5px;width:100%}.grid-dropdown-header .arrow-icon-down{float:right}.dropdown-toggle:after{display:none}.dropdown-list{background-color:#fff;border-radius:3px;box-shadow:0 2px 4px 0 rgba(0,0,0,.16),0 0 9px 0 rgba(68,58,58,.16);display:none;margin-bottom:20px;position:absolute;text-align:left;width:200px;z-index:1000}.dropdown-list.bottom-left{left:0;top:42px}.dropdown-list.bottom-right{right:0;top:42px}.dropdown-list.top-left{bottom:0;left:42px}.dropdown-list.top-right{bottom:0;right:42px}.dropdown-list .dropdown-label{border-bottom:1px solid #c1c2c3;color:rgba(0,0,0,.53);cursor:default;display:block;font-size:18px;font-weight:600;padding:8px 12px}.dropdown-list .dropdown-container{overflow-y:auto}.dropdown-list .dropdown-container label{color:#9e9e9e;display:inline-block;font-size:15px;font-weight:700;padding-bottom:5px;text-transform:uppercase}.dropdown-list .dropdown-container ul{list-style-type:none;margin:0;padding:0}.dropdown-list .dropdown-container ul li a{font-size:16px;padding:8px 12px}.dropdown-list .dropdown-container ul li a:active,.dropdown-list .dropdown-container ul li a:focus,.dropdown-list .dropdown-container ul li a:link,.dropdown-list .dropdown-container ul li a:visited{color:rgba(0,0,0,.83);display:block}.dropdown-list .dropdown-container ul li a:hover{background-color:#ececec}.dropdown-list .dropdown-container ul li .control-group label{color:rgba(0,0,0,.83);font-size:15px;font-weight:500;text-transform:capitalize;width:100%}.dropdown-list .dropdown-container .btn{margin-top:10px;width:100%}.checkbox-dropdown-list{right:14px!important;width:170px!important}.checkbox-dropdown-list input{width:unset!important}.dropdown-btn{background:#fff;border:1px solid #ccc;border-radius:3px;cursor:pointer;font-size:14px;min-width:150px;padding:8px 35px 8px 10px;position:relative;text-align:left}.dropdown-btn:focus{border-color:#26a37c!important;outline:unset!important}.filter-advance{display:flex;justify-content:space-between}.filter-tag{border-radius:2px;justify-content:space-between;margin-right:20px}.filter-tag,.filter-tag .wrapper{align-items:center;display:flex;flex-direction:row;font-size:14px;height:40px}.filter-tag .wrapper{background:#e7e7e7;border:1px solid #e7e7e7;border-radius:24px;color:#000311;letter-spacing:-.22px;margin-left:4px;padding:5px 10px 5px 16px}.filter-tag .wrapper .icon.cross-icon{cursor:pointer;margin-left:10px}.filter-tag .wrapper:hover{background:#fff;border:1px solid #e7e7e7}.rtl .grid-container .datagrid-filters .filter-right .dropdown-list{right:unset}.rtl .search-filter .control{border-bottom-left-radius:0;border-bottom-right-radius:3px;border-left:0;border-right:1px solid #c7c7c7;border-top-left-radius:0;border-top-right-radius:3px;padding-right:10px}.rtl .search-filter .icon-wrapper{border-bottom-left-radius:3px;border-bottom-right-radius:0;border-top-left-radius:3px;border-top-right-radius:0;float:left}.rtl .search-filter:hover{box-shadow:0 0 0 1px rgba(0,64,255,.6)}.rtl .dropdown-filters{display:inline-block}.rtl .dropdown-filters.per-page{margin-left:10px;margin-right:10px}.rtl .filtered-tags .filter-tag .cross-icon,.rtl .filtered-tags .filter-tag .wrapper{margin-left:0;margin-right:10px}.rtl .checkbox-dropdown-list .dropdown-container{text-align:right}.rtl .checkbox-dropdown-list .checkbox input[type=checkbox]{float:right;margin-left:unset;margin-right:unset}@media only screen and (max-width:768px){.grid-container .grid-top .datagrid-filters{grid-template-columns:100%;row-gap:0}.grid-container .grid-top .datagrid-filters .search-filter{max-width:100%!important}.grid-container .grid-top .datagrid-filters .filter-left,.grid-container .grid-top .datagrid-filters .filter-right{-moz-column-gap:5px;column-gap:5px;display:grid;grid-template-columns:49.5% 49%}.grid-container .grid-top .datagrid-filters .filter-right{width:100%}.grid-dropdown-header{min-width:122px}.dropdown-list.dropdown-container{padding:10px}}@font-face{font-display:swap;font-family:Material Icons;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialicons/v48/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format("woff2")}@font-face{font-display:swap;font-family:Material Icons Outlined;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialiconsoutlined/v14/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUce.woff2) format("woff2")}@font-face{font-display:swap;font-family:Material Icons Round;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialiconsround/v14/LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmP.woff2) format("woff2")}@font-face{font-display:swap;font-family:Material Icons Sharp;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialiconssharp/v15/oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvR.woff2) format("woff2")}@font-face{font-display:swap;font-family:Material Icons Two Tone;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialiconstwotone/v13/hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu0.woff2) format("woff2")}.material-icons{-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-family:Material Icons}.material-icons,.material-icons-outlined{word-wrap:normal;direction:ltr;display:inline-block;font-size:24px;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1;max-width:30px;overflow:hidden;text-transform:none;white-space:nowrap}.material-icons-outlined{-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-family:Material Icons Outlined}.material-icons-round{-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-family:Material Icons Round}.material-icons-round,.material-icons-sharp{word-wrap:normal;direction:ltr;display:inline-block;font-size:24px;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap}.material-icons-sharp{-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;font-family:Material Icons Sharp}.material-icons-two-tone{word-wrap:normal;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased;direction:ltr;display:inline-block;font-family:Material Icons Two Tone;font-size:24px;font-style:normal;font-weight:400;letter-spacing:normal;line-height:1;text-transform:none;white-space:nowrap}*{font-family:Source Sans Pro,sans-serif;margin:0;padding:0}*,:after,:before{box-sizing:inherit}::-webkit-scrollbar{height:5px;width:3px}::-webkit-scrollbar-track{background:#d8d8d8}::-webkit-scrollbar-thumb{background:#666}::-webkit-input-placeholder{font-family:Source Sans Pro,sans-serif}input[type=checkbox]{height:15px;margin-right:10px;width:24px}.form-control:focus{box-shadow:0 0 8px 1px rgba(105,221,157,.25)}button,input,optgroup,select,textarea{color:rgba(0,0,0,.83);font-family:Source Sans Pro,sans-serif}textarea{resize:none}html{box-sizing:border-box}body{background:#fff;color:rgba(0,0,0,.83);font-family:Source Sans Pro,sans-serif;font-size:12px;font-weight:400;line-height:20px;padding:0;width:100%}body,label{margin:0}.btn:hover{text-decoration:none}.btn:active:hover,.btn:focus{outline:none;outline-offset:0}.btn-link{color:rgba(0,0,0,.83);padding:6px 5px}.btn-link:focus,.btn-link:hover{color:rgba(0,0,0,.83);text-decoration:none}#top{border-bottom:1px solid #ccc;box-shadow:0 0 0 0 rgba(0,0,0,.24);color:rgba(0,0,0,.83);margin:0;min-height:32px}#top .btn{border-radius:0;font-family:Source Sans Pro,sans-serif;font-size:14px;letter-spacing:0;text-align:center}#top .btn,#top .btn:hover{text-decoration:none}#top .btn:active:hover,#top .btn:focus{outline:none;outline-offset:0}#top .btn-normal{background:#21a179;border-color:#269c77;color:#fff;font-weight:600}#top .btn-normal:active:focus,#top .btn-normal:active:hover,#top .btn-normal:hover{background:#fff;border-color:#21a179;color:#21a179}#top .btn-link{color:rgba(0,0,0,.83)}#top .dropdown-menu-large{left:-100px;min-width:250px}#top .customer-name{color:rgba(0,0,0,.83);font-size:16px;font-weight:600;padding:0 10px}#top #account{font-size:14px}#top #account .select-icon{left:0;padding-left:5px;top:0}#top #account .welcome-content{cursor:pointer;display:table;float:right;min-width:150px;padding-top:5px;text-align:right}#top #account .welcome-content *{display:table-cell;vertical-align:middle}#top #account .dropdown-list{right:10px;top:40px}#top #account .dropdown-list .modal-header{padding:20px}#top #account .dropdown-list .content{padding:5px 20px 15px}#top #account .dropdown-list .modal-footer .account-content .account-layout .bottom-toolbar .pagination .page-item,#top #account .dropdown-list .modal-footer .cart-details .continue-shopping-btn,#top #account .dropdown-list .modal-footer .theme-btn,.account-content .account-layout .bottom-toolbar .pagination #top #account .dropdown-list .modal-footer .page-item,.cart-details #top #account .dropdown-list .modal-footer .continue-shopping-btn{text-align:center;width:50%}#top>div:last-child{height:32px}#top>div .default{font-size:14px;padding:5px}#top .locale-icon{display:inline-block;width:20px}#top .locale-icon img{width:100%}#top .locale-switcher{cursor:pointer;padding-left:5px;padding-right:15px;position:relative;text-align:left}#top .dropdown{margin-right:15px}#top .dropdown .select-icon-container .select-icon{right:0}.dropdown-menu{background:#fff;border-radius:0;border-top:3px solid #269c77;box-shadow:11px 10px 17px 0 rgba(0,0,0,.21)}.dropdown-menu li a .dropdown-menu li a:focus,.dropdown-menu li a:focus,.dropdown-menu li a:hover{background:#21a179;color:#fff}.no-padding,.product-detail .right h3{padding:0!important}.btn-normal{background:#21a179;border-color:#269c77;border-radius:0;color:#fff;font-weight:600}.btn-normal:active:focus,.btn-normal:active:hover,.btn-normal:hover{background:#fff;border-color:#21a179;color:#21a179}.btn-secondary{background:#fff;border-color:#fff;color:#21a179}.btn-secondary:active:focus,.btn-secondary:active:hover,.btn-secondary:focus,.btn-secondary:hover{background:#21a179;border-color:#21a179}.btn-danger{color:#fff}.btn-danger,.btn-danger:active:focus,.btn-danger:active:hover,.btn-danger:focus,.btn-danger:hover{background:#f05153;border-color:#f05153}header .logo{height:46px;padding-left:10px}header #search-form{background:#fff;height:40px;margin:8px 0}header #search-form *{height:100%}header #search-form .btn-group,header #search-form .quantity{max-width:550px}header #search-form .btn-group .selectdiv,header #search-form .quantity .selectdiv{width:210px}header #search-form .btn-group .selectdiv .select-icon,header #search-form .quantity .selectdiv .select-icon{background-color:#fff;font-size:18px;height:20px;right:8px;top:-30px;z-index:10}header #search-form .btn-group select,header #search-form .quantity select{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:1px solid #26a37c;border-radius:2px 0 0 2px;border-right:0;cursor:pointer;font-family:Source Sans Pro,sans-serif;height:100%;width:100%}header #search-form .btn-group select::-ms-expand,header #search-form .quantity select::-ms-expand{display:none}header #search-form input{border:1px solid #26a37c;border-left-color:#ccc;border-radius:0;font-size:14px;height:100%;letter-spacing:0;line-height:20px;padding:0 10px}header #search-form .btn:hover{text-decoration:none}header #search-form .btn:active:hover,header #search-form .btn:focus{outline:none;outline-offset:0}header #search-form #header-search-icon{background-color:#26a37c;border-radius:0 2px 2px 0;min-width:40px}header #search-form #header-search-icon i{color:#fff}header .left-wrapper{float:right}header .left-wrapper .compare-btn,header .left-wrapper .mini-cart-btn,header .left-wrapper .wishlist-btn{cursor:pointer;display:inline-block;font-size:18px;font-weight:600;margin:16px}header .left-wrapper .compare-btn.mini-cart-btn,header .left-wrapper .mini-cart-btn.mini-cart-btn,header .left-wrapper .wishlist-btn.mini-cart-btn{margin-right:0}header .left-wrapper .compare-btn i,header .left-wrapper .mini-cart-btn i,header .left-wrapper .wishlist-btn i{margin-right:5px;vertical-align:middle}header .left-wrapper .compare-btn .badge-container,header .left-wrapper .mini-cart-btn .badge-container,header .left-wrapper .wishlist-btn .badge-container{display:inline-block;position:relative}header .left-wrapper .compare-btn .badge-container .badge,header .left-wrapper .mini-cart-btn .badge-container .badge,header .left-wrapper .wishlist-btn .badge-container .badge{background:#21a179;border-radius:50%;color:hsla(0,0%,100%,.83);left:-15px;min-width:20px;padding:4px;position:absolute;top:-23px}header .left-wrapper .compare-btn span,header .left-wrapper .mini-cart-btn span,header .left-wrapper .wishlist-btn span{padding-left:0;position:relative}header .left-wrapper .compare-btn #mini-cart,header .left-wrapper .mini-cart-btn #mini-cart,header .left-wrapper .wishlist-btn #mini-cart{line-height:inherit;padding:0}header .left-wrapper .compare-btn #mini-cart .mini-cart-content,header .left-wrapper .mini-cart-btn #mini-cart .mini-cart-content,header .left-wrapper .wishlist-btn #mini-cart .mini-cart-content{color:rgba(0,0,0,.83);display:inline-block;font-size:16px;font-weight:600;letter-spacing:0;margin-right:7px;position:relative;text-align:right}header .left-wrapper .compare-btn #mini-cart .mini-cart-content i+span.cart-text,header .left-wrapper .mini-cart-btn #mini-cart .mini-cart-content i+span.cart-text,header .left-wrapper .wishlist-btn #mini-cart .mini-cart-content i+span.cart-text{padding-left:0;vertical-align:text-bottom}header .left-wrapper .compare-btn #mini-cart .mini-cart-content+.down-arrow-container,header .left-wrapper .compare-btn #mini-cart .mini-cart-content+.down-arrow-container .rango-arrow-down,header .left-wrapper .mini-cart-btn #mini-cart .mini-cart-content+.down-arrow-container,header .left-wrapper .mini-cart-btn #mini-cart .mini-cart-content+.down-arrow-container .rango-arrow-down,header .left-wrapper .wishlist-btn #mini-cart .mini-cart-content+.down-arrow-container,header .left-wrapper .wishlist-btn #mini-cart .mini-cart-content+.down-arrow-container .rango-arrow-down{top:0}header .dropdown-menu-large{left:-180px;min-width:280px}header .dropdown-menu-large .dropdown-content{max-height:300px;overflow-y:auto;width:100%}header .dropdown-menu-large .dropdown-content .item{display:flex;padding:10px}header .dropdown-menu-large .dropdown-content .item .item-image{position:relative}header .dropdown-menu-large .dropdown-content .item .item-image .material-icons{cursor:pointer;font-size:16px;left:-6px;position:absolute;top:-6px}header .dropdown-menu-large .dropdown-content .item .item-image .thumbnail{border:1px solid #ccc;border-radius:0;height:75px;margin:0;width:75px}header .dropdown-menu-large .dropdown-content .item .item-name{color:rgba(0,0,0,.83);font-size:18px;font-weight:600;letter-spacing:0}header .dropdown-menu-large .dropdown-content .item .item-details{height:auto;padding:0 10px}header .dropdown-menu-large .dropdown-content .item .item-details .item-options{color:rgba(0,0,0,.83);font-family:Source Sans Pro,sans-serif;font-size:13px;letter-spacing:0}header .dropdown-menu-large .dropdown-content .item .item-details .item-qty-price{display:inline-block;padding:5px 0}header .dropdown-menu-large .dropdown-content .item .item-details .item-qty-price .item-qty{color:rgba(0,0,0,.83);font-size:16px;letter-spacing:0;text-align:left}header .dropdown-menu-large .dropdown-content .item .item-details .item-qty-price .item-price{color:rgba(0,0,0,.83);font-size:16px;font-weight:600;letter-spacing:0;text-align:right}header .dropdown-menu-large .dropdown-header{border-top:1px solid #ccc;padding:10px 10px 5px}header .dropdown-menu-large .dropdown-header .sub-total-text{color:rgba(0,0,0,.83);font-size:16px;font-weight:600;letter-spacing:0}header .dropdown-menu-large .dropdown-header .cart-sub-total{color:rgba(0,0,0,.83);font-size:16px;font-weight:700;letter-spacing:0;text-align:right}header .dropdown-menu-large .dropdown-footer{border-top:1px solid #ccc;color:rgba(0,0,0,.83);font-size:16px;font-weight:700;letter-spacing:0;padding:10px 10px 0}header .dropdown-menu-large .dropdown-footer .cart-link{text-align:left}header .dropdown-menu-large .dropdown-footer .cart-link a{vertical-align:middle}header .dropdown-menu-large .dropdown-footer .checkout-link{text-align:right}#nav-menu{background-color:#fff;box-shadow:0 0 0 0 rgba(0,0,0,.24);margin:0}#nav-menu .navbar{color:rgba(0,0,0,.83);cursor:pointer;font-family:SourceSansPro-Semibold;font-size:16px;letter-spacing:0;margin:0;min-height:40px;position:relative}#nav-menu .navbar .navbar-header{display:inline-block;width:100%}#nav-menu .navbar .navbar-header .main-category{display:inline-block;overflow:hidden;padding:5px 5px 5px 35px;position:relative;width:100%}#nav-menu .navbar .navbar-header .main-category .material-icons{font-size:28px;left:0;position:absolute;top:2px}#nav-menu .navbar .category-dropdown{background:#fff;height:525px;left:0;position:absolute;top:40px;width:100%}#nav-menu .navbar .category-dropdown li.category-list{background:#fff;display:inline-block;position:relative;width:100%}#nav-menu .navbar .category-dropdown li.category-list a{color:rgba(0,0,0,.83);display:block;font-size:14px;font-weight:600;letter-spacing:0;padding:10px 0;position:relative}#nav-menu .navbar .category-dropdown li.category-list a .material-icons{position:absolute;right:0;top:8px}#nav-menu .navbar .category-dropdown li.category-list a:hover{background-color:#f7f7f9;color:#28557b;text-decoration:none}#nav-menu .navbar .category-dropdown li.category-list .child-container{background-color:#ccc;height:350px;left:283px;position:absolute;top:0;width:250px}#nav-menu .secondary-navbar{background-color:#4d7ea8;display:inline-block;height:auto;list-style:none;margin:0;min-height:40px;padding:5px;text-align:left;vertical-align:middle;width:100%}#nav-menu .secondary-navbar li{float:left}#nav-menu .secondary-navbar li a{color:#fff;cursor:pointer;display:block;font-size:16px;font-weight:600;letter-spacing:0;padding:5px 20px 5px 5px;position:relative;text-decoration:none}.viewed-products .viewed-products-listing{background-color:#f6f6f6;border:1px solid #fff}.viewed-products .viewed-products-listing .product-description,.viewed-products .viewed-products-listing .product-image{display:inline-block}.viewed-products .viewed-products-listing .product-description div{padding-top:2px}.customer-reviews .first-row{display:flex;justify-content:space-between}.customer-reviews .second-row{display:inline-block;width:100%}.customer-reviews .second-row .reviews-listing{background:#fff;box-shadow:0 4px 17px 0 rgba(0,0,0,.11);padding-right:10px}.customer-reviews .second-row .review-grid{display:grid;height:262px;padding-left:10px;padding-right:10px;padding-top:40px;width:345px}.categories-grid-customizable .category-grid{padding-bottom:10px;padding-left:5px;padding-right:5px}.categories-grid-customizable .category-grid .category-image{border:1px solid red}.categories-grid-customizable .category-grid .category-details{border:1px solid blue}.categories-grid-customizable .category-grid .category-details h3{color:#fff;text-align:center}.categories-grid-customizable .category-grid .category-details li{color:#fff;list-style-type:none;text-align:center}.product-policy{border:1px solid maroon;padding:30px 0 50px;text-align:center}.popular-products{height:auto;padding-right:10px;width:100%}.popular-products .second-row .popular-products-listing{border:1px solid red}.popular-products .second-row .popular-products-listing .product-buttons .add-to-cart-button .btn-primary{border:#26a37c!important;border-radius:0}.popular-products .second-row .popular-products-listing .product-buttons .add-to-cart-button .addtocart{background-color:#26a37c;text-transform:uppercase}.customer-name{background:#21a179;border-radius:50%;color:#fff;display:table-cell;font:18px josefin sans,arial;height:54px;padding:16px;text-align:center;vertical-align:middle;width:56px}.spacing{margin:5px 0}i.within-circle{border-radius:50%;box-shadow:0 0 2px #888;display:inline-block;height:50px;margin:15px 0;padding:12px;width:50px}.center_div{margin:0 auto;width:80%}.form-style{background-color:#fff;background-image:none;border:1px solid #dcdcdc;border-radius:0;color:rgba(0,0,0,.83);display:block;font-size:16px;height:36px;line-height:1.42857143;padding:6px 12px;width:100%}.label-style{display:inline-block!important;font-size:16px!important;font-weight:100!important;margin-bottom:5px!important;max-width:100%!important}.btn-white{color:#fff;height:36px;width:133px}.w3-card-2{width:133px}.w3-card-2,.w3-card-login{box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);float:right;height:36px}.w3-card-login{width:71px}.btn-new-customer-login{color:#26a37c!important;font-size:16px;padding:11px;text-decoration:none!important}.btn-dark-green{background-color:#26a37c;border-color:#26a37c;border-radius:0!important;color:#fff;height:36px}.login-text{border:1px #e5e5e5;height:65px;margin:0 auto;width:575px}.row:after,.row:before{display:none!important}.image-wrapper{display:inline-block;margin-bottom:20px;margin-top:10px;width:100%}.image-wrapper .image-item{background:#f8f9fa;background-image:url(../images/placeholder-icon.svg);background-position:50%;background-repeat:no-repeat;background-size:75%;border-radius:3px;display:inline-block;float:left;height:150px;margin-bottom:20px;margin-right:20px;position:relative;width:150px}.image-wrapper .image-item img.preview{height:100%;width:100%}.image-wrapper .image-item input{display:none}.image-wrapper .image-item .remove-image{background-image:linear-gradient(-180deg,rgba(0,0,0,.08),rgba(0,0,0,.24));border-radius:0 0 4px 4px;bottom:0;color:#fff;cursor:pointer;margin-right:20px;padding:10px;position:absolute;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.24);width:100%}.image-wrapper .image-item:hover .remove-image{display:block}.image-wrapper .image-item.has-image{background-image:none}.btn-primary{background-color:#26a37c!important;border-color:#26a37c!important}.category-page-wrapper .category-container .filters-container{background-color:#fff;box-shadow:none;left:0;margin-left:7px;padding:0 0 7px;position:unset;top:30px;width:96%;z-index:9}.filters-container .toolbar-wrapper>div select{background-color:#fff;color:rgba(0,0,0,.83);cursor:pointer;padding:6px 8px}.filters-container .toolbar-wrapper>div{margin:0 8px 0 0}@media(max-width:600px){.selective-div{-webkit-appearance:none;width:97px}.nav-container{background-color:#fff;box-shadow:5px 0 5px -5px #333;font-size:16px;height:100vh;left:0;opacity:1;overflow-y:scroll;position:fixed!important;top:0;width:75%;z-index:9999}}.velocity-divide-page .right{width:99%!important}.main-content-wrapper .content-list ul{width:101.2%!important}.show-password{margin-top:10px!important} diff --git a/packages/Webkul/Velocity/publishable/assets/js/components.js b/packages/Webkul/Velocity/publishable/assets/js/components.js index 82a2d94a6..404585bf6 100644 --- a/packages/Webkul/Velocity/publishable/assets/js/components.js +++ b/packages/Webkul/Velocity/publishable/assets/js/components.js @@ -1,2 +1,2 @@ /*! For license information please see components.js.LICENSE.txt */ -(self.webpackChunk=self.webpackChunk||[]).push([[339],{7757:(t,e,n)=>{t.exports=n(5666)},2265:t=>{window,t.exports=function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(r,i,function(e){return t[e]}.bind(null,i));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=60)}([function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){(function(e){var n=function(t){return t&&t.Math==Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof e&&e)||Function("return this")()}).call(this,n(35))},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var r=n(0);t.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var r=n(1),i=n(11).f,o=n(9),a=n(17),s=n(24),u=n(63),c=n(48);t.exports=function(t,e){var n,l,f,d,p,h=t.target,v=t.global,m=t.stat;if(n=v?r:m?r[h]||s(h,{}):(r[h]||{}).prototype)for(l in e){if(d=e[l],f=t.noTargetGet?(p=i(n,l))&&p.value:n[l],!c(v?l:h+(m?".":"#")+l,t.forced)&&void 0!==f){if(typeof d==typeof f)continue;u(d,f)}(t.sham||f&&f.sham)&&o(d,"sham",!0),a(n,l,d,t)}}},function(t,e,n){var r=n(3),i=n(38),o=n(7),a=n(13),s=Object.defineProperty;e.f=r?s:function(t,e,n){if(o(t),e=a(e,!0),o(n),i)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var r=n(4);t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},function(t,e,n){var r=n(37),i=n(12);t.exports=function(t){return r(i(t))}},function(t,e,n){var r=n(3),i=n(6),o=n(15);t.exports=r?function(t,e,n){return i.f(t,e,o(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var r=n(1),i=n(26),o=n(2),a=n(27),s=n(29),u=n(49),c=i("wks"),l=r.Symbol,f=u?l:l&&l.withoutSetter||a;t.exports=function(t){return o(c,t)||(s&&o(l,t)?c[t]=l[t]:c[t]=f("Symbol."+t)),c[t]}},function(t,e,n){var r=n(3),i=n(36),o=n(15),a=n(8),s=n(13),u=n(2),c=n(38),l=Object.getOwnPropertyDescriptor;e.f=r?l:function(t,e){if(t=a(t),e=s(e,!0),c)try{return l(t,e)}catch(t){}if(u(t,e))return o(!i.f.call(t,e),t[e])}},function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){var r=n(4);t.exports=function(t,e){if(!r(t))return t;var n,i;if(e&&"function"==typeof(n=t.toString)&&!r(i=n.call(t)))return i;if("function"==typeof(n=t.valueOf)&&!r(i=n.call(t)))return i;if(!e&&"function"==typeof(n=t.toString)&&!r(i=n.call(t)))return i;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var r=n(12);t.exports=function(t){return Object(r(t))}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var r=n(1),i=n(9),o=n(2),a=n(24),s=n(40),u=n(42),c=u.get,l=u.enforce,f=String(String).split("String");(t.exports=function(t,e,n,s){var u=!!s&&!!s.unsafe,c=!!s&&!!s.enumerable,d=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof e||o(n,"name")||i(n,"name",e),l(n).source=f.join("string"==typeof e?e:"")),t!==r?(u?!d&&t[e]&&(c=!0):delete t[e],c?t[e]=n:i(t,e,n)):c?t[e]=n:a(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&c(this).source||s(this)}))},function(t,e){t.exports={}},function(t,e,n){var r=n(45),i=n(1),o=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,e){return arguments.length<2?o(r[t])||o(i[t]):r[t]&&r[t][e]||i[t]&&i[t][e]}},function(t,e,n){var r=n(46),i=n(28).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,i)}},function(t,e,n){var r=n(22),i=Math.min;t.exports=function(t){return t>0?i(r(t),9007199254740991):0}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e,n){var r=n(97),i=n(98);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[t.i,i,""]]);var o=(r(i,{insert:"head",singleton:!1}),i.locals?i.locals:{});t.exports=o},function(t,e,n){var r=n(1),i=n(9);t.exports=function(t,e){try{i(r,t,e)}catch(n){r[t]=e}return e}},function(t,e,n){var r=n(26),i=n(27),o=r("keys");t.exports=function(t){return o[t]||(o[t]=i(t))}},function(t,e,n){var r=n(43),i=n(41);(t.exports=function(t,e){return i[t]||(i[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.6.4",mode:r?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++n+r).toString(36)}},function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,e,n){var r=n(0);t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},function(t,e,n){var r=n(16);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,e,n){var r=n(46),i=n(28);t.exports=Object.keys||function(t){return r(t,i)}},function(t,e,n){var r=n(71),i=n(37),o=n(14),a=n(21),s=n(52),u=[].push,c=function(t){var e=1==t,n=2==t,c=3==t,l=4==t,f=6==t,d=5==t||f;return function(p,h,v,m){for(var g,y,b=o(p),w=i(b),_=r(h,v,3),x=a(w.length),C=0,S=m||s,k=e?S(p,x):n?S(p,0):void 0;x>C;C++)if((d||C in w)&&(y=_(g=w[C],C,b),t))if(e)k[C]=y;else if(y)switch(t){case 3:return!0;case 5:return g;case 6:return C;case 2:u.call(k,g)}else if(l)return!1;return f?-1:c||l?l:k}};t.exports={forEach:c(0),map:c(1),filter:c(2),some:c(3),every:c(4),find:c(5),findIndex:c(6)}},function(t,e,n){"use strict";var r,i,o=n(87),a=n(88),s=RegExp.prototype.exec,u=String.prototype.replace,c=s,l=(r=/a/,i=/b*/g,s.call(r,"a"),s.call(i,"a"),0!==r.lastIndex||0!==i.lastIndex),f=a.UNSUPPORTED_Y||a.BROKEN_CARET,d=void 0!==/()??/.exec("")[1];(l||d||f)&&(c=function(t){var e,n,r,i,a=this,c=f&&a.sticky,p=o.call(a),h=a.source,v=0,m=t;return c&&(-1===(p=p.replace("y","")).indexOf("g")&&(p+="g"),m=String(t).slice(a.lastIndex),a.lastIndex>0&&(!a.multiline||a.multiline&&"\n"!==t[a.lastIndex-1])&&(h="(?: "+h+")",m=" "+m,v++),n=new RegExp("^(?:"+h+")",p)),d&&(n=new RegExp("^"+h+"$(?!\\s)",p)),l&&(e=a.lastIndex),r=s.call(c?n:a,m),c?r?(r.input=r.input.slice(v),r[0]=r[0].slice(v),r.index=a.lastIndex,a.lastIndex+=r[0].length):a.lastIndex=0:l&&r&&(a.lastIndex=a.global?r.index+r[0].length:e),d&&r&&r.length>1&&u.call(r[0],n,(function(){for(i=1;it?f():!0!==e&&(i=setTimeout(r?d:f,void 0===r?t-c:t)))}return"boolean"!=typeof e&&(r=n,n=e,e=void 0),u.cancel=function(){s(),o=!0},u}n(61),n(73),n(75),n(76),n(78),n(84),n(85),n(86),n(58),n(89),n(94);var i=n(59);function o(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function a(t){for(var e=1;e1&&void 0!==arguments[1]?arguments[1]:"px"):t},c=new(n.n(i).a),l={props:{size:{type:Number,default:70},right:{type:[String,Number],default:50},bottom:{type:[String,Number],default:100},bottomGap:{type:[String,Number],default:0},zIndex:{type:Number,default:1e3},fgColor:{type:String,default:"#ffffff"},bgColor:{type:String,default:"#ffc966"},radius:{type:[String,Number],default:"50%"},weight:{type:String,default:"normal"},rippleBg:{type:String,default:"rgba(255, 255, 255, .5)"},boundary:{type:Number,default:200},maxWidth:{type:Number,default:640},src:{type:String,default:null},alt:{type:String,default:""},hasOutline:{type:Boolean,default:!0},boxShadow:{type:String,default:"1px 1px 2px rgba(0, 0, 0, .3)"},tabindex:{type:Number,default:0}},data:function(){var t=this.hasOutline?{}:{outline:"0 none"};return{enabled:!1,isActive:!1,isRippleActive:!1,mainStyle:a({width:u(this.size),height:u(this.size),right:u(this.right),bottom:"calc(".concat(u(this.bottom)," - ").concat(u(this.bottomGap),")"),zIndex:this.zIndex,color:this.fgColor,backgroundColor:this.bgColor,backgroundImage:this.bgImage(),backgroundSize:"".concat(this.size," auto"),boxShadow:this.boxShadow,opacity:this.opacity,borderRadius:u(this.radius)},t),rippleStyle:{top:u(-this.size),left:u(-this.size),width:"200%",height:"200%",backgroundColor:this.rippleBg},throttleScroll:null,throttleResize:null}},created:function(){this.handleResize(),this.throttleScroll=r(100,this.handleScroll),this.throttleResize=r(100,this.handleResize),window.addEventListener("resize",this.throttleResize),window.addEventListener("scroll",this.throttleScroll)},beforeDestroy:function(){this.throttleResize&&window.removeEventListener("resize",this.throttleResize),this.throttleScroll&&window.removeEventListener("scroll",this.throttleScroll)},methods:{clickHandle:function(t){var e=this;if(!this.isRippleActive){var n=t.target;if(n){var r=n.getBoundingClientRect(),i=t.clientY-r.top,o=t.clientX-r.left;this.rippleStyle.top=u(i-this.size),this.rippleStyle.left=u(o-this.size)}this.isRippleActive=!0,setTimeout((function(){e.isRippleActive=!1}),750)}c.to(0)},handleScroll:function(){this.isActive=window.pageYOffset>this.boundary},handleResize:function(){this.maxWidth>0?this.enabled=!window.matchMedia("(max-width: ".concat(this.maxWidth,"px)")).matches:this.enabled=!0},keyEnter:function(t){13!==t.keyCode&&32!==t.keyCode||c.to(0)},bgImage:function(){return null!==this.src?"none":'url("'.concat((t=this.weight,e=this.fgColor.replace(/^#/,""),"bold"===t?"data:image/svg+xml;charset=utf8, %3Csvg version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 width=%2710px%27 height=%2710px%27%3E %3Cpolygon fill=%27%23"+e+"%27 stroke=%27none%27 points=%278.646,7.354 5,3.707 1.354,7.354 0.646,6.646 5,2.293 9.354,6.646%27 /%3E %3C/svg%3E":"data:image/svg+xml;charset=utf8,%3Csvg version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 width=%2710px%27 height=%2710px%27%3E %3Cpolygon fill=%27%23"+e+"%27 stroke=%27none%27 points=%278.589,6.945 5,3.22 1.413,6.945 1.052,6.598 5,2.499 8.948,6.598%27 /%3E %3C/svg%3E"),'")');var t,e}}};n(96);var f=function(t,e,n,r,i,o,a,s){var u,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),r&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),a?(u=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},c._ssrRegister=u):i&&(u=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),u)if(c.functional){c._injectStyles=u;var l=c.render;c.render=function(t,e){return u.call(e),l(t,e)}}else{var f=c.beforeCreate;c.beforeCreate=f?[].concat(f,u):[u]}return{exports:t,options:c}}(l,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("transition",{attrs:{name:"vue-go-top"}},[t.isActive&&t.enabled?n("div",{staticClass:"vue-go-top",style:t.mainStyle,attrs:{role:"button",tabindex:t.tabindex},on:{click:function(e){return e.preventDefault(),t.clickHandle(e)},keydown:function(e){return e.preventDefault(),t.keyEnter(e)}}},[null!==t.src?n("div",{staticClass:"vue-go-top__icon"},[n("img",{staticClass:"vue-go-top__image",attrs:{src:t.src,alt:t.alt}}),t._v(" "),n("div",{staticClass:"vue-go-top__ripple",style:t.rippleStyle,attrs:{"is-active":t.isRippleActive}})]):n("div",{staticClass:"vue-go-top__content"},[n("div",{staticClass:"vue-go-top__ripple",style:t.rippleStyle,attrs:{"is-active":t.isRippleActive}}),t._v(" "),t._t("default")],2)]):t._e()])}),[],!1,null,"0c20a6ee",null);e.a=f.exports},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){"use strict";var r={}.propertyIsEnumerable,i=Object.getOwnPropertyDescriptor,o=i&&!r.call({1:2},1);e.f=o?function(t){var e=i(this,t);return!!e&&e.enumerable}:r},function(t,e,n){var r=n(0),i=n(16),o="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==i(t)?o.call(t,""):Object(t)}:Object},function(t,e,n){var r=n(3),i=n(0),o=n(39);t.exports=!r&&!i((function(){return 7!=Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}))},function(t,e,n){var r=n(1),i=n(4),o=r.document,a=i(o)&&i(o.createElement);t.exports=function(t){return a?o.createElement(t):{}}},function(t,e,n){var r=n(41),i=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return i.call(t)}),t.exports=r.inspectSource},function(t,e,n){var r=n(1),i=n(24),o=r["__core-js_shared__"]||i("__core-js_shared__",{});t.exports=o},function(t,e,n){var r,i,o,a=n(62),s=n(1),u=n(4),c=n(9),l=n(2),f=n(25),d=n(18),p=s.WeakMap;if(a){var h=new p,v=h.get,m=h.has,g=h.set;r=function(t,e){return g.call(h,t,e),e},i=function(t){return v.call(h,t)||{}},o=function(t){return m.call(h,t)}}else{var y=f("state");d[y]=!0,r=function(t,e){return c(t,y,e),e},i=function(t){return l(t,y)?t[y]:{}},o=function(t){return l(t,y)}}t.exports={set:r,get:i,has:o,enforce:function(t){return o(t)?i(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!u(e)||(n=i(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,e){t.exports=!1},function(t,e,n){var r=n(19),i=n(20),o=n(47),a=n(7);t.exports=r("Reflect","ownKeys")||function(t){var e=i.f(a(t)),n=o.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(1);t.exports=r},function(t,e,n){var r=n(2),i=n(8),o=n(64).indexOf,a=n(18);t.exports=function(t,e){var n,s=i(t),u=0,c=[];for(n in s)!r(a,n)&&r(s,n)&&c.push(n);for(;e.length>u;)r(s,n=e[u++])&&(~o(c,n)||c.push(n));return c}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var r=n(0),i=/#|\.prototype\./,o=function(t,e){var n=s[a(t)];return n==c||n!=u&&("function"==typeof e?r(e):!!e)},a=o.normalize=function(t){return String(t).replace(i,".").toLowerCase()},s=o.data={},u=o.NATIVE="N",c=o.POLYFILL="P";t.exports=o},function(t,e,n){var r=n(29);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,e,n){var r,i=n(7),o=n(66),a=n(28),s=n(18),u=n(67),c=n(39),l=n(25)("IE_PROTO"),f=function(){},d=function(t){return" -@endpush \ No newline at end of file +@endpush From 170ee2f0cd6dbfb0086cdf71d353165a82bd2612 Mon Sep 17 00:00:00 2001 From: Alex <93376818+sashashura@users.noreply.github.com> Date: Mon, 29 Aug 2022 13:20:47 +0100 Subject: [PATCH 05/10] Update ci.yml Signed-off-by: sashashura <93376818+sashashura@users.noreply.github.com> --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95a036bd5..3759feba0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,9 @@ name: CI on: [push, pull_request] +permissions: + contents: read + jobs: tests: runs-on: ${{ matrix.operating-system }} From e2c76b4ca9300e5c02deeed23b3c6227c8fdbda2 Mon Sep 17 00:00:00 2001 From: sanjeev Date: Mon, 29 Aug 2022 18:28:42 +0530 Subject: [PATCH 06/10] checkbox disabled after address save one time #6312 --- packages/Webkul/Shop/publishable/assets/js/shop.js | 2 +- .../Webkul/Shop/publishable/assets/js/shop.js.LICENSE.txt | 4 ++-- packages/Webkul/Shop/publishable/assets/mix-manifest.json | 2 +- .../Shop/src/Resources/views/checkout/onepage.blade.php | 6 ++++++ .../Webkul/Velocity/publishable/assets/js/components.js | 2 +- .../publishable/assets/js/components.js.LICENSE.txt | 2 +- .../Webkul/Velocity/publishable/assets/mix-manifest.json | 4 ++-- .../src/Resources/views/shop/checkout/onepage.blade.php | 6 ++++++ 8 files changed, 20 insertions(+), 8 deletions(-) diff --git a/packages/Webkul/Shop/publishable/assets/js/shop.js b/packages/Webkul/Shop/publishable/assets/js/shop.js index 3ee604412..cb49ebd4a 100755 --- a/packages/Webkul/Shop/publishable/assets/js/shop.js +++ b/packages/Webkul/Shop/publishable/assets/js/shop.js @@ -1,2 +1,2 @@ /*! For license information please see shop.js.LICENSE.txt */ -!function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(r,i,function(e){return t[e]}.bind(null,i));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/",n(n.s=0)}({"/XoU":function(t,e,n){t.exports=function(){"use strict";var t,e={name:"zh_CN",messages:{_default:function(t){return t+"的值无效"},after:function(t,e){var n=e[0];return t+"必须在"+n+"之后"+(e[1]?"或等于"+n:"")},alpha:function(t){return t+"只能包含字母字符"},alpha_dash:function(t){return t+"能够包含字母数字字符、破折号和下划线"},alpha_num:function(t){return t+"只能包含字母数字字符"},alpha_spaces:function(t){return t+"只能包含字母字符和空格"},before:function(t,e){var n=e[0];return t+"必须在"+n+"之前"+(e[1]?"或等于"+n:"")},between:function(t,e){return t+"必须在"+e[0]+"与"+e[1]+"之间"},confirmed:function(t,e){return t+"不能和"+e[0]+"匹配"},credit_card:function(t){return t+"的格式错误"},date_between:function(t,e){return t+"必须在"+e[0]+"和"+e[1]+"之间"},date_format:function(t,e){return t+"必须符合"+e[0]+"格式"},decimal:function(t,e){void 0===e&&(e=[]);var n=e[0];return void 0===n&&(n="*"),t+"必须是数字,且能够保留"+("*"===n?"":n)+"位小数"},digits:function(t,e){return t+"必须是数字,且精确到"+e[0]+"位数"},dimensions:function(t,e){return t+"必须在"+e[0]+"像素与"+e[1]+"像素之间"},email:function(t){return t+"不是一个有效的邮箱"},excluded:function(t){return t+"不是一个有效值"},ext:function(t){return t+"不是一个有效的文件"},image:function(t){return t+"不是一张有效的图片"},included:function(t){return t+"不是一个有效值"},integer:function(t){return t+"必须是整数"},ip:function(t){return t+"不是一个有效的地址"},length:function(t,e){var n=e[0],r=e[1];return r?t+"长度必须在"+n+"到"+r+"之间":t+"长度必须为"+n},max:function(t,e){return t+"不能超过"+e[0]+"个字符"},max_value:function(t,e){return t+"必须小于或等于"+e[0]},mimes:function(t){return t+"不是一个有效的文件类型"},min:function(t,e){return t+"必须至少有"+e[0]+"个字符"},min_value:function(t,e){return t+"必须大于或等于"+e[0]},numeric:function(t){return t+"只能包含数字字符"},regex:function(t){return t+"格式无效"},required:function(t){return t+"是必须的"},size:function(t,e){return t+"必须小于"+function(t){var e=1024,n=0==(t=Number(t)*e)?0:Math.floor(Math.log(t)/Math.log(e));return 1*(t/Math.pow(e,n)).toFixed(2)+" "+["Byte","KB","MB","GB","TB","PB","EB","ZB","YB"][n]}(e[0])},url:function(t){return t+"不是一个有效的url"}},attributes:{}};return"undefined"!=typeof VeeValidate&&VeeValidate.Validator.localize(((t={})[e.name]=e,t)),e}()},0:function(t,e,n){n("uPOf"),t.exports=n("w/dW")},"2SVd":function(t,e,n){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},"5YZL":function(t,e,n){t.exports=function(){"use strict";var t,e={name:"hi",messages:{_default:function(t){return"यह "+t+" मान मान्य नहीं है"},after:function(t,e){return"यह "+t+" का "+e[0]+" के बाद होना आवश्यक है "},alpha:function(t){return"यह "+t+" फील्ड में केवल वर्णानुक्रमक वर्ण हो सकते हैं"},alpha_dash:function(t){return"यह "+t+" फील्ड में अल्फ़ान्यूमेरिक वर्ण और साथ ही डैश और अंडरस्कोर हो सकते हैं"},alpha_num:function(t){return"यह "+t+" फील्ड में केवल अल्फा-न्यूमेरिक वर्ण वर्ण शामिल हैं"},alpha_spaces:function(t){return"यह "+t+" फील्ड में केवल अल्फा-न्यूमेरिक वर्ण वर्ण शामिल हैं"},before:function(t,e){return"यह "+t+" का "+e[0]+" के पहले होना आवश्यक है "},between:function(t,e){return"यह "+t+" फील्ड का "+e[0]+" और "+e[1]+" के बीच होना आवश्यक है "},confirmed:function(t){return"यह "+t+" पुष्टि मेल नहीं खाती"},credit_card:function(t){return"यह "+t+" फील्ड अमान्य है"},date_between:function(t,e){return"यह "+t+" का "+e[0]+" और "+e[1]+" के बीच होना आवश्यक है "},date_format:function(t,e){return"यह "+t+" का प्रारूप "+e[0]+" में होना आवश्यक है "},decimal:function(t,e){void 0===e&&(e=[]);var n=e[0];return void 0===n&&(n="*"),"यह "+t+" फ़ील्ड का संख्यात्मक होना आवश्यक है और इसमें "+(n&&"*"!==n?n:"")+" दशमलव बिंदु शामिल हो सकते हैं "},digits:function(t,e){return"यह "+t+" फ़ील्ड का संख्यात्मक होना आवश्यक है और इसे पूरी तरह से "+e[0]+" अंक का होना चाहिए"},dimensions:function(t,e){return"यह "+t+" फ़ील्ड की "+e[0]+" पिक्सेल बाई "+e[1]+" पिक्सेल का होना आवश्यक है"},email:function(t){return"यह "+t+" फ़ील्ड एक मान्य ईमेल होना चाहिए"},excluded:function(t){return"यह "+t+" फ़ील्ड का एक मान्य मूल्य होना चाहिए"},ext:function(t){return"यह "+t+" फ़ील्ड एक मान्य फ़ाइल होनी चाहिए"},image:function(t){return"यह "+t+" फ़ील्ड एक छवि होनी चाहिए"},included:function(t){return"यह "+t+" फ़ील्ड एक मान्य मूल्य का होना चाहिए"},integer:function(t){return"यह "+t+" फ़ील्ड एक पूर्णांकका होना चाहिए"},ip:function(t){return"यह "+t+" फ़ील्ड एक मान्य आईपी पते का होना चाहिए"},ip_or_fqdn:function(t){return"यह "+t+" फ़ील्ड एक मान्य आईपी पते या FQDN होना चाहिए"},length:function(t,e){var n=e[0],r=e[1];return r?"यह "+t+" की लंबाई "+n+" और "+r+" के बीच होनी चाहिए":"यह "+t+" की लंबाई "+n+" की होनी चाहिए"},max:function(t,e){return"यह "+t+" फ़ील्ड "+e[0]+" वर्णों से अधिक नहीं हो सकती है"},max_value:function(t,e){return"यह "+t+" फ़ील्ड "+e[0]+" या उससे कम का होना चाहिए"},mimes:function(t){return"यह "+t+" फ़ील्ड एक मान्य फ़ाइल प्रकार का होना चाहिए"},min:function(t,e){return"यह "+t+" फ़ील्ड कम से कम "+e[0]+" वर्ण का होना चाहिए"},min_value:function(t,e){return"यह "+t+" फ़ील्ड "+e[0]+" या अधिक का होना चाहिए"},numeric:function(t){return"यह "+t+" फ़ील्ड में केवल संख्यात्मक वर्ण हो सकते हैं"},regex:function(t){return"यह "+t+" फ़ील्ड प्रारूप अमान्य है"},required:function(t){return"यह "+t+" फ़ील्ड की आवश्यकता है"},required_if:function(t,e){return"यह "+t+" फ़ील्ड की आवश्यकता तब होती है जब "+e[0]+" फ़ील्ड का यह मान होता है"},size:function(t,e){return"यह "+t+" फ़ील्ड का आकार "+function(t){var e=1024,n=0==(t=Number(t)*e)?0:Math.floor(Math.log(t)/Math.log(e));return 1*(t/Math.pow(e,n)).toFixed(2)+" "+["Byte","KB","MB","GB","TB","PB","EB","ZB","YB"][n]}(e[0])+" से कम होना चाहिए"},url:function(t){return"यह "+t+"फ़ील्ड एक मान्य URL नहीं है."}},attributes:{}};return"undefined"!=typeof VeeValidate&&VeeValidate.Validator.localize(((t={})[e.name]=e,t)),e}()},"5oMp":function(t,e,n){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},"8oxB":function(t,e){var n,r,i=t.exports={};function o(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(t){if(n===setTimeout)return setTimeout(t,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:o}catch(t){n=o}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(t){r=a}}();var u,c=[],l=!1,f=-1;function d(){l&&u&&(l=!1,u.length?c=u.concat(c):f=-1,c.length&&p())}function p(){if(!l){var t=s(d);l=!0;for(var e=c.length;e;){for(u=c,c=[];++f1)for(var n=1;n3?u.length%3:0;return s+(h?u.substr(0,h)+o.thousand:"")+u.substr(h).replace(/(\d{3})(?=\d)/g,"$1"+o.thousand)+(a?o.decimal+m(Math.abs(t),a).split(".")[1]:"")},y=i.formatMoney=function(t,e,n,r,o,a){if(c(t))return d(t,(function(t){return y(t,e,n,r,o,a)}));t=v(t);var s=f(l(e)?e:{symbol:e,precision:n,thousand:r,decimal:o,format:a},i.settings.currency),u=h(s.format);return(t>0?u.pos:t<0?u.neg:u.zero).replace("%s",s.symbol).replace("%v",g(Math.abs(t),p(s.precision),s.thousand,s.decimal))};i.formatColumn=function(t,e,n,r,o,a){if(!t)return[];var s=f(l(e)?e:{symbol:e,precision:n,thousand:r,decimal:o,format:a},i.settings.currency),m=h(s.format),y=m.pos.indexOf("%s")0?m.pos:t<0?m.neg:m.zero).replace("%s",s.symbol).replace("%v",g(Math.abs(t),p(s.precision),s.thousand,s.decimal));return n.length>b&&(b=n.length),n}));return d(w,(function(t,e){return u(t)&&t.length0&&e-1 in t)}T.fn=T.prototype={jquery:"3.6.0",constructor:T,length:0,toArray:function(){return s.call(this)},get:function(t){return null==t?s.call(this):t<0?this[t+this.length]:this[t]},pushStack:function(t){var e=T.merge(this.constructor(),t);return e.prevObject=this,e},each:function(t){return T.each(this,t)},map:function(t){return this.pushStack(T.map(this,(function(e,n){return t.call(e,n,e)})))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(T.grep(this,(function(t,e){return(e+1)%2})))},odd:function(){return this.pushStack(T.grep(this,(function(t,e){return e%2})))},eq:function(t){var e=this.length,n=+t+(t<0?e:0);return this.pushStack(n>=0&&n+~]|"+I+")"+I+"*"),U=new RegExp(I+"|>"),V=new RegExp(W),Z=new RegExp("^"+M+"$"),Y={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+R),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+I+"*(even|odd|(([+-]|)(\\d*)n|)"+I+"*(?:([+-]|)"+I+"*(\\d+)|))"+I+"*\\)|)","i"),bool:new RegExp("^(?:"+N+")$","i"),needsContext:new RegExp("^"+I+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+I+"*((?:-\\d)?\\d*)"+I+"*\\)|)(?=[^-]|$)","i")},X=/HTML$/i,G=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,Q=/^[^{]+\{\s*\[native \w/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,tt=/[+~]/,et=new RegExp("\\\\[\\da-fA-F]{1,6}"+I+"?|\\\\([^\\r\\n\\f])","g"),nt=function(t,e){var n="0x"+t.slice(1)-65536;return e||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},rt=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,it=function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t},ot=function(){d()},at=wt((function(t){return!0===t.disabled&&"fieldset"===t.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{D.apply(E=j.call(x.childNodes),x.childNodes),E[x.childNodes.length].nodeType}catch(t){D={apply:E.length?function(t,e){L.apply(t,j.call(e))}:function(t,e){for(var n=t.length,r=0;t[n++]=e[r++];);t.length=n-1}}}function st(t,e,r,i){var o,s,c,l,f,h,g,y=e&&e.ownerDocument,x=e?e.nodeType:9;if(r=r||[],"string"!=typeof t||!t||1!==x&&9!==x&&11!==x)return r;if(!i&&(d(e),e=e||p,v)){if(11!==x&&(f=J.exec(t)))if(o=f[1]){if(9===x){if(!(c=e.getElementById(o)))return r;if(c.id===o)return r.push(c),r}else if(y&&(c=y.getElementById(o))&&b(e,c)&&c.id===o)return r.push(c),r}else{if(f[2])return D.apply(r,e.getElementsByTagName(t)),r;if((o=f[3])&&n.getElementsByClassName&&e.getElementsByClassName)return D.apply(r,e.getElementsByClassName(o)),r}if(n.qsa&&!O[t+" "]&&(!m||!m.test(t))&&(1!==x||"object"!==e.nodeName.toLowerCase())){if(g=t,y=e,1===x&&(U.test(t)||q.test(t))){for((y=tt.test(t)&>(e.parentNode)||e)===e&&n.scope||((l=e.getAttribute("id"))?l=l.replace(rt,it):e.setAttribute("id",l=w)),s=(h=a(t)).length;s--;)h[s]=(l?"#"+l:":scope")+" "+bt(h[s]);g=h.join(",")}try{return D.apply(r,y.querySelectorAll(g)),r}catch(e){O(t,!0)}finally{l===w&&e.removeAttribute("id")}}}return u(t.replace(F,"$1"),e,r,i)}function ut(){var t=[];return function e(n,i){return t.push(n+" ")>r.cacheLength&&delete e[t.shift()],e[n+" "]=i}}function ct(t){return t[w]=!0,t}function lt(t){var e=p.createElement("fieldset");try{return!!t(e)}catch(t){return!1}finally{e.parentNode&&e.parentNode.removeChild(e),e=null}}function ft(t,e){for(var n=t.split("|"),i=n.length;i--;)r.attrHandle[n[i]]=e}function dt(t,e){var n=e&&t,r=n&&1===t.nodeType&&1===e.nodeType&&t.sourceIndex-e.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===e)return-1;return t?1:-1}function pt(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function ht(t){return function(e){var n=e.nodeName.toLowerCase();return("input"===n||"button"===n)&&e.type===t}}function vt(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&at(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function mt(t){return ct((function(e){return e=+e,ct((function(n,r){for(var i,o=t([],n.length,e),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function gt(t){return t&&void 0!==t.getElementsByTagName&&t}for(e in n=st.support={},o=st.isXML=function(t){var e=t&&t.namespaceURI,n=t&&(t.ownerDocument||t).documentElement;return!X.test(e||n&&n.nodeName||"HTML")},d=st.setDocument=function(t){var e,i,a=t?t.ownerDocument||t:x;return a!=p&&9===a.nodeType&&a.documentElement?(h=(p=a).documentElement,v=!o(p),x!=p&&(i=p.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",ot,!1):i.attachEvent&&i.attachEvent("onunload",ot)),n.scope=lt((function(t){return h.appendChild(t).appendChild(p.createElement("div")),void 0!==t.querySelectorAll&&!t.querySelectorAll(":scope fieldset div").length})),n.attributes=lt((function(t){return t.className="i",!t.getAttribute("className")})),n.getElementsByTagName=lt((function(t){return t.appendChild(p.createComment("")),!t.getElementsByTagName("*").length})),n.getElementsByClassName=Q.test(p.getElementsByClassName),n.getById=lt((function(t){return h.appendChild(t).id=w,!p.getElementsByName||!p.getElementsByName(w).length})),n.getById?(r.filter.ID=function(t){var e=t.replace(et,nt);return function(t){return t.getAttribute("id")===e}},r.find.ID=function(t,e){if(void 0!==e.getElementById&&v){var n=e.getElementById(t);return n?[n]:[]}}):(r.filter.ID=function(t){var e=t.replace(et,nt);return function(t){var n=void 0!==t.getAttributeNode&&t.getAttributeNode("id");return n&&n.value===e}},r.find.ID=function(t,e){if(void 0!==e.getElementById&&v){var n,r,i,o=e.getElementById(t);if(o){if((n=o.getAttributeNode("id"))&&n.value===t)return[o];for(i=e.getElementsByName(t),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===t)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(t,e){return void 0!==e.getElementsByTagName?e.getElementsByTagName(t):n.qsa?e.querySelectorAll(t):void 0}:function(t,e){var n,r=[],i=0,o=e.getElementsByTagName(t);if("*"===t){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(t,e){if(void 0!==e.getElementsByClassName&&v)return e.getElementsByClassName(t)},g=[],m=[],(n.qsa=Q.test(p.querySelectorAll))&&(lt((function(t){var e;h.appendChild(t).innerHTML="",t.querySelectorAll("[msallowcapture^='']").length&&m.push("[*^$]="+I+"*(?:''|\"\")"),t.querySelectorAll("[selected]").length||m.push("\\["+I+"*(?:value|"+N+")"),t.querySelectorAll("[id~="+w+"-]").length||m.push("~="),(e=p.createElement("input")).setAttribute("name",""),t.appendChild(e),t.querySelectorAll("[name='']").length||m.push("\\["+I+"*name"+I+"*="+I+"*(?:''|\"\")"),t.querySelectorAll(":checked").length||m.push(":checked"),t.querySelectorAll("a#"+w+"+*").length||m.push(".#.+[+~]"),t.querySelectorAll("\\\f"),m.push("[\\r\\n\\f]")})),lt((function(t){t.innerHTML="";var e=p.createElement("input");e.setAttribute("type","hidden"),t.appendChild(e).setAttribute("name","D"),t.querySelectorAll("[name=d]").length&&m.push("name"+I+"*[*^$|!~]?="),2!==t.querySelectorAll(":enabled").length&&m.push(":enabled",":disabled"),h.appendChild(t).disabled=!0,2!==t.querySelectorAll(":disabled").length&&m.push(":enabled",":disabled"),t.querySelectorAll("*,:x"),m.push(",.*:")}))),(n.matchesSelector=Q.test(y=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&<((function(t){n.disconnectedMatch=y.call(t,"*"),y.call(t,"[s!='']:x"),g.push("!=",W)})),m=m.length&&new RegExp(m.join("|")),g=g.length&&new RegExp(g.join("|")),e=Q.test(h.compareDocumentPosition),b=e||Q.test(h.contains)?function(t,e){var n=9===t.nodeType?t.documentElement:t,r=e&&e.parentNode;return t===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):t.compareDocumentPosition&&16&t.compareDocumentPosition(r)))}:function(t,e){if(e)for(;e=e.parentNode;)if(e===t)return!0;return!1},A=e?function(t,e){if(t===e)return f=!0,0;var r=!t.compareDocumentPosition-!e.compareDocumentPosition;return r||(1&(r=(t.ownerDocument||t)==(e.ownerDocument||e)?t.compareDocumentPosition(e):1)||!n.sortDetached&&e.compareDocumentPosition(t)===r?t==p||t.ownerDocument==x&&b(x,t)?-1:e==p||e.ownerDocument==x&&b(x,e)?1:l?P(l,t)-P(l,e):0:4&r?-1:1)}:function(t,e){if(t===e)return f=!0,0;var n,r=0,i=t.parentNode,o=e.parentNode,a=[t],s=[e];if(!i||!o)return t==p?-1:e==p?1:i?-1:o?1:l?P(l,t)-P(l,e):0;if(i===o)return dt(t,e);for(n=t;n=n.parentNode;)a.unshift(n);for(n=e;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?dt(a[r],s[r]):a[r]==x?-1:s[r]==x?1:0},p):p},st.matches=function(t,e){return st(t,null,null,e)},st.matchesSelector=function(t,e){if(d(t),n.matchesSelector&&v&&!O[e+" "]&&(!g||!g.test(e))&&(!m||!m.test(e)))try{var r=y.call(t,e);if(r||n.disconnectedMatch||t.document&&11!==t.document.nodeType)return r}catch(t){O(e,!0)}return st(e,p,null,[t]).length>0},st.contains=function(t,e){return(t.ownerDocument||t)!=p&&d(t),b(t,e)},st.attr=function(t,e){(t.ownerDocument||t)!=p&&d(t);var i=r.attrHandle[e.toLowerCase()],o=i&&z.call(r.attrHandle,e.toLowerCase())?i(t,e,!v):void 0;return void 0!==o?o:n.attributes||!v?t.getAttribute(e):(o=t.getAttributeNode(e))&&o.specified?o.value:null},st.escape=function(t){return(t+"").replace(rt,it)},st.error=function(t){throw new Error("Syntax error, unrecognized expression: "+t)},st.uniqueSort=function(t){var e,r=[],i=0,o=0;if(f=!n.detectDuplicates,l=!n.sortStable&&t.slice(0),t.sort(A),f){for(;e=t[o++];)e===t[o]&&(i=r.push(o));for(;i--;)t.splice(r[i],1)}return l=null,t},i=st.getText=function(t){var e,n="",r=0,o=t.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof t.textContent)return t.textContent;for(t=t.firstChild;t;t=t.nextSibling)n+=i(t)}else if(3===o||4===o)return t.nodeValue}else for(;e=t[r++];)n+=i(e);return n},(r=st.selectors={cacheLength:50,createPseudo:ct,match:Y,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(t){return t[1]=t[1].replace(et,nt),t[3]=(t[3]||t[4]||t[5]||"").replace(et,nt),"~="===t[2]&&(t[3]=" "+t[3]+" "),t.slice(0,4)},CHILD:function(t){return t[1]=t[1].toLowerCase(),"nth"===t[1].slice(0,3)?(t[3]||st.error(t[0]),t[4]=+(t[4]?t[5]+(t[6]||1):2*("even"===t[3]||"odd"===t[3])),t[5]=+(t[7]+t[8]||"odd"===t[3])):t[3]&&st.error(t[0]),t},PSEUDO:function(t){var e,n=!t[6]&&t[2];return Y.CHILD.test(t[0])?null:(t[3]?t[2]=t[4]||t[5]||"":n&&V.test(n)&&(e=a(n,!0))&&(e=n.indexOf(")",n.length-e)-n.length)&&(t[0]=t[0].slice(0,e),t[2]=n.slice(0,e)),t.slice(0,3))}},filter:{TAG:function(t){var e=t.replace(et,nt).toLowerCase();return"*"===t?function(){return!0}:function(t){return t.nodeName&&t.nodeName.toLowerCase()===e}},CLASS:function(t){var e=S[t+" "];return e||(e=new RegExp("(^|"+I+")"+t+"("+I+"|$)"))&&S(t,(function(t){return e.test("string"==typeof t.className&&t.className||void 0!==t.getAttribute&&t.getAttribute("class")||"")}))},ATTR:function(t,e,n){return function(r){var i=st.attr(r,t);return null==i?"!="===e:!e||(i+="","="===e?i===n:"!="===e?i!==n:"^="===e?n&&0===i.indexOf(n):"*="===e?n&&i.indexOf(n)>-1:"$="===e?n&&i.slice(-n.length)===n:"~="===e?(" "+i.replace(H," ")+" ").indexOf(n)>-1:"|="===e&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(t,e,n,r,i){var o="nth"!==t.slice(0,3),a="last"!==t.slice(-4),s="of-type"===e;return 1===r&&0===i?function(t){return!!t.parentNode}:function(e,n,u){var c,l,f,d,p,h,v=o!==a?"nextSibling":"previousSibling",m=e.parentNode,g=s&&e.nodeName.toLowerCase(),y=!u&&!s,b=!1;if(m){if(o){for(;v;){for(d=e;d=d[v];)if(s?d.nodeName.toLowerCase()===g:1===d.nodeType)return!1;h=v="only"===t&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&y){for(b=(p=(c=(l=(f=(d=m)[w]||(d[w]={}))[d.uniqueID]||(f[d.uniqueID]={}))[t]||[])[0]===_&&c[1])&&c[2],d=p&&m.childNodes[p];d=++p&&d&&d[v]||(b=p=0)||h.pop();)if(1===d.nodeType&&++b&&d===e){l[t]=[_,p,b];break}}else if(y&&(b=p=(c=(l=(f=(d=e)[w]||(d[w]={}))[d.uniqueID]||(f[d.uniqueID]={}))[t]||[])[0]===_&&c[1]),!1===b)for(;(d=++p&&d&&d[v]||(b=p=0)||h.pop())&&((s?d.nodeName.toLowerCase()!==g:1!==d.nodeType)||!++b||(y&&((l=(f=d[w]||(d[w]={}))[d.uniqueID]||(f[d.uniqueID]={}))[t]=[_,b]),d!==e)););return(b-=i)===r||b%r==0&&b/r>=0}}},PSEUDO:function(t,e){var n,i=r.pseudos[t]||r.setFilters[t.toLowerCase()]||st.error("unsupported pseudo: "+t);return i[w]?i(e):i.length>1?(n=[t,t,"",e],r.setFilters.hasOwnProperty(t.toLowerCase())?ct((function(t,n){for(var r,o=i(t,e),a=o.length;a--;)t[r=P(t,o[a])]=!(n[r]=o[a])})):function(t){return i(t,0,n)}):i}},pseudos:{not:ct((function(t){var e=[],n=[],r=s(t.replace(F,"$1"));return r[w]?ct((function(t,e,n,i){for(var o,a=r(t,null,i,[]),s=t.length;s--;)(o=a[s])&&(t[s]=!(e[s]=o))})):function(t,i,o){return e[0]=t,r(e,null,o,n),e[0]=null,!n.pop()}})),has:ct((function(t){return function(e){return st(t,e).length>0}})),contains:ct((function(t){return t=t.replace(et,nt),function(e){return(e.textContent||i(e)).indexOf(t)>-1}})),lang:ct((function(t){return Z.test(t||"")||st.error("unsupported lang: "+t),t=t.replace(et,nt).toLowerCase(),function(e){var n;do{if(n=v?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(n=n.toLowerCase())===t||0===n.indexOf(t+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}})),target:function(e){var n=t.location&&t.location.hash;return n&&n.slice(1)===e.id},root:function(t){return t===h},focus:function(t){return t===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(t.type||t.href||~t.tabIndex)},enabled:vt(!1),disabled:vt(!0),checked:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&!!t.checked||"option"===e&&!!t.selected},selected:function(t){return t.parentNode&&t.parentNode.selectedIndex,!0===t.selected},empty:function(t){for(t=t.firstChild;t;t=t.nextSibling)if(t.nodeType<6)return!1;return!0},parent:function(t){return!r.pseudos.empty(t)},header:function(t){return K.test(t.nodeName)},input:function(t){return G.test(t.nodeName)},button:function(t){var e=t.nodeName.toLowerCase();return"input"===e&&"button"===t.type||"button"===e},text:function(t){var e;return"input"===t.nodeName.toLowerCase()&&"text"===t.type&&(null==(e=t.getAttribute("type"))||"text"===e.toLowerCase())},first:mt((function(){return[0]})),last:mt((function(t,e){return[e-1]})),eq:mt((function(t,e,n){return[n<0?n+e:n]})),even:mt((function(t,e){for(var n=0;ne?e:n;--r>=0;)t.push(r);return t})),gt:mt((function(t,e,n){for(var r=n<0?n+e:n;++r1?function(e,n,r){for(var i=t.length;i--;)if(!t[i](e,n,r))return!1;return!0}:t[0]}function _t(t,e,n,r,i){for(var o,a=[],s=0,u=t.length,c=null!=e;s-1&&(o[c]=!(a[c]=f))}}else g=_t(g===a?g.splice(h,g.length):g),i?i(null,a,g,u):D.apply(a,g)}))}function St(t){for(var e,n,i,o=t.length,a=r.relative[t[0].type],s=a||r.relative[" "],u=a?1:0,l=wt((function(t){return t===e}),s,!0),f=wt((function(t){return P(e,t)>-1}),s,!0),d=[function(t,n,r){var i=!a&&(r||n!==c)||((e=n).nodeType?l(t,n,r):f(t,n,r));return e=null,i}];u1&&xt(d),u>1&&bt(t.slice(0,u-1).concat({value:" "===t[u-2].type?"*":""})).replace(F,"$1"),n,u0,i=t.length>0,o=function(o,a,s,u,l){var f,h,m,g=0,y="0",b=o&&[],w=[],x=c,T=o||i&&r.find.TAG("*",l),S=_+=null==x?1:Math.random()||.1,C=T.length;for(l&&(c=a==p||a||l);y!==C&&null!=(f=T[y]);y++){if(i&&f){for(h=0,a||f.ownerDocument==p||(d(f),s=!v);m=t[h++];)if(m(f,a||p,s)){u.push(f);break}l&&(_=S)}n&&((f=!m&&f)&&g--,o&&b.push(f))}if(g+=y,n&&y!==g){for(h=0;m=e[h++];)m(b,w,a,s);if(o){if(g>0)for(;y--;)b[y]||w[y]||(w[y]=$.call(u));w=_t(w)}D.apply(u,w),l&&!o&&w.length>0&&g+e.length>1&&st.uniqueSort(u)}return l&&(_=S,c=x),b};return n?ct(o):o}(o,i))).selector=t}return s},u=st.select=function(t,e,n,i){var o,u,c,l,f,d="function"==typeof t&&t,p=!i&&a(t=d.selector||t);if(n=n||[],1===p.length){if((u=p[0]=p[0].slice(0)).length>2&&"ID"===(c=u[0]).type&&9===e.nodeType&&v&&r.relative[u[1].type]){if(!(e=(r.find.ID(c.matches[0].replace(et,nt),e)||[])[0]))return n;d&&(e=e.parentNode),t=t.slice(u.shift().value.length)}for(o=Y.needsContext.test(t)?0:u.length;o--&&(c=u[o],!r.relative[l=c.type]);)if((f=r.find[l])&&(i=f(c.matches[0].replace(et,nt),tt.test(u[0].type)&>(e.parentNode)||e))){if(u.splice(o,1),!(t=i.length&&bt(u)))return D.apply(n,i),n;break}}return(d||s(t,p))(i,e,!v,n,!e||tt.test(t)&>(e.parentNode)||e),n},n.sortStable=w.split("").sort(A).join("")===w,n.detectDuplicates=!!f,d(),n.sortDetached=lt((function(t){return 1&t.compareDocumentPosition(p.createElement("fieldset"))})),lt((function(t){return t.innerHTML="","#"===t.firstChild.getAttribute("href")}))||ft("type|href|height|width",(function(t,e,n){if(!n)return t.getAttribute(e,"type"===e.toLowerCase()?1:2)})),n.attributes&<((function(t){return t.innerHTML="",t.firstChild.setAttribute("value",""),""===t.firstChild.getAttribute("value")}))||ft("value",(function(t,e,n){if(!n&&"input"===t.nodeName.toLowerCase())return t.defaultValue})),lt((function(t){return null==t.getAttribute("disabled")}))||ft(N,(function(t,e,n){var r;if(!n)return!0===t[e]?e.toLowerCase():(r=t.getAttributeNode(e))&&r.specified?r.value:null})),st}(n);T.find=C,T.expr=C.selectors,T.expr[":"]=T.expr.pseudos,T.uniqueSort=T.unique=C.uniqueSort,T.text=C.getText,T.isXMLDoc=C.isXML,T.contains=C.contains,T.escapeSelector=C.escape;var k=function(t,e,n){for(var r=[],i=void 0!==n;(t=t[e])&&9!==t.nodeType;)if(1===t.nodeType){if(i&&T(t).is(n))break;r.push(t)}return r},O=function(t,e){for(var n=[];t;t=t.nextSibling)1===t.nodeType&&t!==e&&n.push(t);return n},A=T.expr.match.needsContext;function z(t,e){return t.nodeName&&t.nodeName.toLowerCase()===e.toLowerCase()}var E=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function $(t,e,n){return g(e)?T.grep(t,(function(t,r){return!!e.call(t,r,t)!==n})):e.nodeType?T.grep(t,(function(t){return t===e!==n})):"string"!=typeof e?T.grep(t,(function(t){return l.call(e,t)>-1!==n})):T.filter(e,t,n)}T.filter=function(t,e,n){var r=e[0];return n&&(t=":not("+t+")"),1===e.length&&1===r.nodeType?T.find.matchesSelector(r,t)?[r]:[]:T.find.matches(t,T.grep(e,(function(t){return 1===t.nodeType})))},T.fn.extend({find:function(t){var e,n,r=this.length,i=this;if("string"!=typeof t)return this.pushStack(T(t).filter((function(){for(e=0;e1?T.uniqueSort(n):n},filter:function(t){return this.pushStack($(this,t||[],!1))},not:function(t){return this.pushStack($(this,t||[],!0))},is:function(t){return!!$(this,"string"==typeof t&&A.test(t)?T(t):t||[],!1).length}});var L,D=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(T.fn.init=function(t,e,n){var r,i;if(!t)return this;if(n=n||L,"string"==typeof t){if(!(r="<"===t[0]&&">"===t[t.length-1]&&t.length>=3?[null,t,null]:D.exec(t))||!r[1]&&e)return!e||e.jquery?(e||n).find(t):this.constructor(e).find(t);if(r[1]){if(e=e instanceof T?e[0]:e,T.merge(this,T.parseHTML(r[1],e&&e.nodeType?e.ownerDocument||e:b,!0)),E.test(r[1])&&T.isPlainObject(e))for(r in e)g(this[r])?this[r](e[r]):this.attr(r,e[r]);return this}return(i=b.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return t.nodeType?(this[0]=t,this.length=1,this):g(t)?void 0!==n.ready?n.ready(t):t(T):T.makeArray(t,this)}).prototype=T.fn,L=T(b);var j=/^(?:parents|prev(?:Until|All))/,P={children:!0,contents:!0,next:!0,prev:!0};function N(t,e){for(;(t=t[e])&&1!==t.nodeType;);return t}T.fn.extend({has:function(t){var e=T(t,this),n=e.length;return this.filter((function(){for(var t=0;t-1:1===n.nodeType&&T.find.matchesSelector(n,t))){o.push(n);break}return this.pushStack(o.length>1?T.uniqueSort(o):o)},index:function(t){return t?"string"==typeof t?l.call(T(t),this[0]):l.call(this,t.jquery?t[0]:t):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(t,e){return this.pushStack(T.uniqueSort(T.merge(this.get(),T(t,e))))},addBack:function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}}),T.each({parent:function(t){var e=t.parentNode;return e&&11!==e.nodeType?e:null},parents:function(t){return k(t,"parentNode")},parentsUntil:function(t,e,n){return k(t,"parentNode",n)},next:function(t){return N(t,"nextSibling")},prev:function(t){return N(t,"previousSibling")},nextAll:function(t){return k(t,"nextSibling")},prevAll:function(t){return k(t,"previousSibling")},nextUntil:function(t,e,n){return k(t,"nextSibling",n)},prevUntil:function(t,e,n){return k(t,"previousSibling",n)},siblings:function(t){return O((t.parentNode||{}).firstChild,t)},children:function(t){return O(t.firstChild)},contents:function(t){return null!=t.contentDocument&&a(t.contentDocument)?t.contentDocument:(z(t,"template")&&(t=t.content||t),T.merge([],t.childNodes))}},(function(t,e){T.fn[t]=function(n,r){var i=T.map(this,e,n);return"Until"!==t.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=T.filter(r,i)),this.length>1&&(P[t]||T.uniqueSort(i),j.test(t)&&i.reverse()),this.pushStack(i)}}));var I=/[^\x20\t\r\n\f]+/g;function M(t){return t}function R(t){throw t}function W(t,e,n,r){var i;try{t&&g(i=t.promise)?i.call(t).done(e).fail(n):t&&g(i=t.then)?i.call(t,e,n):e.apply(void 0,[t].slice(r))}catch(t){n.apply(void 0,[t])}}T.Callbacks=function(t){t="string"==typeof t?function(t){var e={};return T.each(t.match(I)||[],(function(t,n){e[n]=!0})),e}(t):T.extend({},t);var e,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||t.once,r=e=!0;a.length;s=-1)for(n=a.shift();++s-1;)o.splice(n,1),n<=s&&s--})),this},has:function(t){return t?T.inArray(t,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||e||(o=n=""),this},locked:function(){return!!i},fireWith:function(t,n){return i||(n=[t,(n=n||[]).slice?n.slice():n],a.push(n),e||u()),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!r}};return c},T.extend({Deferred:function(t){var e=[["notify","progress",T.Callbacks("memory"),T.Callbacks("memory"),2],["resolve","done",T.Callbacks("once memory"),T.Callbacks("once memory"),0,"resolved"],["reject","fail",T.Callbacks("once memory"),T.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(t){return i.then(null,t)},pipe:function(){var t=arguments;return T.Deferred((function(n){T.each(e,(function(e,r){var i=g(t[r[4]])&&t[r[4]];o[r[1]]((function(){var t=i&&i.apply(this,arguments);t&&g(t.promise)?t.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,i?[t]:arguments)}))})),t=null})).promise()},then:function(t,r,i){var o=0;function a(t,e,r,i){return function(){var s=this,u=arguments,c=function(){var n,c;if(!(t=o&&(r!==R&&(s=void 0,u=[n]),e.rejectWith(s,u))}};t?l():(T.Deferred.getStackHook&&(l.stackTrace=T.Deferred.getStackHook()),n.setTimeout(l))}}return T.Deferred((function(n){e[0][3].add(a(0,n,g(i)?i:M,n.notifyWith)),e[1][3].add(a(0,n,g(t)?t:M)),e[2][3].add(a(0,n,g(r)?r:R))})).promise()},promise:function(t){return null!=t?T.extend(t,i):i}},o={};return T.each(e,(function(t,n){var a=n[2],s=n[5];i[n[1]]=a.add,s&&a.add((function(){r=s}),e[3-t][2].disable,e[3-t][3].disable,e[0][2].lock,e[0][3].lock),a.add(n[3].fire),o[n[0]]=function(){return o[n[0]+"With"](this===o?void 0:this,arguments),this},o[n[0]+"With"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(t){var e=arguments.length,n=e,r=Array(n),i=s.call(arguments),o=T.Deferred(),a=function(t){return function(n){r[t]=this,i[t]=arguments.length>1?s.call(arguments):n,--e||o.resolveWith(r,i)}};if(e<=1&&(W(t,o.done(a(n)).resolve,o.reject,!e),"pending"===o.state()||g(i[n]&&i[n].then)))return o.then();for(;n--;)W(i[n],a(n),o.reject);return o.promise()}});var H=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;T.Deferred.exceptionHook=function(t,e){n.console&&n.console.warn&&t&&H.test(t.name)&&n.console.warn("jQuery.Deferred exception: "+t.message,t.stack,e)},T.readyException=function(t){n.setTimeout((function(){throw t}))};var F=T.Deferred();function B(){b.removeEventListener("DOMContentLoaded",B),n.removeEventListener("load",B),T.ready()}T.fn.ready=function(t){return F.then(t).catch((function(t){T.readyException(t)})),this},T.extend({isReady:!1,readyWait:1,ready:function(t){(!0===t?--T.readyWait:T.isReady)||(T.isReady=!0,!0!==t&&--T.readyWait>0||F.resolveWith(b,[T]))}}),T.ready.then=F.then,"complete"===b.readyState||"loading"!==b.readyState&&!b.documentElement.doScroll?n.setTimeout(T.ready):(b.addEventListener("DOMContentLoaded",B),n.addEventListener("load",B));var q=function(t,e,n,r,i,o,a){var s=0,u=t.length,c=null==n;if("object"===_(n))for(s in i=!0,n)q(t,e,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,g(r)||(a=!0),c&&(a?(e.call(t,r),e=null):(c=e,e=function(t,e,n){return c.call(T(t),n)})),e))for(;s1,null,!0)},removeData:function(t){return this.each((function(){Q.remove(this,t)}))}}),T.extend({queue:function(t,e,n){var r;if(t)return e=(e||"fx")+"queue",r=K.get(t,e),n&&(!r||Array.isArray(n)?r=K.access(t,e,T.makeArray(n)):r.push(n)),r||[]},dequeue:function(t,e){e=e||"fx";var n=T.queue(t,e),r=n.length,i=n.shift(),o=T._queueHooks(t,e);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===e&&n.unshift("inprogress"),delete o.stop,i.call(t,(function(){T.dequeue(t,e)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(t,e){var n=e+"queueHooks";return K.get(t,n)||K.access(t,n,{empty:T.Callbacks("once memory").add((function(){K.remove(t,[e+"queue",n])}))})}}),T.fn.extend({queue:function(t,e){var n=2;return"string"!=typeof t&&(e=t,t="fx",n--),arguments.length\x20\t\r\n\f]*)/i,gt=/^$|^module$|\/(?:java|ecma)script/i;pt=b.createDocumentFragment().appendChild(b.createElement("div")),(ht=b.createElement("input")).setAttribute("type","radio"),ht.setAttribute("checked","checked"),ht.setAttribute("name","t"),pt.appendChild(ht),m.checkClone=pt.cloneNode(!0).cloneNode(!0).lastChild.checked,pt.innerHTML="",m.noCloneChecked=!!pt.cloneNode(!0).lastChild.defaultValue,pt.innerHTML="",m.option=!!pt.lastChild;var yt={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function bt(t,e){var n;return n=void 0!==t.getElementsByTagName?t.getElementsByTagName(e||"*"):void 0!==t.querySelectorAll?t.querySelectorAll(e||"*"):[],void 0===e||e&&z(t,e)?T.merge([t],n):n}function wt(t,e){for(var n=0,r=t.length;n",""]);var xt=/<|&#?\w+;/;function _t(t,e,n,r,i){for(var o,a,s,u,c,l,f=e.createDocumentFragment(),d=[],p=0,h=t.length;p-1)i&&i.push(o);else if(c=at(o),a=bt(f.appendChild(o),"script"),c&&wt(a),n)for(l=0;o=a[l++];)gt.test(o.type||"")&&n.push(o);return f}var Tt=/^([^.]*)(?:\.(.+)|)/;function St(){return!0}function Ct(){return!1}function kt(t,e){return t===function(){try{return b.activeElement}catch(t){}}()==("focus"===e)}function Ot(t,e,n,r,i,o){var a,s;if("object"==typeof e){for(s in"string"!=typeof n&&(r=r||n,n=void 0),e)Ot(t,s,n,r,e[s],o);return t}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ct;else if(!i)return t;return 1===o&&(a=i,(i=function(t){return T().off(t),a.apply(this,arguments)}).guid=a.guid||(a.guid=T.guid++)),t.each((function(){T.event.add(this,e,i,r,n)}))}function At(t,e,n){n?(K.set(t,e,!1),T.event.add(t,e,{namespace:!1,handler:function(t){var r,i,o=K.get(this,e);if(1&t.isTrigger&&this[e]){if(o.length)(T.event.special[e]||{}).delegateType&&t.stopPropagation();else if(o=s.call(arguments),K.set(this,e,o),r=n(this,e),this[e](),o!==(i=K.get(this,e))||r?K.set(this,e,!1):i={},o!==i)return t.stopImmediatePropagation(),t.preventDefault(),i&&i.value}else o.length&&(K.set(this,e,{value:T.event.trigger(T.extend(o[0],T.Event.prototype),o.slice(1),this)}),t.stopImmediatePropagation())}})):void 0===K.get(t,e)&&T.event.add(t,e,St)}T.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,c,l,f,d,p,h,v,m=K.get(t);if(X(t))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&T.find.matchesSelector(ot,i),n.guid||(n.guid=T.guid++),(u=m.events)||(u=m.events=Object.create(null)),(a=m.handle)||(a=m.handle=function(e){return void 0!==T&&T.event.triggered!==e.type?T.event.dispatch.apply(t,arguments):void 0}),c=(e=(e||"").match(I)||[""]).length;c--;)p=v=(s=Tt.exec(e[c])||[])[1],h=(s[2]||"").split(".").sort(),p&&(f=T.event.special[p]||{},p=(i?f.delegateType:f.bindType)||p,f=T.event.special[p]||{},l=T.extend({type:p,origType:v,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&T.expr.match.needsContext.test(i),namespace:h.join(".")},o),(d=u[p])||((d=u[p]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(p,a)),f.add&&(f.add.call(t,l),l.handler.guid||(l.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,l):d.push(l),T.event.global[p]=!0)},remove:function(t,e,n,r,i){var o,a,s,u,c,l,f,d,p,h,v,m=K.hasData(t)&&K.get(t);if(m&&(u=m.events)){for(c=(e=(e||"").match(I)||[""]).length;c--;)if(p=v=(s=Tt.exec(e[c])||[])[1],h=(s[2]||"").split(".").sort(),p){for(f=T.event.special[p]||{},d=u[p=(r?f.delegateType:f.bindType)||p]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=d.length;o--;)l=d[o],!i&&v!==l.origType||n&&n.guid!==l.guid||s&&!s.test(l.namespace)||r&&r!==l.selector&&("**"!==r||!l.selector)||(d.splice(o,1),l.selector&&d.delegateCount--,f.remove&&f.remove.call(t,l));a&&!d.length&&(f.teardown&&!1!==f.teardown.call(t,h,m.handle)||T.removeEvent(t,p,m.handle),delete u[p])}else for(p in u)T.event.remove(t,p+e[c],n,r,!0);T.isEmptyObject(u)&&K.remove(t,"handle events")}},dispatch:function(t){var e,n,r,i,o,a,s=new Array(arguments.length),u=T.event.fix(t),c=(K.get(this,"events")||Object.create(null))[u.type]||[],l=T.event.special[u.type]||{};for(s[0]=u,e=1;e=1))for(;c!==this;c=c.parentNode||this)if(1===c.nodeType&&("click"!==t.type||!0!==c.disabled)){for(o=[],a={},n=0;n-1:T.find(i,this,null,[c]).length),a[i]&&o.push(r);o.length&&s.push({elem:c,handlers:o})}return c=this,u\s*$/g;function Lt(t,e){return z(t,"table")&&z(11!==e.nodeType?e:e.firstChild,"tr")&&T(t).children("tbody")[0]||t}function Dt(t){return t.type=(null!==t.getAttribute("type"))+"/"+t.type,t}function jt(t){return"true/"===(t.type||"").slice(0,5)?t.type=t.type.slice(5):t.removeAttribute("type"),t}function Pt(t,e){var n,r,i,o,a,s;if(1===e.nodeType){if(K.hasData(t)&&(s=K.get(t).events))for(i in K.remove(e,"handle events"),s)for(n=0,r=s[i].length;n1&&"string"==typeof h&&!m.checkClone&&Et.test(h))return t.each((function(i){var o=t.eq(i);v&&(e[0]=h.call(this,i,o.html())),It(o,e,n,r)}));if(d&&(o=(i=_t(e,t[0].ownerDocument,!1,t,r)).firstChild,1===i.childNodes.length&&(i=o),o||r)){for(s=(a=T.map(bt(i,"script"),Dt)).length;f0&&wt(a,!u&&bt(t,"script")),s},cleanData:function(t){for(var e,n,r,i=T.event.special,o=0;void 0!==(n=t[o]);o++)if(X(n)){if(e=n[K.expando]){if(e.events)for(r in e.events)i[r]?T.event.remove(n,r):T.removeEvent(n,r,e.handle);n[K.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),T.fn.extend({detach:function(t){return Mt(this,t,!0)},remove:function(t){return Mt(this,t)},text:function(t){return q(this,(function(t){return void 0===t?T.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=t)}))}),null,t,arguments.length)},append:function(){return It(this,arguments,(function(t){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Lt(this,t).appendChild(t)}))},prepend:function(){return It(this,arguments,(function(t){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var e=Lt(this,t);e.insertBefore(t,e.firstChild)}}))},before:function(){return It(this,arguments,(function(t){this.parentNode&&this.parentNode.insertBefore(t,this)}))},after:function(){return It(this,arguments,(function(t){this.parentNode&&this.parentNode.insertBefore(t,this.nextSibling)}))},empty:function(){for(var t,e=0;null!=(t=this[e]);e++)1===t.nodeType&&(T.cleanData(bt(t,!1)),t.textContent="");return this},clone:function(t,e){return t=null!=t&&t,e=null==e?t:e,this.map((function(){return T.clone(this,t,e)}))},html:function(t){return q(this,(function(t){var e=this[0]||{},n=0,r=this.length;if(void 0===t&&1===e.nodeType)return e.innerHTML;if("string"==typeof t&&!zt.test(t)&&!yt[(mt.exec(t)||["",""])[1].toLowerCase()]){t=T.htmlPrefilter(t);try{for(;n=0&&(u+=Math.max(0,Math.ceil(t["offset"+e[0].toUpperCase()+e.slice(1)]-o-u-s-.5))||0),u}function ee(t,e,n){var r=Wt(t),i=(!m.boxSizingReliable()||n)&&"border-box"===T.css(t,"boxSizing",!1,r),o=i,a=Bt(t,e,r),s="offset"+e[0].toUpperCase()+e.slice(1);if(Rt.test(a)){if(!n)return a;a="auto"}return(!m.boxSizingReliable()&&i||!m.reliableTrDimensions()&&z(t,"tr")||"auto"===a||!parseFloat(a)&&"inline"===T.css(t,"display",!1,r))&&t.getClientRects().length&&(i="border-box"===T.css(t,"boxSizing",!1,r),(o=s in t)&&(a=t[s])),(a=parseFloat(a)||0)+te(t,e,n||(i?"border":"content"),o,r,a)+"px"}function ne(t,e,n,r,i){return new ne.prototype.init(t,e,n,r,i)}T.extend({cssHooks:{opacity:{get:function(t,e){if(e){var n=Bt(t,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(t,e,n,r){if(t&&3!==t.nodeType&&8!==t.nodeType&&t.style){var i,o,a,s=Y(e),u=Gt.test(e),c=t.style;if(u||(e=Yt(s)),a=T.cssHooks[e]||T.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(t,!1,r))?i:c[e];"string"===(o=typeof n)&&(i=rt.exec(n))&&i[1]&&(n=ct(t,e,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(T.cssNumber[s]?"":"px")),m.clearCloneStyle||""!==n||0!==e.indexOf("background")||(c[e]="inherit"),a&&"set"in a&&void 0===(n=a.set(t,n,r))||(u?c.setProperty(e,n):c[e]=n))}},css:function(t,e,n,r){var i,o,a,s=Y(e);return Gt.test(e)||(e=Yt(s)),(a=T.cssHooks[e]||T.cssHooks[s])&&"get"in a&&(i=a.get(t,!0,n)),void 0===i&&(i=Bt(t,e,r)),"normal"===i&&e in Qt&&(i=Qt[e]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),T.each(["height","width"],(function(t,e){T.cssHooks[e]={get:function(t,n,r){if(n)return!Xt.test(T.css(t,"display"))||t.getClientRects().length&&t.getBoundingClientRect().width?ee(t,e,r):Ht(t,Kt,(function(){return ee(t,e,r)}))},set:function(t,n,r){var i,o=Wt(t),a=!m.scrollboxSize()&&"absolute"===o.position,s=(a||r)&&"border-box"===T.css(t,"boxSizing",!1,o),u=r?te(t,e,r,s,o):0;return s&&a&&(u-=Math.ceil(t["offset"+e[0].toUpperCase()+e.slice(1)]-parseFloat(o[e])-te(t,e,"border",!1,o)-.5)),u&&(i=rt.exec(n))&&"px"!==(i[3]||"px")&&(t.style[e]=n,n=T.css(t,e)),Jt(0,n,u)}}})),T.cssHooks.marginLeft=qt(m.reliableMarginLeft,(function(t,e){if(e)return(parseFloat(Bt(t,"marginLeft"))||t.getBoundingClientRect().left-Ht(t,{marginLeft:0},(function(){return t.getBoundingClientRect().left})))+"px"})),T.each({margin:"",padding:"",border:"Width"},(function(t,e){T.cssHooks[t+e]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[t+it[r]+e]=o[r]||o[r-2]||o[0];return i}},"margin"!==t&&(T.cssHooks[t+e].set=Jt)})),T.fn.extend({css:function(t,e){return q(this,(function(t,e,n){var r,i,o={},a=0;if(Array.isArray(e)){for(r=Wt(t),i=e.length;a1)}}),T.Tween=ne,ne.prototype={constructor:ne,init:function(t,e,n,r,i,o){this.elem=t,this.prop=n,this.easing=i||T.easing._default,this.options=e,this.start=this.now=this.cur(),this.end=r,this.unit=o||(T.cssNumber[n]?"":"px")},cur:function(){var t=ne.propHooks[this.prop];return t&&t.get?t.get(this):ne.propHooks._default.get(this)},run:function(t){var e,n=ne.propHooks[this.prop];return this.options.duration?this.pos=e=T.easing[this.easing](t,this.options.duration*t,0,1,this.options.duration):this.pos=e=t,this.now=(this.end-this.start)*e+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):ne.propHooks._default.set(this),this}},ne.prototype.init.prototype=ne.prototype,ne.propHooks={_default:{get:function(t){var e;return 1!==t.elem.nodeType||null!=t.elem[t.prop]&&null==t.elem.style[t.prop]?t.elem[t.prop]:(e=T.css(t.elem,t.prop,""))&&"auto"!==e?e:0},set:function(t){T.fx.step[t.prop]?T.fx.step[t.prop](t):1!==t.elem.nodeType||!T.cssHooks[t.prop]&&null==t.elem.style[Yt(t.prop)]?t.elem[t.prop]=t.now:T.style(t.elem,t.prop,t.now+t.unit)}}},ne.propHooks.scrollTop=ne.propHooks.scrollLeft={set:function(t){t.elem.nodeType&&t.elem.parentNode&&(t.elem[t.prop]=t.now)}},T.easing={linear:function(t){return t},swing:function(t){return.5-Math.cos(t*Math.PI)/2},_default:"swing"},T.fx=ne.prototype.init,T.fx.step={};var re,ie,oe=/^(?:toggle|show|hide)$/,ae=/queueHooks$/;function se(){ie&&(!1===b.hidden&&n.requestAnimationFrame?n.requestAnimationFrame(se):n.setTimeout(se,T.fx.interval),T.fx.tick())}function ue(){return n.setTimeout((function(){re=void 0})),re=Date.now()}function ce(t,e){var n,r=0,i={height:t};for(e=e?1:0;r<4;r+=2-e)i["margin"+(n=it[r])]=i["padding"+n]=t;return e&&(i.opacity=i.width=t),i}function le(t,e,n){for(var r,i=(fe.tweeners[e]||[]).concat(fe.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(t){return this.each((function(){T.removeAttr(this,t)}))}}),T.extend({attr:function(t,e,n){var r,i,o=t.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===t.getAttribute?T.prop(t,e,n):(1===o&&T.isXMLDoc(t)||(i=T.attrHooks[e.toLowerCase()]||(T.expr.match.bool.test(e)?de:void 0)),void 0!==n?null===n?void T.removeAttr(t,e):i&&"set"in i&&void 0!==(r=i.set(t,n,e))?r:(t.setAttribute(e,n+""),n):i&&"get"in i&&null!==(r=i.get(t,e))?r:null==(r=T.find.attr(t,e))?void 0:r)},attrHooks:{type:{set:function(t,e){if(!m.radioValue&&"radio"===e&&z(t,"input")){var n=t.value;return t.setAttribute("type",e),n&&(t.value=n),e}}}},removeAttr:function(t,e){var n,r=0,i=e&&e.match(I);if(i&&1===t.nodeType)for(;n=i[r++];)t.removeAttribute(n)}}),de={set:function(t,e,n){return!1===e?T.removeAttr(t,n):t.setAttribute(n,n),n}},T.each(T.expr.match.bool.source.match(/\w+/g),(function(t,e){var n=pe[e]||T.find.attr;pe[e]=function(t,e,r){var i,o,a=e.toLowerCase();return r||(o=pe[a],pe[a]=i,i=null!=n(t,e,r)?a:null,pe[a]=o),i}}));var he=/^(?:input|select|textarea|button)$/i,ve=/^(?:a|area)$/i;function me(t){return(t.match(I)||[]).join(" ")}function ge(t){return t.getAttribute&&t.getAttribute("class")||""}function ye(t){return Array.isArray(t)?t:"string"==typeof t&&t.match(I)||[]}T.fn.extend({prop:function(t,e){return q(this,T.prop,t,e,arguments.length>1)},removeProp:function(t){return this.each((function(){delete this[T.propFix[t]||t]}))}}),T.extend({prop:function(t,e,n){var r,i,o=t.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&T.isXMLDoc(t)||(e=T.propFix[e]||e,i=T.propHooks[e]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(t,n,e))?r:t[e]=n:i&&"get"in i&&null!==(r=i.get(t,e))?r:t[e]},propHooks:{tabIndex:{get:function(t){var e=T.find.attr(t,"tabindex");return e?parseInt(e,10):he.test(t.nodeName)||ve.test(t.nodeName)&&t.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),m.optSelected||(T.propHooks.selected={get:function(t){var e=t.parentNode;return e&&e.parentNode&&e.parentNode.selectedIndex,null},set:function(t){var e=t.parentNode;e&&(e.selectedIndex,e.parentNode&&e.parentNode.selectedIndex)}}),T.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){T.propFix[this.toLowerCase()]=this})),T.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(g(t))return this.each((function(e){T(this).addClass(t.call(this,e,ge(this)))}));if((e=ye(t)).length)for(;n=this[u++];)if(i=ge(n),r=1===n.nodeType&&" "+me(i)+" "){for(a=0;o=e[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=me(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(g(t))return this.each((function(e){T(this).removeClass(t.call(this,e,ge(this)))}));if(!arguments.length)return this.attr("class","");if((e=ye(t)).length)for(;n=this[u++];)if(i=ge(n),r=1===n.nodeType&&" "+me(i)+" "){for(a=0;o=e[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(s=me(r))&&n.setAttribute("class",s)}return this},toggleClass:function(t,e){var n=typeof t,r="string"===n||Array.isArray(t);return"boolean"==typeof e&&r?e?this.addClass(t):this.removeClass(t):g(t)?this.each((function(n){T(this).toggleClass(t.call(this,n,ge(this),e),e)})):this.each((function(){var e,i,o,a;if(r)for(i=0,o=T(this),a=ye(t);e=a[i++];)o.hasClass(e)?o.removeClass(e):o.addClass(e);else void 0!==t&&"boolean"!==n||((e=ge(this))&&K.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===t?"":K.get(this,"__className__")||""))}))},hasClass:function(t){var e,n,r=0;for(e=" "+t+" ";n=this[r++];)if(1===n.nodeType&&(" "+me(ge(n))+" ").indexOf(e)>-1)return!0;return!1}});var be=/\r/g;T.fn.extend({val:function(t){var e,n,r,i=this[0];return arguments.length?(r=g(t),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?t.call(this,n,T(this).val()):t)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=T.map(i,(function(t){return null==t?"":t+""}))),(e=T.valHooks[this.type]||T.valHooks[this.nodeName.toLowerCase()])&&"set"in e&&void 0!==e.set(this,i,"value")||(this.value=i))}))):i?(e=T.valHooks[i.type]||T.valHooks[i.nodeName.toLowerCase()])&&"get"in e&&void 0!==(n=e.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(be,""):null==n?"":n:void 0}}),T.extend({valHooks:{option:{get:function(t){var e=T.find.attr(t,"value");return null!=e?e:me(T.text(t))}},select:{get:function(t){var e,n,r,i=t.options,o=t.selectedIndex,a="select-one"===t.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(t.selectedIndex=-1),o}}}}),T.each(["radio","checkbox"],(function(){T.valHooks[this]={set:function(t,e){if(Array.isArray(e))return t.checked=T.inArray(T(t).val(),e)>-1}},m.checkOn||(T.valHooks[this].get=function(t){return null===t.getAttribute("value")?"on":t.value})})),m.focusin="onfocusin"in n;var we=/^(?:focusinfocus|focusoutblur)$/,xe=function(t){t.stopPropagation()};T.extend(T.event,{trigger:function(t,e,r,i){var o,a,s,u,c,l,f,d,h=[r||b],v=p.call(t,"type")?t.type:t,m=p.call(t,"namespace")?t.namespace.split("."):[];if(a=d=s=r=r||b,3!==r.nodeType&&8!==r.nodeType&&!we.test(v+T.event.triggered)&&(v.indexOf(".")>-1&&(m=v.split("."),v=m.shift(),m.sort()),c=v.indexOf(":")<0&&"on"+v,(t=t[T.expando]?t:new T.Event(v,"object"==typeof t&&t)).isTrigger=i?2:3,t.namespace=m.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=r),e=null==e?[t]:T.makeArray(e,[t]),f=T.event.special[v]||{},i||!f.trigger||!1!==f.trigger.apply(r,e))){if(!i&&!f.noBubble&&!y(r)){for(u=f.delegateType||v,we.test(u+v)||(a=a.parentNode);a;a=a.parentNode)h.push(a),s=a;s===(r.ownerDocument||b)&&h.push(s.defaultView||s.parentWindow||n)}for(o=0;(a=h[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?u:f.bindType||v,(l=(K.get(a,"events")||Object.create(null))[t.type]&&K.get(a,"handle"))&&l.apply(a,e),(l=c&&a[c])&&l.apply&&X(a)&&(t.result=l.apply(a,e),!1===t.result&&t.preventDefault());return t.type=v,i||t.isDefaultPrevented()||f._default&&!1!==f._default.apply(h.pop(),e)||!X(r)||c&&g(r[v])&&!y(r)&&((s=r[c])&&(r[c]=null),T.event.triggered=v,t.isPropagationStopped()&&d.addEventListener(v,xe),r[v](),t.isPropagationStopped()&&d.removeEventListener(v,xe),T.event.triggered=void 0,s&&(r[c]=s)),t.result}},simulate:function(t,e,n){var r=T.extend(new T.Event,n,{type:t,isSimulated:!0});T.event.trigger(r,null,e)}}),T.fn.extend({trigger:function(t,e){return this.each((function(){T.event.trigger(t,e,this)}))},triggerHandler:function(t,e){var n=this[0];if(n)return T.event.trigger(t,e,n,!0)}}),m.focusin||T.each({focus:"focusin",blur:"focusout"},(function(t,e){var n=function(t){T.event.simulate(e,t.target,T.event.fix(t))};T.event.special[e]={setup:function(){var r=this.ownerDocument||this.document||this,i=K.access(r,e);i||r.addEventListener(t,n,!0),K.access(r,e,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=K.access(r,e)-1;i?K.access(r,e,i):(r.removeEventListener(t,n,!0),K.remove(r,e))}}}));var _e=n.location,Te={guid:Date.now()},Se=/\?/;T.parseXML=function(t){var e,r;if(!t||"string"!=typeof t)return null;try{e=(new n.DOMParser).parseFromString(t,"text/xml")}catch(t){}return r=e&&e.getElementsByTagName("parsererror")[0],e&&!r||T.error("Invalid XML: "+(r?T.map(r.childNodes,(function(t){return t.textContent})).join("\n"):t)),e};var Ce=/\[\]$/,ke=/\r?\n/g,Oe=/^(?:submit|button|image|reset|file)$/i,Ae=/^(?:input|select|textarea|keygen)/i;function ze(t,e,n,r){var i;if(Array.isArray(e))T.each(e,(function(e,i){n||Ce.test(t)?r(t,i):ze(t+"["+("object"==typeof i&&null!=i?e:"")+"]",i,n,r)}));else if(n||"object"!==_(e))r(t,e);else for(i in e)ze(t+"["+i+"]",e[i],n,r)}T.param=function(t,e){var n,r=[],i=function(t,e){var n=g(e)?e():e;r[r.length]=encodeURIComponent(t)+"="+encodeURIComponent(null==n?"":n)};if(null==t)return"";if(Array.isArray(t)||t.jquery&&!T.isPlainObject(t))T.each(t,(function(){i(this.name,this.value)}));else for(n in t)ze(n,t[n],e,i);return r.join("&")},T.fn.extend({serialize:function(){return T.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var t=T.prop(this,"elements");return t?T.makeArray(t):this})).filter((function(){var t=this.type;return this.name&&!T(this).is(":disabled")&&Ae.test(this.nodeName)&&!Oe.test(t)&&(this.checked||!vt.test(t))})).map((function(t,e){var n=T(this).val();return null==n?null:Array.isArray(n)?T.map(n,(function(t){return{name:e.name,value:t.replace(ke,"\r\n")}})):{name:e.name,value:n.replace(ke,"\r\n")}})).get()}});var Ee=/%20/g,$e=/#.*$/,Le=/([?&])_=[^&]*/,De=/^(.*?):[ \t]*([^\r\n]*)$/gm,je=/^(?:GET|HEAD)$/,Pe=/^\/\//,Ne={},Ie={},Me="*/".concat("*"),Re=b.createElement("a");function We(t){return function(e,n){"string"!=typeof e&&(n=e,e="*");var r,i=0,o=e.toLowerCase().match(I)||[];if(g(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(t[r]=t[r]||[]).unshift(n)):(t[r]=t[r]||[]).push(n)}}function He(t,e,n,r){var i={},o=t===Ie;function a(s){var u;return i[s]=!0,T.each(t[s]||[],(function(t,s){var c=s(e,n,r);return"string"!=typeof c||o||i[c]?o?!(u=c):void 0:(e.dataTypes.unshift(c),a(c),!1)})),u}return a(e.dataTypes[0])||!i["*"]&&a("*")}function Fe(t,e){var n,r,i=T.ajaxSettings.flatOptions||{};for(n in e)void 0!==e[n]&&((i[n]?t:r||(r={}))[n]=e[n]);return r&&T.extend(!0,t,r),t}Re.href=_e.href,T.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:_e.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(_e.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Me,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":T.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(t,e){return e?Fe(Fe(t,T.ajaxSettings),e):Fe(T.ajaxSettings,t)},ajaxPrefilter:We(Ne),ajaxTransport:We(Ie),ajax:function(t,e){"object"==typeof t&&(e=t,t=void 0),e=e||{};var r,i,o,a,s,u,c,l,f,d,p=T.ajaxSetup({},e),h=p.context||p,v=p.context&&(h.nodeType||h.jquery)?T(h):T.event,m=T.Deferred(),g=T.Callbacks("once memory"),y=p.statusCode||{},w={},x={},_="canceled",S={readyState:0,getResponseHeader:function(t){var e;if(c){if(!a)for(a={};e=De.exec(o);)a[e[1].toLowerCase()+" "]=(a[e[1].toLowerCase()+" "]||[]).concat(e[2]);e=a[t.toLowerCase()+" "]}return null==e?null:e.join(", ")},getAllResponseHeaders:function(){return c?o:null},setRequestHeader:function(t,e){return null==c&&(t=x[t.toLowerCase()]=x[t.toLowerCase()]||t,w[t]=e),this},overrideMimeType:function(t){return null==c&&(p.mimeType=t),this},statusCode:function(t){var e;if(t)if(c)S.always(t[S.status]);else for(e in t)y[e]=[y[e],t[e]];return this},abort:function(t){var e=t||_;return r&&r.abort(e),C(0,e),this}};if(m.promise(S),p.url=((t||p.url||_e.href)+"").replace(Pe,_e.protocol+"//"),p.type=e.method||e.type||p.method||p.type,p.dataTypes=(p.dataType||"*").toLowerCase().match(I)||[""],null==p.crossDomain){u=b.createElement("a");try{u.href=p.url,u.href=u.href,p.crossDomain=Re.protocol+"//"+Re.host!=u.protocol+"//"+u.host}catch(t){p.crossDomain=!0}}if(p.data&&p.processData&&"string"!=typeof p.data&&(p.data=T.param(p.data,p.traditional)),He(Ne,p,e,S),c)return S;for(f in(l=T.event&&p.global)&&0==T.active++&&T.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!je.test(p.type),i=p.url.replace($e,""),p.hasContent?p.data&&p.processData&&0===(p.contentType||"").indexOf("application/x-www-form-urlencoded")&&(p.data=p.data.replace(Ee,"+")):(d=p.url.slice(i.length),p.data&&(p.processData||"string"==typeof p.data)&&(i+=(Se.test(i)?"&":"?")+p.data,delete p.data),!1===p.cache&&(i=i.replace(Le,"$1"),d=(Se.test(i)?"&":"?")+"_="+Te.guid+++d),p.url=i+d),p.ifModified&&(T.lastModified[i]&&S.setRequestHeader("If-Modified-Since",T.lastModified[i]),T.etag[i]&&S.setRequestHeader("If-None-Match",T.etag[i])),(p.data&&p.hasContent&&!1!==p.contentType||e.contentType)&&S.setRequestHeader("Content-Type",p.contentType),S.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Me+"; q=0.01":""):p.accepts["*"]),p.headers)S.setRequestHeader(f,p.headers[f]);if(p.beforeSend&&(!1===p.beforeSend.call(h,S,p)||c))return S.abort();if(_="abort",g.add(p.complete),S.done(p.success),S.fail(p.error),r=He(Ie,p,e,S)){if(S.readyState=1,l&&v.trigger("ajaxSend",[S,p]),c)return S;p.async&&p.timeout>0&&(s=n.setTimeout((function(){S.abort("timeout")}),p.timeout));try{c=!1,r.send(w,C)}catch(t){if(c)throw t;C(-1,t)}}else C(-1,"No Transport");function C(t,e,a,u){var f,d,b,w,x,_=e;c||(c=!0,s&&n.clearTimeout(s),r=void 0,o=u||"",S.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(w=function(t,e,n){for(var r,i,o,a,s=t.contents,u=t.dataTypes;"*"===u[0];)u.shift(),void 0===r&&(r=t.mimeType||e.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||t.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(p,S,a)),!f&&T.inArray("script",p.dataTypes)>-1&&T.inArray("json",p.dataTypes)<0&&(p.converters["text script"]=function(){}),w=function(t,e,n,r){var i,o,a,s,u,c={},l=t.dataTypes.slice();if(l[1])for(a in t.converters)c[a.toLowerCase()]=t.converters[a];for(o=l.shift();o;)if(t.responseFields[o]&&(n[t.responseFields[o]]=e),!u&&r&&t.dataFilter&&(e=t.dataFilter(e,t.dataType)),u=o,o=l.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=c[u+" "+o]||c["* "+o]))for(i in c)if((s=i.split(" "))[1]===o&&(a=c[u+" "+s[0]]||c["* "+s[0]])){!0===a?a=c[i]:!0!==c[i]&&(o=s[0],l.unshift(s[1]));break}if(!0!==a)if(a&&t.throws)e=a(e);else try{e=a(e)}catch(t){return{state:"parsererror",error:a?t:"No conversion from "+u+" to "+o}}}return{state:"success",data:e}}(p,w,S,f),f?(p.ifModified&&((x=S.getResponseHeader("Last-Modified"))&&(T.lastModified[i]=x),(x=S.getResponseHeader("etag"))&&(T.etag[i]=x)),204===t||"HEAD"===p.type?_="nocontent":304===t?_="notmodified":(_=w.state,d=w.data,f=!(b=w.error))):(b=_,!t&&_||(_="error",t<0&&(t=0))),S.status=t,S.statusText=(e||_)+"",f?m.resolveWith(h,[d,_,S]):m.rejectWith(h,[S,_,b]),S.statusCode(y),y=void 0,l&&v.trigger(f?"ajaxSuccess":"ajaxError",[S,p,f?d:b]),g.fireWith(h,[S,_]),l&&(v.trigger("ajaxComplete",[S,p]),--T.active||T.event.trigger("ajaxStop")))}return S},getJSON:function(t,e,n){return T.get(t,e,n,"json")},getScript:function(t,e){return T.get(t,void 0,e,"script")}}),T.each(["get","post"],(function(t,e){T[e]=function(t,n,r,i){return g(n)&&(i=i||r,r=n,n=void 0),T.ajax(T.extend({url:t,type:e,dataType:i,data:n,success:r},T.isPlainObject(t)&&t))}})),T.ajaxPrefilter((function(t){var e;for(e in t.headers)"content-type"===e.toLowerCase()&&(t.contentType=t.headers[e]||"")})),T._evalUrl=function(t,e,n){return T.ajax({url:t,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(t){T.globalEval(t,e,n)}})},T.fn.extend({wrapAll:function(t){var e;return this[0]&&(g(t)&&(t=t.call(this[0])),e=T(t,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&e.insertBefore(this[0]),e.map((function(){for(var t=this;t.firstElementChild;)t=t.firstElementChild;return t})).append(this)),this},wrapInner:function(t){return g(t)?this.each((function(e){T(this).wrapInner(t.call(this,e))})):this.each((function(){var e=T(this),n=e.contents();n.length?n.wrapAll(t):e.append(t)}))},wrap:function(t){var e=g(t);return this.each((function(n){T(this).wrapAll(e?t.call(this,n):t)}))},unwrap:function(t){return this.parent(t).not("body").each((function(){T(this).replaceWith(this.childNodes)})),this}}),T.expr.pseudos.hidden=function(t){return!T.expr.pseudos.visible(t)},T.expr.pseudos.visible=function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)},T.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(t){}};var Be={0:200,1223:204},qe=T.ajaxSettings.xhr();m.cors=!!qe&&"withCredentials"in qe,m.ajax=qe=!!qe,T.ajaxTransport((function(t){var e,r;if(m.cors||qe&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];for(a in t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)s.setRequestHeader(a,i[a]);e=function(t){return function(){e&&(e=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===t?s.abort():"error"===t?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Be[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=e(),r=s.onerror=s.ontimeout=e("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&n.setTimeout((function(){e&&r()}))},e=e("abort");try{s.send(t.hasContent&&t.data||null)}catch(t){if(e)throw t}},abort:function(){e&&e()}}})),T.ajaxPrefilter((function(t){t.crossDomain&&(t.contents.script=!1)})),T.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(t){return T.globalEval(t),t}}}),T.ajaxPrefilter("script",(function(t){void 0===t.cache&&(t.cache=!1),t.crossDomain&&(t.type="GET")})),T.ajaxTransport("script",(function(t){var e,n;if(t.crossDomain||t.scriptAttrs)return{send:function(r,i){e=T("