From 77655fd95d4e72edda95bae4998243c88f9f2c70 Mon Sep 17 00:00:00 2001 From: jitendra Date: Mon, 5 Oct 2020 17:13:36 +0530 Subject: [PATCH] Improved lighthouse score for default theme --- .../Webkul/CartRule/src/Helpers/CartRule.php | 1 + packages/Webkul/Checkout/src/Cart.php | 5 ++ .../Database/Seeders/ChannelTableSeeder.php | 6 +- .../onepage/paypal-smart-button.blade.php | 4 +- .../Product/src/Helpers/ProductImage.php | 16 ++--- packages/Webkul/Shop/package.json | 1 + .../Shop/publishable/assets/css/shop.css | 2 +- .../Shop/publishable/assets/images/1.webp | Bin 0 -> 30516 bytes .../Shop/publishable/assets/images/2.webp | Bin 0 -> 23602 bytes .../Shop/publishable/assets/images/3.webp | Bin 0 -> 25968 bytes .../product/large-product-placeholder.webp | Bin 0 -> 936 bytes .../product/meduim-product-placeholder.webp | Bin 0 -> 694 bytes .../product/small-product-placeholder.webp | Bin 0 -> 338 bytes .../Webkul/Shop/publishable/assets/js/shop.js | 2 +- .../Shop/publishable/assets/mix-manifest.json | 4 +- .../Shop/src/Resources/assets/js/app.js | 2 + .../assets/js/components/image-slider.vue | 63 +++++++++--------- .../src/Resources/assets/sass/_variables.scss | 2 +- .../views/checkout/cart/index.blade.php | 2 +- .../views/checkout/cart/mini-cart.blade.php | 2 +- .../views/checkout/onepage/review.blade.php | 2 +- .../customers/account/orders/pdf.blade.php | 2 +- .../customers/account/reviews/index.blade.php | 2 +- .../account/reviews/reviews.blade.php | 2 +- .../account/wishlist/wishlist.blade.php | 2 +- .../views/emails/layouts/logo.blade.php | 2 +- .../guest/compare/compare-products.blade.php | 4 +- .../views/home/featured-products.blade.php | 2 +- .../views/home/new-products.blade.php | 2 +- .../views/home/news-updates.blade.php | 6 +- .../src/Resources/views/home/slider.blade.php | 8 ++- .../views/layouts/footer/footer.blade.php | 12 ++-- .../views/layouts/header/index.blade.php | 22 +++--- .../layouts/header/nav-menu/navmenu.blade.php | 3 +- .../Resources/views/layouts/master.blade.php | 6 +- .../views/products/compare.blade.php | 2 +- .../Resources/views/products/index.blade.php | 2 +- .../views/products/list/card.blade.php | 2 +- .../views/products/list/toolbar.blade.php | 12 ++-- .../views/products/reviews/create.blade.php | 2 +- .../views/products/reviews/index.blade.php | 2 +- .../views/products/view/attributes.blade.php | 2 +- .../view/configurable-options.blade.php | 2 +- .../views/products/view/gallery.blade.php | 4 +- .../Resources/views/search/search.blade.php | 2 +- .../product/large-product-placeholder.webp | Bin 0 -> 936 bytes .../product/meduim-product-placeholder.webp | Bin 0 -> 694 bytes .../product/small-product-placeholder.webp | Bin 0 -> 338 bytes public/.htaccess | 6 ++ 49 files changed, 128 insertions(+), 99 deletions(-) create mode 100644 packages/Webkul/Shop/publishable/assets/images/1.webp create mode 100644 packages/Webkul/Shop/publishable/assets/images/2.webp create mode 100644 packages/Webkul/Shop/publishable/assets/images/3.webp create mode 100644 packages/Webkul/Shop/publishable/assets/images/product/large-product-placeholder.webp create mode 100644 packages/Webkul/Shop/publishable/assets/images/product/meduim-product-placeholder.webp create mode 100644 packages/Webkul/Shop/publishable/assets/images/product/small-product-placeholder.webp create mode 100644 packages/Webkul/Ui/publishable/assets/images/product/large-product-placeholder.webp create mode 100644 packages/Webkul/Ui/publishable/assets/images/product/meduim-product-placeholder.webp create mode 100644 packages/Webkul/Ui/publishable/assets/images/product/small-product-placeholder.webp diff --git a/packages/Webkul/CartRule/src/Helpers/CartRule.php b/packages/Webkul/CartRule/src/Helpers/CartRule.php index 60f8cd274..36efaf362 100644 --- a/packages/Webkul/CartRule/src/Helpers/CartRule.php +++ b/packages/Webkul/CartRule/src/Helpers/CartRule.php @@ -537,6 +537,7 @@ class CartRule } $coupons = $this->cartRuleCouponRepository->where(['code' => $cart->coupon_code])->get(); + foreach ($coupons as $coupon) { if (in_array($coupon->cart_rule_id, explode(',', $cart->applied_cart_rule_ids))) { return true; diff --git a/packages/Webkul/Checkout/src/Cart.php b/packages/Webkul/Checkout/src/Cart.php index 38be224fa..1231358ee 100755 --- a/packages/Webkul/Checkout/src/Cart.php +++ b/packages/Webkul/Checkout/src/Cart.php @@ -293,6 +293,7 @@ class Cart public function getItemByProduct($data) { $items = $this->getCart()->all_items; + foreach ($items as $item) { if ($item->product->getTypeInstance()->compareOptions($item->additional, $data['additional'])) { if (isset($data['additional']['parent_id'])) { @@ -402,6 +403,7 @@ class Cart public function getCart(): ?\Webkul\Checkout\Contracts\Cart { $cart = null; + if ($this->getCurrentCustomer()->check()) { $cart = $this->cartRepository->findOneWhere([ 'customer_id' => $this->getCurrentCustomer()->user()->id, @@ -591,6 +593,7 @@ class Cart if (! $cart = $this->getCart()) { return false; } + if (count($cart->items) === 0) { $this->cartRepository->delete($cart->id); @@ -604,7 +607,9 @@ class Cart if ($validationResult->isItemInactive()) { $this->removeItem($item->id); + $isInvalid = true; + session()->flash('info', __('shop::app.checkout.cart.item.inactive')); } diff --git a/packages/Webkul/Core/src/Database/Seeders/ChannelTableSeeder.php b/packages/Webkul/Core/src/Database/Seeders/ChannelTableSeeder.php index b5197f629..fe15b783e 100755 --- a/packages/Webkul/Core/src/Database/Seeders/ChannelTableSeeder.php +++ b/packages/Webkul/Core/src/Database/Seeders/ChannelTableSeeder.php @@ -17,7 +17,11 @@ class ChannelTableSeeder extends Seeder 'name' => 'Default', 'theme' => 'velocity', 'root_category_id' => 1, - 'home_page_content' => '

@include("shop::home.slider") @include("shop::home.featured-products") @include("shop::home.new-products")

', + 'home_page_content' => '

@include("shop::home.slider") @include("shop::home.featured-products") @include("shop::home.new-products")

+ ', 'footer_content' => '
Quick Links
Connect With Us
', 'name' => 'Default', 'default_locale_id' => 1, diff --git a/packages/Webkul/Paypal/src/Resources/views/checkout/onepage/paypal-smart-button.blade.php b/packages/Webkul/Paypal/src/Resources/views/checkout/onepage/paypal-smart-button.blade.php index 1d75eba8a..87a864840 100644 --- a/packages/Webkul/Paypal/src/Resources/views/checkout/onepage/paypal-smart-button.blade.php +++ b/packages/Webkul/Paypal/src/Resources/views/checkout/onepage/paypal-smart-button.blade.php @@ -1,3 +1,4 @@ +@if (request()->route()->getName() == 'shop.checkout.onepage.index') \ No newline at end of file + +@endif \ No newline at end of file diff --git a/packages/Webkul/Product/src/Helpers/ProductImage.php b/packages/Webkul/Product/src/Helpers/ProductImage.php index 8556f14bd..c9a4ab488 100755 --- a/packages/Webkul/Product/src/Helpers/ProductImage.php +++ b/packages/Webkul/Product/src/Helpers/ProductImage.php @@ -35,10 +35,10 @@ class ProductImage extends AbstractProduct if (! $product->parent_id && ! count($images)) { $images[] = [ - 'small_image_url' => asset('vendor/webkul/ui/assets/images/product/small-product-placeholder.png'), - 'medium_image_url' => asset('vendor/webkul/ui/assets/images/product/meduim-product-placeholder.png'), - 'large_image_url' => asset('vendor/webkul/ui/assets/images/product/large-product-placeholder.png'), - 'original_image_url' => asset('vendor/webkul/ui/assets/images/product/large-product-placeholder.png'), + 'small_image_url' => asset('vendor/webkul/ui/assets/images/product/small-product-placeholder.webp'), + 'medium_image_url' => asset('vendor/webkul/ui/assets/images/product/meduim-product-placeholder.webp'), + 'large_image_url' => asset('vendor/webkul/ui/assets/images/product/large-product-placeholder.webp'), + 'original_image_url' => asset('vendor/webkul/ui/assets/images/product/large-product-placeholder.webp'), ]; } @@ -64,10 +64,10 @@ class ProductImage extends AbstractProduct ]; } else { $image = [ - 'small_image_url' => asset('vendor/webkul/ui/assets/images/product/small-product-placeholder.png'), - 'medium_image_url' => asset('vendor/webkul/ui/assets/images/product/meduim-product-placeholder.png'), - 'large_image_url' => asset('vendor/webkul/ui/assets/images/product/large-product-placeholder.png'), - 'original_image_url' => asset('vendor/webkul/ui/assets/images/product/large-product-placeholder.png'), + 'small_image_url' => asset('vendor/webkul/ui/assets/images/product/small-product-placeholder.webp'), + 'medium_image_url' => asset('vendor/webkul/ui/assets/images/product/meduim-product-placeholder.webp'), + 'large_image_url' => asset('vendor/webkul/ui/assets/images/product/large-product-placeholder.webp'), + 'original_image_url' => asset('vendor/webkul/ui/assets/images/product/large-product-placeholder.webp'), ]; } diff --git a/packages/Webkul/Shop/package.json b/packages/Webkul/Shop/package.json index 9cf8a14fa..5225a1d75 100755 --- a/packages/Webkul/Shop/package.json +++ b/packages/Webkul/Shop/package.json @@ -23,6 +23,7 @@ "dependencies": { "accounting": "^0.4.1", "ez-plus": "^1.2.1", + "lazysizes": "^5.2.2", "vee-validate": "^2.2.15", "vue-flatpickr": "^2.3.0", "vue-slider-component": "^3.1.0" diff --git a/packages/Webkul/Shop/publishable/assets/css/shop.css b/packages/Webkul/Shop/publishable/assets/css/shop.css index 57e7ec5ed..ca80a2d36 100644 --- a/packages/Webkul/Shop/publishable/assets/css/shop.css +++ b/packages/Webkul/Shop/publishable/assets/css/shop.css @@ -1 +1 @@ -@import url(https://fonts.googleapis.com/css?family=Montserrat:400,500);@charset "UTF-8";.icon{display:inline-block;background-size:cover}.dropdown-right-icon{background-image:URL(../images/icon-dropdown-left.svg);width:8px;height:8px;margin-left:auto;margin-bottom:2px}.icon-menu-close{background-image:URL(../images/icon-menu-close.svg);width:24px;height:24px;margin-left:auto}.icon-menu-close-adj{background-image:URL(../images/cross-icon-adj.svg);margin-left:auto}.grid-view-icon{background-image:URL(../images/icon-grid-view.svg);width:24px;height:24px}.list-view-icon{background-image:URL(../images/icon-list-view.svg);width:24px;height:24px}.sort-icon{background-image:URL(../images/icon-sort.svg);width:32px;height:32px}.filter-icon{background-image:URL(../images/icon-filter.svg);width:32px;height:32px}.whishlist-icon{background-image:URL(../images/wishlist.svg);width:24px;height:24px}.share-icon{background-image:URL(../images/icon-share.svg);width:24px;height:24px}.icon-menu{background-image:URL(../images/icon-menu.svg);width:24px;height:24px}.icon-search{background-image:URL(../images/icon-search.svg);width:24px;height:24px}.icon-menu-back{background-image:URL(../images/icon-menu-back.svg);width:24px;height:24px}.shipping-icon{background-image:url(../images/shipping.svg);width:32px;height:32px}.payment-icon{background-image:url(../images/payment.svg);width:32px;height:32px}.cart-icon{background-image:url(../images/icon-cart.svg);width:24px;height:24px}.compare-icon{background-image:url(../images/compare_arrows.png);width:32px;height:32px}.wishlist-icon{background-image:url(../images/wishlist.svg);width:32px;height:32px}.icon-arrow-up{background-image:url(../images/arrow-up.svg);width:16px;height:16px}.icon-arrow-down{background-image:url(../images/arrow-down.svg);width:16px;height:16px}.expand-icon{background-image:url(../images/Expand-Light.svg);width:18px;height:18px}.expand-on-icon{background-image:url(../images/Expand-Light-On.svg);width:18px;height:18px}.icon-menu-close-adj{background-image:url(../images/cross-icon-adj.svg);width:32px;height:32px}.icon-facebook{background-image:url(../images/facebook.svg)}.icon-twitter{background-image:url(../images/twitter.svg)}.icon-google-plus{background-image:url(../images/google-plus.svg)}.icon-instagram{background-image:url(../images/instagram.svg)}.icon-linkedin{background-image:url(../images/linkedin.svg)}.icon-dropdown{background-image:url(../images/icon-dropdown.svg)}@-webkit-keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}body{margin:0;padding:0;font-weight:500;max-width:100%;width:auto;color:#242424;font-size:16px}*{font-family:Montserrat,sans-serif}::-webkit-input-placeholder{font-family:Montserrat,sans-serif}::-moz-input-placeholder{font-family:Montserrat,sans-serif}textarea{resize:none}input{font-family:Montserrat,sans-serif}.btn{border-radius:0!important}.pagination.shop{display:flex;flex-direction:row;align-items:center;justify-content:center}@media only screen and (max-width:770px){.pagination.shop{justify-content:space-between}.pagination.shop .page-item{display:none}.pagination.shop .page-item.next,.pagination.shop .page-item.previous{display:block}}.bold{font-weight:700;color:#3a3a3a}.radio-container{display:block;position:relative;padding-left:35px;margin-bottom:12px;cursor:pointer;font-size:16px;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.radio-container input{position:absolute;opacity:0;cursor:pointer;top:0;left:0}.radio-container .checkmark{position:absolute;top:0;left:0;height:16px;width:16px;background-color:#fff;border:2px solid #ff6472;border-radius:50%}.radio-container .checkmark:after{content:"";position:absolute;display:none;top:2px;left:2px;width:8px;height:8px;border-radius:50%;background:#ff6472}.radio-container input:checked~.checkmark:after{display:block}.radio-container input:disabled~.checkmark{display:block;border:2px solid rgba(255,100,113,.4)}.cp-spinner{width:48px;height:48px;display:inline-block;box-sizing:border-box}.cp-round:before{border-radius:50%;border:6px solid #bababa}.cp-round:after,.cp-round:before{content:" ";width:48px;height:48px;display:inline-block;box-sizing:border-box;position:absolute;top:0;left:0}.cp-round:after{border-radius:50%;border:6px solid transparent;border-top-color:#0031f0;-webkit-animation:spin 1s ease-in-out infinite;animation:spin 1s ease-in-out infinite}.radio{margin:10px 0 0!important}.checkbox{margin:10px 0 0}.checkbox .checkbox-view{height:16px!important;width:16px!important;background-image:url(../images/checkbox.svg)!important}.checkbox input:checked+.checkbox-view{background-image:url(../images/checkbox-checked.svg)!important}.pull-right{float:right}.add-to-wishlist .wishlist-icon:hover{background-image:url(../images/wishlist-added.svg)}.add-to-wishlist.already .wishlist-icon{background-image:url(../images/wishlist-added.svg)!important}.product-price{margin-bottom:14px;width:100%;font-weight:600;word-break:break-all}.product-price .price-label{font-size:14px;font-weight:400;margin-right:5px}.product-price .regular-price{color:#a5a5a5;text-decoration:line-through;margin-right:10px}.product-price .special-price{color:#ff6472}.horizontal-rule{display:block;width:100%;height:1px;background:#c7c7c7}.account-head .account-heading{font-size:28px;color:#242424;text-transform:capitalize;text-align:left}.account-head .account-action{font-size:17px;margin-top:1%;color:#0031f0;float:right}.account-head .horizontal-rule{margin-top:1.1%;width:100%;height:1px;vertical-align:middle;background:#c7c7c7}.account-item-card{justify-content:space-between;align-items:center;width:100%}.account-item-card,.account-item-card .media-info{display:flex;flex-direction:row}.account-item-card .media-info .media{height:125px;width:110px}.account-item-card .media-info .info{margin-left:20px;margin-right:20px;display:flex;flex-direction:column;justify-content:space-evenly}.account-item-card .media-info .info .stars .icon{height:16px;width:16px}.account-item-card .operations{display:flex;flex-direction:column;justify-content:space-between;align-items:center}.account-item-card .operations a{width:100%}.account-item-card .operations a span{float:right}.account-items-list{display:block;width:100%}.account-items-list .grid-container{margin-top:40px}.search-result-status{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.grid-container{margin-top:20px}.main-container-wrapper{max-width:1300px;width:auto;padding-left:15px;padding-right:15px;margin-left:auto;margin-right:auto}.main-container-wrapper .content-container{display:block;margin-bottom:40px}.main-container-wrapper .product-grid-4{grid-auto-rows:auto;grid-column-gap:30px;grid-row-gap:15px}.main-container-wrapper .product-grid-3,.main-container-wrapper .product-grid-4{display:grid;grid-template-columns:repeat(auto-fill,minmax(235px,1fr));justify-items:center}.main-container-wrapper .product-grid-3{grid-gap:27px;grid-auto-rows:auto}.main-container-wrapper .product-card{position:relative;padding:15px}.main-container-wrapper .product-card .product-image{max-height:350px;max-width:280px;margin-bottom:10px;background:#f2f2f2}.main-container-wrapper .product-card .product-image img{display:block;height:100%}.main-container-wrapper .product-card .product-name{margin-bottom:14px;width:100%;color:#242424}.main-container-wrapper .product-card .product-name a{color:#242424}.main-container-wrapper .product-card .product-description{display:none}.main-container-wrapper .product-card .product-ratings{width:100%}.main-container-wrapper .product-card .product-ratings .icon{width:16px;height:16px}.main-container-wrapper .product-card .cart-wish-wrap{display:inline-flex;justify-content:flex-start;align-items:center;height:40px}.main-container-wrapper .product-card .cart-wish-wrap .addtocart{margin-right:10px;text-transform:uppercase;text-align:left;box-shadow:1px 1px 0 #ccc}.main-container-wrapper .product-card .cart-wish-wrap .add-to-wishlist{margin-top:5px;background:transparent;border:0;cursor:pointer;padding:0}.main-container-wrapper .product-card .sticker{border-bottom-right-radius:15px;position:absolute;top:15px;left:15px;text-transform:uppercase;padding:4px 13px;font-size:14px;color:#fff;box-shadow:1px 1px 1px #ccc;font-weight:500}.main-container-wrapper .product-card .sticker.sale{background:#ff6472}.main-container-wrapper .product-card .sticker.new{background:#2ed04c}.main-container-wrapper .product-card:hover{box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 2px 16px 4px rgba(40,44,63,.07);transition:.3s}@media only screen and (max-width:580px){.main-container-wrapper .main-container-wrapper{padding:0}}@media only screen and (max-width:551px){.main-container-wrapper .product-grid-3{grid-template-columns:48.5% 48.5%;grid-column-gap:20px}}@media only screen and (max-width:854px){.main-container-wrapper .product-image img{display:block;width:100%}.main-container-wrapper .product-grid-4{grid-template-columns:29.5% 29.5% 29.5%;grid-column-gap:35px}.main-container-wrapper .product-card:hover{padding:5px}}@media only screen and (max-width:653px){.main-container-wrapper .product-image img{display:block;width:100%}.main-container-wrapper .product-grid-4{grid-template-columns:48.5% 48.5%;grid-column-gap:17px}}@media only screen and (max-width:425px){.main-container-wrapper .product-card{font-size:90%}.main-container-wrapper .product-card .product-image img{display:block;width:100%}.main-container-wrapper .product-card .btn.btn-md{padding:5px}.main-container-wrapper .product-grid-4{grid-template-columns:48.5% 48.5%;grid-column-gap:10px}}.main-container-wrapper .product-list{min-height:200px}.main-container-wrapper .product-list .product-card{width:100%;display:flex;flex-direction:row;align-items:center;margin-bottom:20px}.main-container-wrapper .product-list .product-card .product-image{float:left;width:30%;height:350px}.main-container-wrapper .product-list .product-card .product-image img{height:100%;width:100%}.main-container-wrapper .product-list .product-card .product-information{float:right;width:70%;padding-left:30px}.main-container-wrapper .product-list .product-card:last-child{margin-bottom:0}.main-container-wrapper .product-list.empty h2{font-size:20px}.main-container-wrapper section.featured-products{display:block;margin-bottom:5%}.main-container-wrapper section.featured-products .featured-heading{width:100%;text-align:center;text-transform:uppercase;font-size:18px;margin-bottom:20px}.main-container-wrapper section.featured-products .featured-heading .featured-separator{color:#d3d3d3}.main-container-wrapper section.news-update{display:block;box-sizing:border-box;width:100%;margin-bottom:5%}.main-container-wrapper section.news-update .news-update-grid{display:grid;grid-template-columns:58.5% 40%;grid-gap:20px}.main-container-wrapper section.news-update .news-update-grid .block1{display:block;box-sizing:border-box}.main-container-wrapper section.news-update .news-update-grid .block1 img{display:flex;height:100%;width:100%}.main-container-wrapper section.news-update .news-update-grid .block2{display:block;box-sizing:border-box;display:grid;grid-template-rows:repeat(2,minmax(50%,1fr));grid-row-gap:20px}.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block1{display:block;box-sizing:border-box}.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block1 img{width:100%}.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block2{display:block;box-sizing:border-box}.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block2 img{width:100%}section.slider-block{display:block;margin-left:auto;margin-right:auto;margin-bottom:5%}section.slider-block div.slider-content{position:relative;height:500px;margin-left:auto;margin-right:auto}section.slider-block div.slider-content ul.slider-images .show-content{display:none}section.slider-block div.slider-content ul.slider-images li{position:absolute;visibility:hidden}section.slider-block div.slider-content ul.slider-images li.show{display:block;position:relative;visibility:visible;width:100%;-webkit-animation-name:example;animation-name:example;-webkit-animation-duration:4s;animation-duration:4s}section.slider-block div.slider-content ul.slider-images li.show .show-content{display:flex;position:absolute;flex-direction:row;justify-content:center;align-items:center;color:#242424;height:100%;width:100%;top:0}@-webkit-keyframes example{0%{opacity:.1}to{opacity:1}}@keyframes example{0%{opacity:.1}to{opacity:1}}section.slider-block div.slider-content ul.slider-images li img{max-height:500px;width:100%}section.slider-block div.slider-content div.slider-control{display:block;cursor:pointer;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;bottom:2%;right:2%}section.slider-block div.slider-content div.slider-control .dark-left-icon{background-color:#f2f2f2;height:48px;width:48px;max-height:100%;max-width:100%}section.slider-block div.slider-content div.slider-control .light-right-icon{background-color:#242424;height:48px;width:48px;max-height:100%;max-width:100%}@media only screen and (max-width:770px){section.slider-block div.slider-content div.slider-control{display:flex;justify-content:space-between;bottom:46%;right:0;width:100%}}.header{margin-top:16px;margin-bottom:21px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.header .header-top{margin-bottom:16px;display:flex;max-width:100%;width:auto;margin-left:auto;margin-right:auto;align-items:center;justify-content:space-between}.header .header-top div.left-content{display:flex;flex-direction:row;justify-content:flex-start;align-items:center}.header .header-top div.left-content ul.logo-container{margin-right:12px}.header .header-top div.left-content ul.logo-container li{display:flex}.header .header-top div.left-content ul.logo-container li img{max-width:120px;max-height:40px}.header .header-top div.left-content ul.search-container li.search-group{display:inline-flex;justify-content:center;align-items:center;position:relative}.header .header-top div.left-content ul.search-container li.search-group .search-field{height:38px;border-radius:3px;border:2px solid #c7c7c7;border-right:none;border-top-right-radius:0;border-bottom-right-radius:0;padding-left:12px;font-size:14px;-webkit-appearance:none}.header .header-top div.left-content ul.search-container li.search-group .search-icon-wrapper{box-sizing:border-box;height:38px;width:38px;border:2px solid #c7c7c7;border-top-right-radius:3px;border-bottom-right-radius:3px;margin-left:-2px}.header .header-top div.left-content ul.search-container li.search-group .search-icon-wrapper button{background:#fff;border:0;padding:3px 5px;margin:0}.header .header-top div.left-content ul.search-container li.search-group .image-search-container{position:absolute;right:41px;top:7px;background:#fff}.header .header-top div.left-content ul.search-container li.search-group .image-search-container img,.header .header-top div.left-content ul.search-container li.search-group .image-search-container input{display:none}.header .header-top div.right-content .right-content-menu>li{display:inline-block;border-right:2px solid #c7c7c7;min-height:15px;padding:3px 15px 0}.header .header-top div.right-content .right-content-menu>li:first-child{padding-left:0}.header .header-top div.right-content .right-content-menu>li:last-child{border-right:0;padding-right:0}.header .header-top div.right-content .right-content-menu>li .icon{vertical-align:middle}.header .header-top div.right-content .right-content-menu>li .icon:not(.arrow-down-icon){margin-right:5px}.header .header-top div.right-content .right-content-menu>li .arrow-down-icon{width:12px;height:6px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container{border-right:0;padding-right:0}.header .header-top div.right-content .right-content-menu .cart-link{pointer-events:none}.header .header-top div.right-content .right-content-menu ul.dropdown-list{display:none;margin-top:14px}.header .header-top div.right-content .right-content-menu ul.dropdown-list li{border-right:none;padding:5px 10px;display:block}.header .header-top div.right-content .right-content-menu ul.dropdown-list li a{color:#333}.header .header-top div.right-content .right-content-menu .currency{position:absolute;right:0;width:100px}.header .header-top div.right-content .right-content-menu .account{position:absolute;right:0}.header .header-top div.right-content .right-content-menu .account li{padding:20px!important}.header .header-top div.right-content .right-content-menu .account li ul{margin-top:5px}.header .header-top div.right-content .right-content-menu .account li ul>li{padding:5px 10px 5px 0!important}.header .header-top div.right-content .right-content-menu .guest{width:300px}.header .header-top div.right-content .right-content-menu .guest .btn.btn-sm{padding:9px 25px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list{width:387px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container{padding:0}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart{color:#242424}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart>.dropdown-header{width:100%;padding:8px 16px;border-bottom:1px solid #c7c7c7}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart>.dropdown-header p{display:inline;line-height:25px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart>.dropdown-header i{float:right;height:22px;width:22px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart>.dropdown-header p.heading{font-weight:lighter}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-content{padding-top:8px;width:100%;max-height:329px;overflow-y:auto}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-content .item{display:flex;flex-direction:row;border-bottom:1px solid #c7c7c7;padding:8px 16px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-content .item img{height:75px;width:75px;margin-right:8px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-content .item-details{height:auto}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .item-details .item-name{font-size:16px;font-weight:700;margin-bottom:8px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .item-details .item-options,.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .item-details .item-price{margin-bottom:8px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .item-details .item-qty{font-weight:lighter;margin-bottom:8px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-footer{display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding:8px 16px;bottom:0;width:100%;background:#fff}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-footer .btn{margin:0;max-width:170px;text-align:center}.header .header-top div.right-content .menu-box,.header .header-top div.right-content .search-box{display:none}.header .header-bottom{height:47px;margin-left:auto;margin-right:auto;border-top:1px solid #c7c7c7;border-bottom:1px solid #c7c7c7;display:block}.header .header-bottom ul.nav{display:block;font-size:16px;max-width:100%;width:auto;margin-left:auto;margin-right:auto}.header .header-bottom .nav ul{margin:0;padding:0;box-shadow:1px 1px 1px 0 rgba(0,0,0,.4)}.header .header-bottom .nav a{display:block;color:#242424;text-decoration:none;padding:.8em .3em .8em .5em;text-transform:capitalize;letter-spacing:-.38px;position:relative}.header .header-bottom .nav li>.icon{display:none}.header .header-bottom .nav{vertical-align:top;display:inline-block}.header .header-bottom .nav li{position:relative}.header .header-bottom .nav>li{float:left;margin-right:1px;height:45px}.header .header-bottom .nav>li>a{margin-bottom:1px}.header .header-bottom .nav>li>a .icon{display:none}.header .header-bottom .nav li li a{margin-top:1px;white-space:normal;word-break:break-word;width:200px}.header .header-bottom .nav li a:first-child:nth-last-child(2):before{content:"";position:absolute;height:0;width:0;border:5px solid transparent;top:50%;right:5px}.header .header-bottom .nav ul{position:absolute;white-space:nowrap;border:1px solid #c7c7c7;background-color:#fff;z-index:10000;left:-99999em}.header .header-bottom .nav>li:hover{background-color:#f2f2f2}.header .header-bottom .nav>li:hover>ul{left:auto;min-width:100%}.header .header-bottom .nav>li li:hover{background-color:#f2f2f2}.header .header-bottom .nav>li li:hover>ul{left:100%;margin-left:1px;top:-2px}.header .header-bottom .nav>li:hover>a:first-child:nth-last-child(2):before,.header .header-bottom .nav li li>a:first-child:nth-last-child(2):before{margin-top:-5px}.header .header-bottom .nav li li:hover>a:first-child:nth-last-child(2):before{right:10px}.header .search-responsive{display:none}.header .search-responsive .search-content{border-bottom:1px solid #c7c7c7;border-top:1px solid #c7c7c7;height:50px;display:flex;align-items:center;justify-content:space-between}.header .search-responsive .search-content .search{width:80%;border:none;font-size:16px}.header .search-responsive .search-content .right{float:right}@media (max-width:720px){.header .currency-switcher{display:none!important}.header .header-top div.right-content{display:inherit}.header .header-top div.right-content .menu-box{display:inline-block;margin-left:10px}.header .header-top div.right-content .search-box{display:inline-block;margin-right:10px;cursor:pointer}.header .header-top div.right-content .right-content-menu>li{border-right:none;padding:0 2px}.header .header-top div.right-content .right-content-menu>li .icon:not(.arrow-down-icon){margin-right:0}.header .header-top div.right-content .right-content-menu .cart-link{pointer-events:all}.header .header-top div.right-content .right-content-menu .arrow-down-icon,.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-container,.header .header-top div.right-content .right-content-menu .name{display:none}.header .header-bottom{height:auto;display:none}.header .header-bottom .nav a{display:inline-block}.header .header-bottom .nav li,.header .header-bottom ul.nav{height:auto}.header .header-bottom .nav>li{float:none}.header .header-bottom .nav li>.icon{float:right;display:block}.header .header-bottom .icon.icon-arrow-down{margin-right:5px}.header .header-bottom .nav li .left{height:16px;width:16px}.header .header-bottom .nav li a>.icon{display:none}.header .header-bottom .nav ul{position:unset;border:none;box-shadow:none}.header .header-bottom .nav>li li:hover>ul{margin-left:0;top:0}ul.account-dropdown-container,ul.cart-dropdown-container,ul.search-container{display:none!important}}@media (max-width:400px){.header .header-top div.right-content .right-content-menu .guest{width:240px}.header .header-top div.right-content .right-content-menu .guest .btn.btn-sm{padding:7px 14px}}.footer{background-color:#f2f2f2;padding-left:10%;padding-right:10%;width:100%;display:inline-block}.footer .footer-content .footer-list-container{display:grid;padding:40px 10px;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));grid-auto-rows:auto;grid-row-gap:1vh}.footer .footer-content .footer-list-container .list-container .list-heading{text-transform:uppercase;color:#a5a5a5}.footer .footer-content .footer-list-container .list-container .list-group{padding-top:25px}.footer .footer-content .footer-list-container .list-container .list-group a{color:#242424}.footer .footer-content .footer-list-container .list-container .list-group li{margin-bottom:12px;list-style-type:none;text-transform:uppercase}.footer .footer-content .footer-list-container .list-container .list-group li span.icon{display:inline-block;vertical-align:middle;margin-right:5px;height:24px;width:24px}.footer .footer-content .footer-list-container .list-container .form-container{padding-top:5px}.footer .footer-content .footer-list-container .list-container .form-container .control-group .subscribe-field{width:100%}.footer .footer-content .footer-list-container .list-container .form-container .control-group .btn-primary{background-color:#242424;margin-top:8px;border-radius:0;text-align:center}.footer .footer-content .footer-list-container .list-container .form-container .control-group .locale-switcher{width:100%}.footer .footer-content .footer-list-container .list-container .currency{display:none}@media (max-width:720px){.footer{padding-left:15px}.footer .footer-list-container{padding-left:0!important}.footer .currency{display:block!important}}.footer-bottom{width:100%;height:70px;font-size:16px;color:#a5a5a5;letter-spacing:-.26px;display:flex;flex-direction:row;justify-content:center;align-items:center}.footer-bottom p{padding:0 15px}.main .category-container{display:flex;flex-direction:row;width:100%}.main .category-container .layered-filter-wrapper,.main .category-container .responsive-layred-filter{width:25%;float:left;padding-right:20px;min-height:1px}.main .category-container .layered-filter-wrapper .filter-title,.main .category-container .responsive-layred-filter .filter-title{border-bottom:1px solid #c7c7c7;color:#242424;padding:10px 0}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item{border-bottom:1px solid #c7c7c7;padding-bottom:10px}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-title,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-title{padding:10px 40px 0 10px;color:#5e5e5e;cursor:pointer;position:relative}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-title .remove-filter-link,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-title .remove-filter-link{font-weight:400;color:#0031f0;margin-right:10px}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-title .icon,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-title .icon{background-image:url(../images/icon-dropdown.svg)!important;width:10px;height:10px;position:absolute;right:15px;top:14px}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content{padding:10px;display:none}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items{padding:0;margin:0;list-style:none none}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item{padding:8px 0;color:#5e5e5e}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .checkbox,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .checkbox{margin:0}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .color-swatch,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .color-swatch{display:inline-block;margin-right:5px;min-width:20px;height:20px;border:1px solid #c7c7c7;border-radius:3px;float:right}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content .price-range-wrapper,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content .price-range-wrapper{margin-top:21px}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item.active .filter-attributes-content,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item.active .filter-attributes-content{display:block}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item.active .filter-attributes-title .icon,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item.active .filter-attributes-title .icon{background-image:url(../images/arrow-up.svg)!important}.main .category-container .responsive-layred-filter{display:none;width:100%;float:none;padding-right:0;margin-top:-25px!important}.main .category-container .category-block{width:80%;display:block}.main .category-container .category-block .hero-image{display:inline-block;visibility:visible;width:100%}.main .category-container .category-block .hero-image img{max-height:400px;max-width:100%}.main .top-toolbar{width:100%;display:inline-block}.main .top-toolbar .page-info{float:left;color:#242424;line-height:45px}.main .top-toolbar .page-info span{display:none}.main .top-toolbar .page-info span:first-child{display:inline}.main .top-toolbar .pager{float:right}.main .top-toolbar .pager label{margin-right:5px}.main .top-toolbar .pager select{background:#f2f2f2;border:1px solid #c7c7c7;border-radius:3px;color:#242424;padding:10px}.main .top-toolbar .pager .view-mode{display:inline-block;margin-right:20px}.main .top-toolbar .pager .view-mode a,.main .top-toolbar .pager .view-mode span{display:inline-block;vertical-align:middle}.main .top-toolbar .pager .view-mode a.grid-view,.main .top-toolbar .pager .view-mode span.grid-view{margin-right:10px}.main .top-toolbar .pager .view-mode .sort-filter{display:none}.main .top-toolbar .pager .sorter{display:inline-block;margin-right:10px}.main .top-toolbar .pager .limiter{display:inline-block}.main .bottom-toolbar{display:block;margin-top:40px;margin-bottom:40px;text-align:center}@media only screen and (max-width:840px){.main .category-container .responsive-layred-filter,.main .layered-filter-wrapper{display:none}.main .category-block{width:100%!important}.main .category-block .top-toolbar{display:flex;flex-direction:column}.main .category-block .top-toolbar .page-info{border-bottom:1px solid #c7c7c7;line-height:15px;margin-top:10px}.main .category-block .top-toolbar .page-info span{display:inline}.main .category-block .top-toolbar .page-info span:first-child{display:none}.main .category-block .top-toolbar .page-info .sort-filter{float:right;cursor:pointer}.main .category-block .top-toolbar .pager{margin-top:20px;display:none}.main .category-block .top-toolbar .pager .view-mode{display:none}.main .category-block .responsive-layred-filter{display:block}}section.product-detail{color:#242424}section.product-detail div.category-breadcrumbs{display:inline}section.product-detail div.layouter{display:block;margin-top:20px;margin-bottom:20px}section.product-detail div.layouter .form-container{display:flex;flex-direction:row;width:100%}section.product-detail div.layouter .form-container div.product-image-group{margin-right:30px;width:604px;height:650px;max-width:604px;position:-webkit-sticky;position:sticky;top:10px}section.product-detail div.layouter .form-container div.product-image-group div{display:flex;flex-direction:row;cursor:pointer}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list{display:flex;flex-direction:column;margin-right:4px;min-width:120px;overflow:hidden;position:relative;justify-content:flex-start;max-height:480px}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame{border:2px solid transparent;background:#f2f2f2;width:120px;max-height:120px}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame.active{border-color:#0031f0}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame img{height:100%;width:100%}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control{width:100%;position:absolute;text-align:center;cursor:pointer;z-index:1}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control .overlay{opacity:.3;background:#242424;width:100%;height:18px;position:absolute;left:0;z-index:-1}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control .icon{z-index:2}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control.top{top:0}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control.bottom{bottom:0}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image{display:block;position:relative;background:#f2f2f2;width:100%;max-height:480px;height:100%}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image img{width:100%;height:auto;max-height:480px}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image .add-to-wishlist{background-image:url(../images/wishlist.svg);position:absolute;top:10px;right:12px;background-color:transparent;border:0;cursor:pointer;padding:0;width:32px;height:32px}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image .add-to-wishlist:hover{background-image:url(../images/wishlist-added.svg)}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image .add-to-wishlist.already{background-image:url(../images/wishlist-added.svg)!important}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image .share{position:absolute;top:10px;right:45px}section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons{display:none;flex-direction:row;margin-top:10px;width:79.5%;float:right;justify-content:space-between}section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons .addtocart{width:49%;background:#000;white-space:normal;text-transform:uppercase}section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons .buynow{width:49%;white-space:nowrap;text-transform:uppercase}section.product-detail div.layouter .form-container .details{width:50%;overflow-wrap:break-word}section.product-detail div.layouter .form-container .details .product-price{margin-bottom:14px}section.product-detail div.layouter .form-container .details .product-price .sticker{display:none}section.product-detail div.layouter .form-container .details .product-ratings{margin-bottom:20px}section.product-detail div.layouter .form-container .details .product-ratings .icon{width:16px;height:16px}section.product-detail div.layouter .form-container .details .product-ratings .total-reviews{display:inline-block;margin-left:15px}section.product-detail div.layouter .form-container .details .product-heading{font-size:24px;color:#242424;margin-bottom:15px}section.product-detail div.layouter .form-container .details .product-price{margin-bottom:15px;word-break:break-all}section.product-detail div.layouter .form-container .details .product-price .special-price{font-size:24px}section.product-detail div.layouter .form-container .details .stock-status{margin-bottom:15px;font-weight:600;color:#fc6868}section.product-detail div.layouter .form-container .details .stock-status.active{color:#4caf50}section.product-detail div.layouter .form-container .details .description{margin-bottom:15px}section.product-detail div.layouter .form-container .details .description ul{padding-left:40px;list-style:disc}section.product-detail div.layouter .form-container .details .quantity{padding-top:15px;border-top:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .downloadable-container .sample-list{padding:15px 0;border-top:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .downloadable-container .sample-list h3{font-size:16px;margin-top:0}section.product-detail div.layouter .form-container .details .downloadable-container .sample-list ul li{margin-bottom:5px}section.product-detail div.layouter .form-container .details .downloadable-container .sample-list ul li:last-child{margin-bottom:0}section.product-detail div.layouter .form-container .details .downloadable-container .link-list{padding:15px 0;border-top:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .downloadable-container .link-list h3{font-size:16px;margin-top:0}section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li{margin-bottom:15px}section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li:last-child{margin-bottom:0}section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li .checkbox{display:inline-block;margin:0}section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li a{float:right;margin-top:3px}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list{padding:15px 0;border-top:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li{margin-bottom:15px;width:100%;display:inline-block}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li:last-child{margin-bottom:0}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li:first-child span{font-weight:600}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li:first-child span:last-child{float:right;width:50px;text-align:left}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .name{vertical-align:middle;display:inline-block}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .name .product-price{margin-top:5px;margin-bottom:0;font-size:14px;word-break:break-all}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .name .product-price .special-price{font-size:16px}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .qty{float:right}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .qty .control-group{max-width:none;width:auto;text-align:center;margin-bottom:0;border-top:0;padding-top:0}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .qty .control-group label{display:none}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .qty .control-group .control{height:38px;width:60px;text-align:center;line-height:38px}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list{padding:15px 0;border-top:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list h3{font-size:16px;margin:0;color:#242424}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item{border-bottom:1px solid hsla(0,0%,63.5%,.2);padding:15px 0;width:100%;display:inline-block}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item:last-child{border-bottom:0;padding-bottom:0}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group{margin-bottom:0;color:#5e5e5e}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group label{color:#242424}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group .control{color:#5e5e5e}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group .price{margin-left:15px}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .quantity{border-top:0;padding-bottom:0}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .quantity.has-error button{border-color:#fc6868;color:#fc6868}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-error{float:left;width:100%}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item.has-error button{border-color:#fc6868;color:#fc6868}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary{padding:15px 0;border-top:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary h3{font-size:16px;margin:0;color:#242424}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary .quantity{border-top:0}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary .bundle-price{font-weight:600;font-size:24px;color:#ff6472;margin-top:10px}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary ul.bundle-items li{margin-bottom:20px}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary ul.bundle-items li:last-child{margin-bottom:0}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary ul.bundle-items li .selected-products{color:#5e5e5e}section.product-detail div.layouter .form-container .details .full-description *{max-width:100%}section.product-detail div.layouter .form-container .details .full-description ul{padding-left:40px;list-style:disc}section.product-detail div.layouter .form-container .details .full-specifications td{padding:10px 0;color:#5e5e5e}section.product-detail div.layouter .form-container .details .full-specifications td:first-child{padding-right:40px}section.product-detail div.layouter .form-container .details .accordian .accordian-header{padding-left:0;font-weight:600}section.product-detail div.layouter .form-container .details .accordian .accordian-content{padding:20px 0}section.product-detail div.layouter .form-container .details .attributes{display:block;width:100%;border-bottom:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group{margin-bottom:20px}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container{margin-top:10px;display:inline-block}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch{display:inline-block;margin-right:5px;min-width:40px;height:40px}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch span{min-width:38px;height:38px;float:left;border:1px solid #c7c7c7;border-radius:3px;line-height:36px;text-align:center;cursor:pointer;padding:0 10px}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch img{width:38px;height:38px;border:1px solid #c7c7c7;border-radius:3px;cursor:pointer;background:#f2f2f2}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch input:checked+img,section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch input:checked+span{border:1px solid #242424}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch input{display:none}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .no-options{color:#fb3949}.accordian .accordian-header,.accordian div[slot*=header],accordian .accordian-header,accordian div[slot*=header]{font-size:16px!important}.vue-slider .vue-slider-rail{background-color:#ccc;cursor:pointer}.vue-slider .vue-slider-dot-handle{width:100%;height:100%;border-radius:50%;background-color:#fff;box-shadow:.5px .5px 2px 1px rgba(0,0,0,.32)}.vue-slider .vue-slider-dot-tooltip-inner,.vue-slider .vue-slider-dot-tooltip-text{border-color:#ff6472!important;background-color:#ff6472!important}.vue-slider .vue-slider-dot-tooltip-text{display:block;font-size:14px;min-width:20px;padding:2px 5px;text-align:center;border-radius:5px;white-space:nowrap;color:#fff}.vue-slider .vue-slider-dot-tooltip-text:before{content:"";position:absolute;bottom:-10px;left:50%;width:0;height:0;border:6px solid transparent\0;border-top-color:inherit;transform:translate(-50%)}.vue-slider .vue-slider-process{background-color:#ff6472!important}@media only screen and (max-width:720px){section.product-detail div.layouter .form-container{flex-direction:column}section.product-detail div.layouter .form-container div.product-image-group{margin-right:0;max-width:none;width:auto;min-height:400px;height:auto;position:unset}section.product-detail div.layouter .form-container div.product-image-group .loader{margin-left:47%}section.product-detail div.layouter .form-container div.product-image-group div{flex-direction:column-reverse}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list{margin-top:5px;flex-direction:row;overflow-x:scroll;margin-right:0}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame img{height:100%;width:auto}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control{display:none}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image{display:flex}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image img{margin-left:auto;margin-right:auto;width:480px}section.product-detail div.layouter .form-container div.product-image-group div .wrap{flex-direction:row;width:100%!important}section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons{width:100%}section.product-detail div.layouter .form-container .details{width:100%;margin-top:20px}}@media only screen and (max-width:510px){section.product-detail div.layouter .form-container div.product-image-group .product-hero-image img{width:100%!important}}.rating-reviews .rating-header{padding:20px 0}.rating-reviews .stars .icon{width:16px;height:16px}.rating-reviews .overall{display:flex;flex-direction:row;align-items:center;justify-content:space-between}.rating-reviews .overall .review-info .number{font-size:34px}.rating-reviews .overall .review-info .total-reviews{margin-top:10px}.rating-reviews .reviews{margin-top:40px;margin-bottom:40px}.rating-reviews .reviews .review{margin-bottom:25px}.rating-reviews .reviews .review .title{margin-bottom:5px}.rating-reviews .reviews .review .stars{margin-bottom:15px;display:inline-block}.rating-reviews .reviews .review .message{margin-bottom:10px}.rating-reviews .reviews .review .reviewer-details{color:#5e5e5e}.rating-reviews .reviews .view-all{margin-top:15px;color:#0031f0;margin-bottom:15px}section.cart{width:100%;color:#242424;margin-bottom:80px;margin-top:20px}section.cart .title{font-size:24px}section.cart .cart-content{margin-top:20px;width:100%;display:inline-block}section.cart .cart-content .left-side{width:70%;float:left}section.cart .cart-content .left-side .misc-controls{width:100%;display:inline-flex;align-items:center;justify-content:space-between;margin-top:20px}section.cart .cart-content .left-side .misc-controls a.link,section.cart .cart-content .left-side .misc-controls div button{margin-right:15px}section.cart .cart-content .right-side{width:30%;display:inline-block;padding-left:40px}.cart-item-list .item{padding:10px;display:flex;flex-direction:row;border:1px solid #c7c7c7;border-radius:2px}.cart-item-list .item .item-image{margin-right:15px}.cart-item-list .item .item-image img{height:160px;width:160px}.cart-item-list .item .item-details{display:flex;flex-direction:column;justify-content:flex-start;width:100%;overflow-x:auto}.cart-item-list .item .item-details .item-title{font-size:18px;margin-bottom:10px;font-weight:600}.cart-item-list .item .item-details .item-title a{color:#242424}.cart-item-list .item .item-details .price{margin-bottom:10px;font-size:18px;font-weight:600}.cart-item-list .item .item-details .summary{margin-bottom:17px}.cart-item-list .item .item-details .misc{display:flex;width:100%;flex-direction:row;justify-content:flex-start;align-items:flex-start;margin-top:10px}.cart-item-list .item .item-details .misc .control-group{font-size:16px!important;margin:0 15px 0 0;width:auto}.cart-item-list .item .item-details .misc .control-group .wrap{display:inline-flex;align-items:center}.cart-item-list .item .item-details .misc .control-group label{margin-right:15px}.cart-item-list .item .item-details .misc .control-group .control{height:38px;width:60px;text-align:center;line-height:38px}.cart-item-list .item .item-details .misc .remove,.cart-item-list .item .item-details .misc .towishlist{line-height:35px;margin-right:15px}.cart-item-list .item .error-message{color:#ff6472}.quantity{display:inline-block!important}.quantity label{margin-bottom:10px}.quantity button{width:40px;height:38px;font-size:16px;background:#fff;border:1px solid #c7c7c7;float:left;cursor:pointer}.quantity button.decrease{border-radius:3px 0 0 3px}.quantity button.increase{border-radius:0 3px 3px 0}.quantity.control-group .control{text-align:center;float:left;width:60px;height:38px;margin:0;border:1px solid #c7c7c7;border-right:none;border-left:none;border-radius:0}.quantity.control-group .control:focus{border-color:#c7c7c7}.coupon-container .discount-control .control-group{margin-top:20px}.coupon-container .discount-control .control-group .control{width:100%}.coupon-container .applied-coupon-details{margin-top:30px}.coupon-container .applied-coupon-details .right{float:right}.coupon-container .applied-coupon-details .right .icon{vertical-align:text-bottom;margin-bottom:1px;cursor:pointer}.order-summary h3{font-size:16px;margin-top:0}.order-summary .item-detail{margin-top:12px}.order-summary .item-detail label.right{float:right}.order-summary .payable-amount{margin-top:17px;border-top:1px solid #c7c7c7;padding-top:12px}.order-summary .payable-amount label{font-weight:700}.order-summary .payable-amount label.right{float:right}@media only screen and (max-width:815px){section.cart .cart-content{display:block}section.cart .cart-content .left-side{width:100%;float:none}section.cart .cart-content .left-side .misc-controls{position:relative;top:300px;margin-top:0}section.cart .cart-content .right-side{width:100%;padding-left:0;position:relative;top:-20px}}@media only screen and (max-width:600px){section.cart .cart-content .left-side .cart-item-list .item{display:flex;flex-direction:column}section.cart .cart-content .left-side .cart-item-list .item .item-details{margin-top:10px}section.cart .cart-content .left-side .cart-item-list .item .item-details .misc{display:flex;flex-wrap:wrap;line-height:40px}}@media only screen and (max-width:574px){section.cart .cart-content .left-side .misc-controls{display:block;top:300px}section.cart .cart-content .left-side .misc-controls div button{width:100%;margin-top:10px}section.cart .cart-content .left-side .misc-controls div a{margin-top:10px;width:100%;text-align:center}section.cart .cart-content .right-side{top:-100px}}.checkout-method-group .line-one{display:inline-flex;align-items:center}.checkout-method-group .line-one .radio-container{padding-left:28px}.checkout-method-group .line-one .method-label{margin-top:4px}.checkout-method-group .line-two{margin-left:30px}.checkout-process{display:flex;flex-direction:row;width:100%;margin-top:20px;margin-bottom:20px;font-size:16px;color:#242424}.checkout-process .col-main{width:70%;margin-right:5%}.checkout-process .col-main ul.checkout-steps{display:inline-flex;justify-content:space-between;width:100%;padding-bottom:15px;border-bottom:1px solid #c7c7c7}.checkout-process .col-main ul.checkout-steps li{height:48px;display:flex}.checkout-process .col-main ul.checkout-steps li .decorator{height:48px;width:48px;border-radius:50%;display:inline-flex;border:1px solid #c7c7c7;background-repeat:no-repeat;background-position:50%}.checkout-process .col-main ul.checkout-steps li .decorator.address-info{background-image:url(../images/address.svg)}.checkout-process .col-main ul.checkout-steps li .decorator.shipping{background-image:url(../images/shipping.svg)}.checkout-process .col-main ul.checkout-steps li .decorator.payment{background-image:url(../images/payment.svg)}.checkout-process .col-main ul.checkout-steps li .decorator.review{background-image:url(../images/finish.svg)}.checkout-process .col-main ul.checkout-steps li.completed{cursor:pointer}.checkout-process .col-main ul.checkout-steps li.completed .decorator{background-image:url(../images/complete.svg)}.checkout-process .col-main ul.checkout-steps li span{margin-left:7px;margin-top:auto;margin-bottom:auto}.checkout-process .col-main ul.checkout-steps li.active{color:#2650ef}.checkout-process .col-main ul.checkout-steps li.active .decorator{border:1px solid #2650ef}.checkout-process .col-main .step-content{padding-top:20px}.checkout-process .col-main .step-content .form-header{display:inline-flex;align-items:center;justify-content:space-between;width:100%;height:30px}.checkout-process .col-main .step-content .form-header .checkout-step-heading{font-size:24px;font-weight:700;float:left}.checkout-process .col-main .step-content .form-header .btn{float:right;font-size:14px}.checkout-process .col-main .step-content .form-container{border-bottom:1px solid #c7c7c7;padding-top:20px;padding-bottom:20px}.checkout-process .col-main .step-content .shipping-methods{font-size:16px}.checkout-process .col-main .step-content .shipping-methods .ship-method-carrier{margin-bottom:15px;font-weight:700}.checkout-process .col-main .step-content .payment-methods .radio-container{padding-left:28px}.checkout-process .col-main .step-content .payment-methods .control-info{margin-left:28px}.checkout-process .col-main .step-content .payment-methods .instructions{margin-top:10px;margin-left:30px}.checkout-process .col-main .step-content .payment-methods .instructions label{font-weight:600;font-size:14px}.checkout-process .col-main .step-content .payment-methods .instructions p{margin:0;font-size:14px;color:#777;font-style:italic}.checkout-process .col-main .step-content .address-summary{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;width:100%}.checkout-process .col-main .step-content .address-summary div.billing-address{margin-right:25%}.checkout-process .col-main .step-content .address-summary div.billing-address .horizontal-rule,.checkout-process .col-main .step-content .address-summary div.shipping-address .horizontal-rule{width:40px;background:#242424}.checkout-process .col-main .step-content .address-summary .label{width:10%}.checkout-process .col-main .step-content .address-summary .address-card-list{width:85%}.checkout-process .col-main .step-content .cart-item-list .item .row .title{width:100px;display:inline-block;color:#a5a5a5;font-weight:500;margin-bottom:10px}.checkout-process .col-main .step-content .cart-item-list .item .row .value{font-size:18px;font-weight:600}.checkout-process .col-main .step-content .order-description{display:inline-block;width:100%}.checkout-process .col-main .step-content .order-description .shipping{margin-bottom:25px}.checkout-process .col-main .step-content .order-description .decorator{height:48px;width:48px;border-radius:50%;border:1px solid #c7c7c7;vertical-align:middle;display:inline-block;text-align:center}.checkout-process .col-main .step-content .order-description .decorator .icon{margin-top:7px}.checkout-process .col-main .step-content .order-description .text{font-weight:600;vertical-align:middle;display:inline-block}.checkout-process .col-main .step-content .order-description .text .info{font-weight:500;margin-top:2px}.checkout-process .col-right{width:25%;padding-left:40px}@media only screen and (max-width:770px){.checkout-process .col-main{width:100%;padding-right:0}.checkout-process .col-main ul.checkout-steps{border-bottom:none;padding-bottom:0}.checkout-process .col-main ul.checkout-steps span{display:none}.checkout-process .col-main ul.checkout-steps .line{flex-grow:1;border-bottom:1px solid #c7c7c7;margin-left:5px;margin-right:5px}.checkout-process .step-content{padding-top:0}.checkout-process .step-content .control-group .control{width:100%}.checkout-process .col-right{display:none}}@media only screen and (max-width:480px){.checkout-process .col-main .step-content .address,.checkout-process .col-main .step-content .order-description{display:flex;flex-direction:column}.checkout-process .col-main .step-content .address .billing-address,.checkout-process .col-main .step-content .address .pull-left,.checkout-process .col-main .step-content .order-description .billing-address,.checkout-process .col-main .step-content .order-description .pull-left{width:100%!important}.checkout-process .col-main .step-content .address .pull-right,.checkout-process .col-main .step-content .address .shipping-address,.checkout-process .col-main .step-content .order-description .pull-right,.checkout-process .col-main .step-content .order-description .shipping-address{width:100%!important;margin-top:20px}}.attached-products-wrapper{margin-bottom:80px}.attached-products-wrapper .title{margin-bottom:40px;font-size:18px;color:#242424;text-align:center;position:relative}.attached-products-wrapper .title .border-bottom{border-bottom:1px solid hsla(0,0%,63.5%,.2);display:inline-block;width:100px;position:absolute;top:40px;left:50%;margin-left:-50px}.attached-products-wrapper .horizontal-rule{height:1px;background:#c7c7c7;width:148px;margin-bottom:24px;margin-left:auto;margin-right:auto}section.review .category-breadcrumbs{display:inline}section.review .review-layouter{display:flex}section.review .review-layouter .product-info{max-width:25%}section.review .review-layouter .product-info .product-name{font-size:24px}section.review .review-layouter .product-info .product-image img{height:280px;width:280px}section.review .review-layouter .product-info .product-name a{color:#242424}section.review .review-layouter .product-info .product-price{margin-top:10px;word-break:break-all}section.review .review-layouter .product-info .product-price .pro-price{color:#ff6472}section.review .review-layouter .product-info .product-price .pro-price-not{margin-left:10px;font-size:16px;color:#a5a5a5}section.review .review-layouter .product-info .product-price .offer{margin-left:10px;font-size:16px}section.review .review-layouter .review-form{margin-left:20px;width:55%}section.review .review-layouter .review-form .heading{color:#242424;font-weight:600}section.review .review-layouter .review-form .heading .right{float:right;margin-top:-10px}section.review .review-layouter .review-form .star{font-size:23px;color:#d4d4d4;transition:all .2s}section.review .review-layouter .review-form .star:before{content:"\2605"}section.review .review-layouter .review-form .control-group .control{width:100%}section.review .review-layouter .review-form .review-detail{height:150px;border:1px solid #b22222;margin-top:30px;display:flex;flex-direction:row}section.review .review-layouter .review-form .review-detail .rating-review{margin-top:40px;margin-left:20px;width:48%}section.review .review-layouter .review-form .review-detail .rating-review .avg-rating-count span{font-size:34px;text-align:center}section.review .review-layouter .review-form .review-detail .rating-calculate .progress-only{width:20px;border:1px solid #00f}section.review .review-layouter .ratings-reviews{display:flex;align-items:center;justify-content:space-between}section.review .review-layouter .ratings-reviews .left-side{padding:40px 20px;width:50%}section.review .review-layouter .ratings-reviews .left-side .rate{font-size:34px}section.review .review-layouter .ratings-reviews .left-side .stars .icon{height:16px;width:16px}section.review .review-layouter .ratings-reviews .right-side{width:50%}section.review .review-layouter .ratings-reviews .right-side .rater{display:inline-flex;align-items:center;padding-top:5px;width:100%}section.review .review-layouter .ratings-reviews .right-side .rater .star-name{margin-right:5px;width:35px}section.review .review-layouter .ratings-reviews .right-side .rater .rate-number{width:15px}section.review .review-layouter .ratings-reviews .right-side .rater .percentage{width:50px;margin-right:10px}section.review .review-layouter .ratings-reviews .right-side .rater .percentage span{float:right;white-space:nowrap}section.review .review-layouter .ratings-reviews .right-side .rater .line-bar{height:4px;width:calc(100% - 100px);margin-right:5px;margin-left:5px;background:#d8d8d8}section.review .review-layouter .ratings-reviews .right-side .rater .line-bar .line-value{background-color:#0031f0}@media only screen and (max-width:770px){section.review .category-breadcrumbs{display:none}section.review .review-layouter{flex-direction:column}section.review .review-layouter .product-info{max-width:100%}section.review .review-layouter .product-info .product-image,section.review .review-layouter .product-info .product-name,section.review .review-layouter .product-info .product-price{max-width:280px;margin-left:auto;margin-right:auto;word-break:break-all}section.review .review-layouter .review-form{width:100%;margin-left:0}section.review .review-layouter .review-form .heading .right{margin-top:50px}section.review .review-layouter .review-form .ratings-reviews{flex-direction:column;width:100%}section.review .review-layouter .review-form .ratings-reviews .left-side{width:100%;padding:0 0 40px;margin-top:-30px}section.review .review-layouter .review-form .ratings-reviews .right-side{width:100%}section.review .review-layouter .review-form .ratings-reviews .right-side .rater .percentage{margin-right:0}}.auth-content{padding-top:5%;padding-bottom:5%}.auth-content .sign-up-text{margin-bottom:2%;margin-left:auto;margin-right:auto;font-size:18px;color:#a5a5a5;text-align:center}.auth-content .login-form{margin-left:auto;margin-right:auto;display:flex;border:1px solid #c7c7c7;flex-direction:column;max-width:500px;min-width:320px;padding:25px}.auth-content .login-form .login-text{font-size:24px;font-weight:600;margin-bottom:30px}.auth-content .login-form .control-group{margin-bottom:15px!important}.auth-content .login-form .control-group .control{width:100%!important}.auth-content .login-form .forgot-password-link{font-size:17px;color:#0031f0;margin-bottom:5%}.auth-content .login-form .signup-confirm{margin-bottom:5%}.auth-content .login-form .btn-primary{width:100%;text-transform:uppercase}.account-content{width:100%;display:flex;flex-direction:row;margin-top:5.5%;margin-bottom:5.5%}.account-content a.btn.btn-lg.btn-primary{float:right}.account-content .sidebar{display:flex;flex-direction:column;align-content:center;justify-content:flex-start;width:20%;height:100%}.account-content .menu-block{margin-bottom:30px}.account-content .menu-block:last-child{margin-bottom:0}.account-content .menu-block .menu-block-title{padding-bottom:10px;font-size:18px}.account-content .menu-block .menu-block-title .right{display:none}.account-content .menu-block .menubar{border:1px solid #c7c7c7;color:#a5a5a5;position:relative}.account-content .menu-block .menubar li{width:95%;height:50px;margin-left:5%;display:flex;flex-direction:row;justify-content:flex-start;align-items:center;border-bottom:1px solid #c7c7c7;text-align:center}.account-content .menu-block .menubar li a{color:#5e5e5e;width:100%;text-align:left}.account-content .menu-block .menubar li .icon{display:none;position:absolute;right:12px}.account-content .menu-block .menubar li:first-child{border-top:none}.account-content .menu-block .menubar li:last-child{border-bottom:none}.account-content .menu-block .menubar li.active a{color:#0031f0}.account-content .menu-block .menubar li.active .icon{display:inline-block}.account-content .account-layout{margin-left:40px;width:80%}.account-content .account-layout .account-head .back-icon,.account-content .account-layout .responsive-empty{display:none}.account-table-content{color:#242424;margin-top:1.4%}.account-table-content table{width:100%}.account-table-content table tbody tr{height:45px}.account-table-content table tbody tr td{width:250px}.address-holder{display:flex;flex-direction:row;justify-content:flex-start;align-items:flex-start;flex-wrap:wrap;width:100%}.address-card{width:260px;border:1px solid #c7c7c7;padding:15px;margin-right:15px;margin-bottom:15px}.address-card .control-group{width:15px;height:15px;margin-top:10px}.address-card .details{font-weight:lighter}.address-card .details span{display:block}.address-card .details .control-links{width:90%;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;align-items:center}.address-card .details .control-links .btn{height:30px}.edit-form{display:flex;border:1px solid #c7c7c7;flex-direction:column;min-height:345px;padding:25px}@media only screen and (max-width:770px){.account-content{flex-direction:column}.account-content .sidebar{width:100%}.account-content .sidebar .menu-block .menu-block-title{height:50px;padding-top:13px;border-bottom:1px solid #c7c7c7;border-top:1px solid #c7c7c7}.account-content .sidebar .menu-block .menu-block-title .right{display:block;float:right;align-self:center}.account-content .sidebar .menu-block .menubar{border:0;display:none}.account-content .sidebar .menu-block .menubar>li{margin-left:0;width:100%}.account-content .sidebar .menu-block .menubar>li .icon{right:0}.account-content .sidebar .menu-block .menubar>li:last-child{border-bottom:1px solid #c7c7c7}.account-content .account-layout{margin-left:0;margin-top:20px;width:100%}.account-content .account-layout .account-head{display:flex;justify-content:space-between;border-bottom:1px solid #c7c7c7;border-top:1px solid #c7c7c7;height:50px;margin-top:10px}.account-content .account-layout .account-head .account-action{margin-top:12px;margin-left:15px}.account-content .account-layout .account-head .back-icon{display:block}.account-content .account-layout .account-head span{margin-top:13px;font-size:18px}.account-content .account-layout .account-head .horizontal-rule{display:none}.account-content .account-layout .account-table-content{margin-top:2%}.account-content .account-layout .account-table-content table tbody tr{height:70px}.account-content .account-layout .account-table-content table tbody tr td{display:block}.account-content .account-layout .account-table-content .address-holder{justify-content:center}.account-content .account-items-list,.account-content .edit-form{margin-top:20px}.account-content .account-items-list .responsive-empty,.account-content .edit-form .responsive-empty{display:block}.account-content .control-group .control{width:100%}}.sale-container{color:#5e5e5e}.sale-container .sale-section .secton-title{font-size:18px;color:#8e8e8e;padding:15px 0;border-bottom:1px solid #c7c7c7}.sale-container .sale-section .section-content{display:block;padding:20px 0;border-bottom:1px solid #e8e8e8}.sale-container .sale-section .section-content .row{display:block;padding:7px 0}.sale-container .sale-section .section-content .row .title{width:200px;letter-spacing:-.26px;display:inline-block}.sale-container .sale-section .section-content .row .value{letter-spacing:-.26px;display:inline-block}.sale-container .sale-section .section-content .order-box-container{display:inline-block;width:100%}.sale-container .sale-section .section-content .order-box-container .box{float:left;width:25%}.sale-container .sale-section .section-content .order-box-container .box .box-title{padding:10px 0;font-size:18px;color:#8e8e8e}.sale-container .sale-section .section-content .order-box-container .box .box-content{color:#3a3a3a;padding-right:10px}.sale-container .sale-section .section-content .qty-row{display:block}.sale-container .totals{padding-top:20px;display:inline-block;width:100%;border-top:1px solid #e8e8e8}.sale-container .totals .sale-summary{height:130px;float:right;border-collapse:collapse;left:3px;position:relative}.sale-container .totals .sale-summary tr td{padding:5px 8px;width:auto;color:#3a3a3a}.sale-container .totals .sale-summary tr.bold{font-weight:600;font-size:15px}.sale-container .totals .sale-summary tr.border td{border-bottom:1px solid #c7c7c7}@media only screen and (max-width:770px){.sale-container .sale-section .section-content{border-bottom:none;padding:10px 0}.sale-container .sale-section .section-content .row{display:flex;flex-direction:column}.sale-container .sale-section .section-content .row .title{line-height:20px}.sale-container .sale-section .section-content .totals{border-top:none}.sale-container .sale-section .section-content .totals .sale-summary{width:100%}.sale-container .sale-section .section-content .totals .sale-summary tr td:nth-child(2){display:none}.sale-container .sale-section .section-content .order-box-container{display:flex;flex-direction:column}.sale-container .sale-section .section-content .order-box-container .box{width:100%;margin:10px auto}.sale-container .sale-section .section-content .qty-row{display:inline}}.verify-account{text-align:center;background:#204d74;width:200px;margin-right:auto;margin-left:auto;border-radius:4px}.verify-account a{color:#fff!important}.cp-spinner{position:absolute;left:calc(50% - 24px);margin-top:calc(40% - 24px)}@media only screen and (max-width:720px){.cp-spinner{left:50%;margin-left:-24px;top:50%;margin-top:-24px}}@media only screen and (max-width:720px){.error-container .wrapper{flex-direction:column-reverse!important;margin:10px 0 20px!important;align-items:start!important;height:100%!important}}@media only screen and (max-width:770px){.table table{width:100%}.table table thead{display:none}.table table tbody tr td:before{content:attr(data-value);font-size:15px;font-weight:600;display:inline-block;width:120px}.table table tbody td{border-bottom:none!important;display:block;width:100%!important}.table table tbody td div{position:relative;left:100px;top:-20px}.table table tbody tr{border:1px solid #c7c7c7}}.show-wishlist{z-index:-1!important}.filter-row-one .dropdown-filters{position:relative!important;right:1px!important}@media only screen and (max-width:770px){.table .grid-container{margin-top:10px;overflow-x:hidden}.table .grid-container .filter-row-one{display:block}.table .grid-container .filter-row-one .dropdown-filters{margin-top:10px}.image-search-container .icon.camera-icon{top:10px;position:relative;margin-left:10px}.image-search-container input[type=file]{display:none}.image-search-result .searched-terms{margin-top:15px;margin-left:0!important}.image-search-result .term-list{line-height:35px}}.rtl{direction:rtl}.rtl .dropdown-filters .per-page-label{position:static!important}.rtl .header .header-top div.left-content ul.logo-container{margin-right:0;margin-left:12px}.rtl .header .header-top div.left-content ul.search-container li.search-group .search-field{border:2px solid #c7c7c7;padding-right:12px;padding-left:0;border-radius:2px;border-top-left-radius:0;border-bottom-left-radius:0;-webkit-appearance:none}.rtl .header .header-top div.left-content ul.search-container li.search-group .search-icon-wrapper{border:2px solid #c7c7c7;border-right:none;border-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;margin-left:-2px}.rtl .header .header-top div.left-content ul.search-container li.search-group .image-search-container{left:48px;right:unset}.rtl .header .header-top div.right-content .right-content-menu>li{border-right:2px solid #c7c7c7;padding:0 15px}.rtl .header .header-top div.right-content .right-content-menu>li:last-child{padding-left:0}.rtl .header .header-top div.right-content .right-content-menu>li:first-child{border-right:0;padding-right:0}.rtl .header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list{left:0;right:unset!important}.rtl .header .header-top div.right-content .right-content-menu .cart-dropdown-container .count{display:inline-block}.rtl .header .header-top div.right-content .right-content-menu .account,.rtl .header .header-top div.right-content .right-content-menu .currency{right:unset;left:0}.rtl .header .header-top div.right-content .right-content-menu .guest div{display:flex;justify-content:space-between}.rtl .header .header-bottom .nav>li{float:right;margin-right:0;margin-left:1px}.rtl .header .header-bottom .nav a{padding:.8em .5em .8em .3em!important}.rtl .header .header-bottom .nav li a>.icon{transform:rotate(180deg)}.rtl .header .header-bottom .nav>li li:hover>ul{left:unset!important;right:100%!important}.rtl .header .header-bottom .nav ul{left:99999em}.rtl .header .search-responsive .search-content .right{float:left}.rtl .dropdown-list{text-align:right}.rtl .dropdown-list.bottom-right{left:0;right:auto}@media only screen and (max-width:720px){.rtl .header .header-top div.right-content .menu-box{margin-left:0;margin-right:5px}.rtl .header .header-top div.right-content .right-content-menu .account{position:absolute;left:0;right:auto}.rtl .header .header-top div.right-content .right-content-menu>li{padding:0;border:0}.rtl .header .header-top div.right-content .search-box{margin-left:5px}.rtl .header .header-bottom .nav>li{float:none}.rtl .header .header-bottom .nav li>.icon{float:left;transform:rotate(180deg)}.rtl .header .header-bottom .icon.icon-arrow-down{margin-left:5px}}.rtl section.slider-block div.slider-content div.slider-control{left:2%;right:auto}.rtl section.slider-block div.slider-content div.slider-control .slider-left{float:left}.rtl section.slider-block div.slider-content div.slider-control .slider-right{margin-left:5px}@media only screen and (max-width:720px){.rtl section.slider-block div.slider-content div.slider-control{left:0}}.rtl .main-container-wrapper .product-card .sticker{left:auto;right:20px;min-width:52px}.rtl .main-container-wrapper .product-card .cart-wish-wrap .addtocart{margin-right:0;margin-left:10px}.rtl section.product-detail div.layouter .form-container div.product-image-group{margin-right:0;margin-left:30px}.rtl section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons{float:left!important}.rtl section.product-detail div.layouter .form-container div .thumb-list{margin-left:4px;margin-right:0}.rtl section.product-detail div.layouter .form-container .details .accordian .accordian-header{padding:20px 0 20px 15px}.rtl section.product-detail div.layouter .form-container .details .accordian .accordian-header .icon{float:left}.rtl section.product-detail div.layouter .form-container .details .accordian .accordian-header .expand-icon{margin-left:10px}.rtl section.product-detail div.layouter .form-container .details .full-specifications td:first-child{padding-right:0;padding-left:40px}.rtl section.product-detail div.layouter .form-container .details .product-ratings .total-reviews{margin-left:0;margin-right:15px}.rtl section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li a{float:left;margin-top:3px}@media only screen and (max-width:720px){.rtl section.product-detail div.layouter .form-container div.product-image-group{margin-right:0;margin-left:0}}.rtl .main .category-container .layered-filter-wrapper,.rtl .main .category-container .responsive-layred-filter{padding-right:0;padding-left:20px}.rtl .main .top-toolbar .pager{float:left}.rtl .main .top-toolbar .pager .view-mode{margin-right:0;margin-left:20px}.rtl .main .top-toolbar .pager .sorter{margin-right:0;margin-left:10px}.rtl .main .top-toolbar .pager label{margin-right:0;margin-left:5px}.rtl .main .top-toolbar .page-info{float:right}.rtl section.review .review-layouter .review-form{margin-left:0;margin-right:20px}.rtl section.review .review-layouter .review-form .heading .right{float:left}.rtl section.review .review-layouter .review-form .ratings-reviews .right-side .rater .star-name{margin-right:0;margin-left:5px}@media only screen and (max-width:770px){.rtl section.review .review-layouter .review-form{margin-right:0}}.rtl section.cart .cart-content .left-side{width:70%;float:right}.rtl section.cart .cart-content .left-side .misc-controls a.link{margin-left:15px;margin-right:0}.rtl section.cart .cart-content .right-side{width:30%;padding-right:40px;padding-left:0}.rtl .order-summary .item-detail label.right,.rtl .payable-amount label.right{float:left}.rtl .item div{margin-left:15px;margin-right:0!important}.rtl .cart-item-list .item .item-details .misc div.qty-text{margin-right:0;margin-left:10px}.rtl .cart-item-list .item .item-details .misc .remove,.rtl .cart-item-list .item .item-details .misc input.box{margin-right:0;margin-left:30px}.rtl .cart-item-list .item .item-details .misc .control-group label{margin-left:15px;margin-right:0}@media only screen and (max-width:770px){.rtl section.cart .cart-content .left-side{width:100%;float:none}.rtl section.cart .cart-content .left-side .misc-controls div button{margin-right:0}.rtl section.cart .cart-content .right-side{width:100%;padding-right:0}}.rtl .checkout-process .col-right{padding-left:0;padding-right:40px}.rtl .checkout-process .col-main{padding-left:40px;padding-right:0}.rtl .checkout-process .col-main ul.checkout-steps li span{margin-right:7px;margin-left:0}.rtl .checkout-process .col-main .step-content .form-header h1{float:right}.rtl .checkout-process .col-main .step-content .form-header .btn{float:left}.rtl .checkout-process .col-main .step-content .payment-methods .control-info{margin-right:28px;margin-left:0}.rtl .checkout-process .col-main .step-content .address .billing-address,.rtl .checkout-process .col-main .step-content .address .pull-left,.rtl .checkout-process .col-main .step-content .order-description .billing-address,.rtl .checkout-process .col-main .step-content .order-description .pull-left{float:right!important}.rtl .checkout-process .col-main .step-content .address .pull-right,.rtl .checkout-process .col-main .step-content .address .shipping-address,.rtl .checkout-process .col-main .step-content .order-description .pull-right,.rtl .checkout-process .col-main .step-content .order-description .shipping-address{float:left!important}.rtl .radio{margin:10px 0 5px 5px}.rtl .radio .radio-view{margin-left:5px;margin-right:0}.rtl .radio input{right:0;left:auto}.rtl .radio-container .checkmark{top:2px;left:4px}.rtl .mt-5{margin-top:5px;margin-right:28px}@media only screen and (max-width:770px){.rtl .checkout-process .col-main{padding-left:0}}.rtl .account-content .account-layout{margin-left:0;margin-right:40px}.rtl .account-content .menu-block .menubar li{margin-left:0;margin-right:5%}.rtl .account-content .menu-block .menubar li a{text-align:right}.rtl .account-content .menu-block .menubar li .icon{right:unset;left:12px;transform:rotate(180deg)}.rtl .account-head .account-action{float:left}.rtl a.btn.btn-lg.btn-primary{float:left;margin-right:15px}.rtl .account-item-card .media-info .info{margin-right:20px;margin-left:0}.rtl .account-item-card .operations a span{float:left}.rtl .table table{text-align:right}.rtl .sale-container .totals .sale-summary{float:left}.rtl .sale-container .sale-section .section-content .order-box-container{display:flex}@media (max-width:770px){.rtl .account-content .account-layout{margin-right:0}.rtl .account-content .account-layout .account-head .account-action{margin-left:0}.rtl .account-content .sidebar .menu-block .menu-block-title .right{float:left}.rtl .account-content .sidebar .menu-block .menubar>li{margin-right:0}}.rtl .footer .footer-content .footer-list-container .list-container .list-group li span.icon{margin-left:5px;margin-right:0}@media (max-width:720px){.rtl .footer{padding-right:15px;padding-left:10%}.rtl .footer .footer-list-container{padding-right:0!important}}.rtl .cp-spinner{position:absolute;right:calc(50% - 24px);margin-top:calc(40% - 24px)}@media only screen and (max-width:720px){.rtl .cp-spinner{right:50%;margin-right:-24px;left:auto}}.rtl .product-list .product-card .product-information{padding-left:0;padding-right:30px;float:left}.rtl .zoom-image-direction{left:0;right:476px!important}.banner-container{width:100%;float:left;padding:0 18px;margin-bottom:40px}.banner-container .left-banner{padding-right:20px;width:60%;float:left}.banner-container .left-banner img{width:100%}.banner-container .right-banner{padding-left:20px;width:40%;float:left}.banner-container .right-banner img{max-width:100%}.banner-container .right-banner img:first-child{padding-bottom:20px;display:block}.banner-container .right-banner img:last-child{padding-top:20px;display:block}@media (max-width:720px){.banner-container .left-banner{padding-right:0;width:100%}.banner-container .right-banner{padding-left:0;width:100%}.banner-container .right-banner img:first-child{padding-bottom:0;padding-top:25px}.banner-container .right-banner img:last-child{padding-top:25px}}.static-container{display:block;width:100%;padding:10px;margin-left:auto;margin-right:auto}.static-container.one-column{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}.static-container.two-column{display:grid;grid-template-columns:48% 48%;grid-column-gap:4%}.static-container.three-column{display:grid;grid-template-columns:30% 30% 30%;grid-column-gap:4%}.item-options{font-size:14px;font-weight:200}.item-options b{font-weight:500}.image-search-result{background-color:rgba(0,65,255,.1);border:1px solid #0041ff;padding:20px;margin-bottom:20px;border-radius:2px;display:inline-block;width:100%}.image-search-result .searched-image{float:left}.image-search-result .searched-image img{width:150px;height:auto;box-shadow:1px 1px 3px 0 rgba(0,0,0,.32)}.image-search-result .searched-terms{margin-left:20px;display:inline-block}.image-search-result .searched-terms h3{margin-top:0}.image-search-result .searched-terms .term-list a{padding:5px 8px;background:#fff;margin-right:10px}body{overflow-x:hidden}.comparison-component{width:100%;padding-top:20px}.desc>p,.mt-0{margin-top:0}.comparison-component>h1{display:inline-block}td{padding:15px;min-width:25px;max-width:250px;line-height:30px;vertical-align:top}.icon.remove-product{top:5px;float:right;cursor:pointer;position:relative;background-color:#000}.action>div{display:inline-block}.cart-wish-wrap .btn.btn-lg{padding:5px 10px}.cart-wish-wrap{display:flex}.white-cross-sm-icon{width:24px;height:24px}.add-to-wishlist{margin-left:15px} \ No newline at end of file +@import url(https://fonts.googleapis.com/css?family=Montserrat:400,500&display=swap);@charset "UTF-8";.icon{display:inline-block;background-size:cover}.dropdown-right-icon{background-image:URL(../images/icon-dropdown-left.svg);width:8px;height:8px;margin-left:auto;margin-bottom:2px}.icon-menu-close{background-image:URL(../images/icon-menu-close.svg);width:24px;height:24px;margin-left:auto}.icon-menu-close-adj{background-image:URL(../images/cross-icon-adj.svg);margin-left:auto}.grid-view-icon{background-image:URL(../images/icon-grid-view.svg);width:24px;height:24px}.list-view-icon{background-image:URL(../images/icon-list-view.svg);width:24px;height:24px}.sort-icon{background-image:URL(../images/icon-sort.svg);width:32px;height:32px}.filter-icon{background-image:URL(../images/icon-filter.svg);width:32px;height:32px}.whishlist-icon{background-image:URL(../images/wishlist.svg);width:24px;height:24px}.share-icon{background-image:URL(../images/icon-share.svg);width:24px;height:24px}.icon-menu{background-image:URL(../images/icon-menu.svg);width:24px;height:24px}.icon-search{background-image:URL(../images/icon-search.svg);width:24px;height:24px}.icon-menu-back{background-image:URL(../images/icon-menu-back.svg);width:24px;height:24px}.shipping-icon{background-image:url(../images/shipping.svg);width:32px;height:32px}.payment-icon{background-image:url(../images/payment.svg);width:32px;height:32px}.cart-icon{background-image:url(../images/icon-cart.svg);width:24px;height:24px}.compare-icon{background-image:url(../images/compare_arrows.png);width:32px;height:32px}.wishlist-icon{background-image:url(../images/wishlist.svg);width:32px;height:32px}.icon-arrow-up{background-image:url(../images/arrow-up.svg);width:16px;height:16px}.icon-arrow-down{background-image:url(../images/arrow-down.svg);width:16px;height:16px}.expand-icon{background-image:url(../images/Expand-Light.svg);width:18px;height:18px}.expand-on-icon{background-image:url(../images/Expand-Light-On.svg);width:18px;height:18px}.icon-menu-close-adj{background-image:url(../images/cross-icon-adj.svg);width:32px;height:32px}.icon-facebook{background-image:url(../images/facebook.svg)}.icon-twitter{background-image:url(../images/twitter.svg)}.icon-google-plus{background-image:url(../images/google-plus.svg)}.icon-instagram{background-image:url(../images/instagram.svg)}.icon-linkedin{background-image:url(../images/linkedin.svg)}.icon-dropdown{background-image:url(../images/icon-dropdown.svg)}@-webkit-keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}body{margin:0;padding:0;font-weight:500;max-width:100%;width:auto;color:#242424;font-size:16px}*{font-family:Montserrat,sans-serif}::-webkit-input-placeholder{font-family:Montserrat,sans-serif}::-moz-input-placeholder{font-family:Montserrat,sans-serif}textarea{resize:none}input{font-family:Montserrat,sans-serif}.btn{border-radius:0!important}.pagination.shop{display:flex;flex-direction:row;align-items:center;justify-content:center}@media only screen and (max-width:770px){.pagination.shop{justify-content:space-between}.pagination.shop .page-item{display:none}.pagination.shop .page-item.next,.pagination.shop .page-item.previous{display:block}}.bold{font-weight:700;color:#3a3a3a}.radio-container{display:block;position:relative;padding-left:35px;margin-bottom:12px;cursor:pointer;font-size:16px;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.radio-container input{position:absolute;opacity:0;cursor:pointer;top:0;left:0}.radio-container .checkmark{position:absolute;top:0;left:0;height:16px;width:16px;background-color:#fff;border:2px solid #ff6472;border-radius:50%}.radio-container .checkmark:after{content:"";position:absolute;display:none;top:2px;left:2px;width:8px;height:8px;border-radius:50%;background:#ff6472}.radio-container input:checked~.checkmark:after{display:block}.radio-container input:disabled~.checkmark{display:block;border:2px solid rgba(255,100,113,.4)}.cp-spinner{width:48px;height:48px;display:inline-block;box-sizing:border-box}.cp-round:before{border-radius:50%;border:6px solid #bababa}.cp-round:after,.cp-round:before{content:" ";width:48px;height:48px;display:inline-block;box-sizing:border-box;position:absolute;top:0;left:0}.cp-round:after{border-radius:50%;border:6px solid transparent;border-top-color:#0031f0;-webkit-animation:spin 1s ease-in-out infinite;animation:spin 1s ease-in-out infinite}.radio{margin:10px 0 0!important}.checkbox{margin:10px 0 0}.checkbox .checkbox-view{height:16px!important;width:16px!important;background-image:url(../images/checkbox.svg)!important}.checkbox input:checked+.checkbox-view{background-image:url(../images/checkbox-checked.svg)!important}.pull-right{float:right}.add-to-wishlist .wishlist-icon:hover{background-image:url(../images/wishlist-added.svg)}.add-to-wishlist.already .wishlist-icon{background-image:url(../images/wishlist-added.svg)!important}.product-price{margin-bottom:14px;width:100%;font-weight:600;word-break:break-all}.product-price .price-label{font-size:14px;font-weight:400;margin-right:5px}.product-price .regular-price{color:#a5a5a5;text-decoration:line-through;margin-right:10px}.product-price .special-price{color:#ff6472}.horizontal-rule{display:block;width:100%;height:1px;background:#c7c7c7}.account-head .account-heading{font-size:28px;color:#242424;text-transform:capitalize;text-align:left}.account-head .account-action{font-size:17px;margin-top:1%;color:#0031f0;float:right}.account-head .horizontal-rule{margin-top:1.1%;width:100%;height:1px;vertical-align:middle;background:#c7c7c7}.account-item-card{justify-content:space-between;align-items:center;width:100%}.account-item-card,.account-item-card .media-info{display:flex;flex-direction:row}.account-item-card .media-info .media{height:125px;width:110px}.account-item-card .media-info .info{margin-left:20px;margin-right:20px;display:flex;flex-direction:column;justify-content:space-evenly}.account-item-card .media-info .info .stars .icon{height:16px;width:16px}.account-item-card .operations{display:flex;flex-direction:column;justify-content:space-between;align-items:center}.account-item-card .operations a{width:100%}.account-item-card .operations a span{float:right}.account-items-list{display:block;width:100%}.account-items-list .grid-container{margin-top:40px}.search-result-status{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.grid-container{margin-top:20px}.main-container-wrapper{max-width:1300px;width:auto;padding-left:15px;padding-right:15px;margin-left:auto;margin-right:auto}.main-container-wrapper .content-container{display:block;margin-bottom:40px}.main-container-wrapper .product-grid-4{grid-auto-rows:auto;grid-column-gap:30px;grid-row-gap:15px}.main-container-wrapper .product-grid-3,.main-container-wrapper .product-grid-4{display:grid;grid-template-columns:repeat(auto-fill,minmax(235px,1fr));justify-items:center}.main-container-wrapper .product-grid-3{grid-gap:27px;grid-auto-rows:auto}.main-container-wrapper .product-card{position:relative;padding:15px}.main-container-wrapper .product-card .product-image{max-height:350px;max-width:280px;margin-bottom:10px;background:#f2f2f2}.main-container-wrapper .product-card .product-image img{display:block;height:100%}.main-container-wrapper .product-card .product-name{margin-bottom:14px;width:100%;color:#242424}.main-container-wrapper .product-card .product-name a{color:#242424}.main-container-wrapper .product-card .product-description{display:none}.main-container-wrapper .product-card .product-ratings{width:100%}.main-container-wrapper .product-card .product-ratings .icon{width:16px;height:16px}.main-container-wrapper .product-card .cart-wish-wrap{display:inline-flex;justify-content:flex-start;align-items:center;height:40px}.main-container-wrapper .product-card .cart-wish-wrap .addtocart{margin-right:10px;text-transform:uppercase;text-align:left;box-shadow:1px 1px 0 #ccc}.main-container-wrapper .product-card .cart-wish-wrap .add-to-wishlist{margin-top:5px;background:transparent;border:0;cursor:pointer;padding:0}.main-container-wrapper .product-card .sticker{border-bottom-right-radius:15px;position:absolute;top:15px;left:15px;text-transform:uppercase;padding:4px 13px;font-size:14px;color:#fff;box-shadow:1px 1px 1px #ccc;font-weight:500}.main-container-wrapper .product-card .sticker.sale{background:#ff6472}.main-container-wrapper .product-card .sticker.new{background:#2ed04c}.main-container-wrapper .product-card:hover{box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 2px 16px 4px rgba(40,44,63,.07);transition:.3s}@media only screen and (max-width:580px){.main-container-wrapper .main-container-wrapper{padding:0}}@media only screen and (max-width:551px){.main-container-wrapper .product-grid-3{grid-template-columns:48.5% 48.5%;grid-column-gap:20px}}@media only screen and (max-width:854px){.main-container-wrapper .product-image img{display:block;width:100%}.main-container-wrapper .product-grid-4{grid-template-columns:29.5% 29.5% 29.5%;grid-column-gap:35px}.main-container-wrapper .product-card:hover{padding:5px}}@media only screen and (max-width:653px){.main-container-wrapper .product-image img{display:block;width:100%}.main-container-wrapper .product-grid-4{grid-template-columns:48.5% 48.5%;grid-column-gap:17px}}@media only screen and (max-width:425px){.main-container-wrapper .product-card{font-size:90%}.main-container-wrapper .product-card .product-image img{display:block;width:100%}.main-container-wrapper .product-card .btn.btn-md{padding:5px}.main-container-wrapper .product-grid-4{grid-template-columns:48.5% 48.5%;grid-column-gap:10px}}.main-container-wrapper .product-list{min-height:200px}.main-container-wrapper .product-list .product-card{width:100%;display:flex;flex-direction:row;align-items:center;margin-bottom:20px}.main-container-wrapper .product-list .product-card .product-image{float:left;width:30%;height:350px}.main-container-wrapper .product-list .product-card .product-image img{height:100%;width:100%}.main-container-wrapper .product-list .product-card .product-information{float:right;width:70%;padding-left:30px}.main-container-wrapper .product-list .product-card:last-child{margin-bottom:0}.main-container-wrapper .product-list.empty h2{font-size:20px}.main-container-wrapper section.featured-products{display:block;margin-bottom:5%}.main-container-wrapper section.featured-products .featured-heading{width:100%;text-align:center;text-transform:uppercase;font-size:18px;margin-bottom:20px}.main-container-wrapper section.featured-products .featured-heading .featured-separator{color:#d3d3d3}.main-container-wrapper section.news-update{display:block;box-sizing:border-box;width:100%;margin-bottom:5%}.main-container-wrapper section.news-update .news-update-grid{display:grid;grid-template-columns:58.5% 40%;grid-gap:20px}.main-container-wrapper section.news-update .news-update-grid .block1{display:block;box-sizing:border-box}.main-container-wrapper section.news-update .news-update-grid .block1 img{display:flex;height:100%;width:100%}.main-container-wrapper section.news-update .news-update-grid .block2{display:block;box-sizing:border-box;display:grid;grid-template-rows:repeat(2,minmax(50%,1fr));grid-row-gap:20px}.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block1{display:block;box-sizing:border-box}.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block1 img{width:100%}.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block2{display:block;box-sizing:border-box}.main-container-wrapper section.news-update .news-update-grid .block2 .sub-block2 img{width:100%}section.slider-block{display:block;margin-left:auto;margin-right:auto;margin-bottom:5%}section.slider-block div.slider-content{position:relative;height:500px;margin-left:auto;margin-right:auto}section.slider-block div.slider-content ul.slider-images .show-content{display:none}section.slider-block div.slider-content ul.slider-images li{position:absolute;visibility:hidden}section.slider-block div.slider-content ul.slider-images li.show{display:block;position:relative;visibility:visible;width:100%;-webkit-animation-name:example;animation-name:example;-webkit-animation-duration:4s;animation-duration:4s}section.slider-block div.slider-content ul.slider-images li.show .show-content{display:flex;position:absolute;flex-direction:row;justify-content:center;align-items:center;color:#242424;height:100%;width:100%;top:0}@-webkit-keyframes example{0%{opacity:.1}to{opacity:1}}@keyframes example{0%{opacity:.1}to{opacity:1}}section.slider-block div.slider-content ul.slider-images li img{max-height:500px;width:100%}section.slider-block div.slider-content div.slider-control{display:block;cursor:pointer;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;bottom:2%;right:2%}section.slider-block div.slider-content div.slider-control .dark-left-icon{background-color:#f2f2f2;height:48px;width:48px;max-height:100%;max-width:100%}section.slider-block div.slider-content div.slider-control .light-right-icon{background-color:#242424;height:48px;width:48px;max-height:100%;max-width:100%}@media only screen and (max-width:770px){section.slider-block div.slider-content div.slider-control{display:flex;justify-content:space-between;bottom:46%;right:0;width:100%}}.header{margin-top:16px;margin-bottom:21px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.header .header-top{margin-bottom:16px;display:flex;max-width:100%;width:auto;margin-left:auto;margin-right:auto;align-items:center;justify-content:space-between}.header .header-top div.left-content{display:flex;flex-direction:row;justify-content:flex-start;align-items:center}.header .header-top div.left-content ul.logo-container{margin-right:12px}.header .header-top div.left-content ul.logo-container li{display:flex}.header .header-top div.left-content ul.logo-container li img{max-width:120px;max-height:40px}.header .header-top div.left-content ul.search-container li.search-group{display:inline-flex;justify-content:center;align-items:center;position:relative}.header .header-top div.left-content ul.search-container li.search-group .search-field{height:38px;border-radius:3px;border:2px solid #c7c7c7;border-right:none;border-top-right-radius:0;border-bottom-right-radius:0;padding-left:12px;font-size:14px;-webkit-appearance:none}.header .header-top div.left-content ul.search-container li.search-group .search-icon-wrapper{box-sizing:border-box;height:38px;width:38px;border:2px solid #c7c7c7;border-top-right-radius:3px;border-bottom-right-radius:3px;margin-left:-2px}.header .header-top div.left-content ul.search-container li.search-group .search-icon-wrapper button{background:#fff;border:0;padding:3px 5px;margin:0}.header .header-top div.left-content ul.search-container li.search-group .image-search-container{position:absolute;right:41px;top:7px;background:#fff}.header .header-top div.left-content ul.search-container li.search-group .image-search-container img,.header .header-top div.left-content ul.search-container li.search-group .image-search-container input{display:none}.header .header-top div.right-content .right-content-menu>li{display:inline-block;border-right:2px solid #c7c7c7;min-height:15px;padding:3px 15px 0}.header .header-top div.right-content .right-content-menu>li:first-child{padding-left:0}.header .header-top div.right-content .right-content-menu>li:last-child{border-right:0;padding-right:0}.header .header-top div.right-content .right-content-menu>li .icon{vertical-align:middle}.header .header-top div.right-content .right-content-menu>li .icon:not(.arrow-down-icon){margin-right:5px}.header .header-top div.right-content .right-content-menu>li .arrow-down-icon{width:12px;height:6px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container{border-right:0;padding-right:0}.header .header-top div.right-content .right-content-menu .cart-link{pointer-events:none}.header .header-top div.right-content .right-content-menu ul.dropdown-list{display:none;margin-top:14px}.header .header-top div.right-content .right-content-menu ul.dropdown-list li{border-right:none;padding:5px 10px;display:block}.header .header-top div.right-content .right-content-menu ul.dropdown-list li a{color:#333}.header .header-top div.right-content .right-content-menu .currency{position:absolute;right:0;width:100px}.header .header-top div.right-content .right-content-menu .account{position:absolute;right:0}.header .header-top div.right-content .right-content-menu .account li{padding:20px!important}.header .header-top div.right-content .right-content-menu .account li ul{margin-top:5px}.header .header-top div.right-content .right-content-menu .account li ul>li{padding:5px 10px 5px 0!important}.header .header-top div.right-content .right-content-menu .guest{width:300px}.header .header-top div.right-content .right-content-menu .guest .btn.btn-sm{padding:9px 25px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list{width:387px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container{padding:0}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart{color:#242424}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart>.dropdown-header{width:100%;padding:8px 16px;border-bottom:1px solid #c7c7c7}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart>.dropdown-header p{display:inline;line-height:25px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart>.dropdown-header i{float:right;height:22px;width:22px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-cart>.dropdown-header p.heading{font-weight:lighter}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-content{padding-top:8px;width:100%;max-height:329px;overflow-y:auto}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-content .item{display:flex;flex-direction:row;border-bottom:1px solid #c7c7c7;padding:8px 16px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-content .item img{height:75px;width:75px;margin-right:8px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-content .item-details{height:auto}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .item-details .item-name{font-size:16px;font-weight:700;margin-bottom:8px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .item-details .item-options,.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .item-details .item-price{margin-bottom:8px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .item-details .item-qty{font-weight:lighter;margin-bottom:8px}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-footer{display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding:8px 16px;bottom:0;width:100%;background:#fff}.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list .dropdown-container .dropdown-footer .btn{margin:0;max-width:170px;text-align:center}.header .header-top div.right-content .menu-box,.header .header-top div.right-content .search-box{display:none}.header .header-bottom{height:47px;margin-left:auto;margin-right:auto;border-top:1px solid #c7c7c7;border-bottom:1px solid #c7c7c7;display:block}.header .header-bottom ul.nav{display:block;font-size:16px;max-width:100%;width:auto;margin-left:auto;margin-right:auto}.header .header-bottom .nav ul{margin:0;padding:0;box-shadow:1px 1px 1px 0 rgba(0,0,0,.4)}.header .header-bottom .nav a{display:block;color:#242424;text-decoration:none;padding:.8em .3em .8em .5em;text-transform:capitalize;letter-spacing:-.38px;position:relative}.header .header-bottom .nav li>.icon{display:none}.header .header-bottom .nav{vertical-align:top;display:inline-block}.header .header-bottom .nav li{position:relative}.header .header-bottom .nav>li{float:left;margin-right:1px;height:45px}.header .header-bottom .nav>li>a{margin-bottom:1px}.header .header-bottom .nav>li>a .icon{display:none}.header .header-bottom .nav li li a{margin-top:1px;white-space:normal;word-break:break-word;width:200px}.header .header-bottom .nav li a:first-child:nth-last-child(2):before{content:"";position:absolute;height:0;width:0;border:5px solid transparent;top:50%;right:5px}.header .header-bottom .nav ul{position:absolute;white-space:nowrap;border:1px solid #c7c7c7;background-color:#fff;z-index:10000;left:-99999em}.header .header-bottom .nav>li:hover{background-color:#f2f2f2}.header .header-bottom .nav>li:hover>ul{left:auto;min-width:100%}.header .header-bottom .nav>li li:hover{background-color:#f2f2f2}.header .header-bottom .nav>li li:hover>ul{left:100%;margin-left:1px;top:-2px}.header .header-bottom .nav>li:hover>a:first-child:nth-last-child(2):before,.header .header-bottom .nav li li>a:first-child:nth-last-child(2):before{margin-top:-5px}.header .header-bottom .nav li li:hover>a:first-child:nth-last-child(2):before{right:10px}.header .search-responsive{display:none}.header .search-responsive .search-content{border-bottom:1px solid #c7c7c7;border-top:1px solid #c7c7c7;height:50px;display:flex;align-items:center;justify-content:space-between}.header .search-responsive .search-content .search{width:80%;border:none;font-size:16px}.header .search-responsive .search-content .right{float:right}@media (max-width:720px){.header .currency-switcher{display:none!important}.header .header-top div.right-content{display:inherit}.header .header-top div.right-content .menu-box{display:inline-block;margin-left:10px}.header .header-top div.right-content .search-box{display:inline-block;margin-right:10px;cursor:pointer}.header .header-top div.right-content .right-content-menu>li{border-right:none;padding:0 2px}.header .header-top div.right-content .right-content-menu>li .icon:not(.arrow-down-icon){margin-right:0}.header .header-top div.right-content .right-content-menu .cart-link{pointer-events:all}.header .header-top div.right-content .right-content-menu .arrow-down-icon,.header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-container,.header .header-top div.right-content .right-content-menu .name{display:none}.header .header-bottom{height:auto;display:none}.header .header-bottom .nav a{display:inline-block}.header .header-bottom .nav li,.header .header-bottom ul.nav{height:auto}.header .header-bottom .nav>li{float:none}.header .header-bottom .nav li>.icon{float:right;display:block}.header .header-bottom .icon.icon-arrow-down{margin-right:5px}.header .header-bottom .nav li .left{height:16px;width:16px}.header .header-bottom .nav li a>.icon{display:none}.header .header-bottom .nav ul{position:unset;border:none;box-shadow:none}.header .header-bottom .nav>li li:hover>ul{margin-left:0;top:0}ul.account-dropdown-container,ul.cart-dropdown-container,ul.search-container{display:none!important}}@media (max-width:400px){.header .header-top div.right-content .right-content-menu .guest{width:240px}.header .header-top div.right-content .right-content-menu .guest .btn.btn-sm{padding:7px 14px}}.footer{background-color:#f2f2f2;padding-left:10%;padding-right:10%;width:100%;display:inline-block}.footer .footer-content .footer-list-container{display:grid;padding:40px 10px;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));grid-auto-rows:auto;grid-row-gap:1vh}.footer .footer-content .footer-list-container .list-container .list-heading{text-transform:uppercase;color:#a5a5a5}.footer .footer-content .footer-list-container .list-container .list-group{padding-top:25px}.footer .footer-content .footer-list-container .list-container .list-group a{color:#242424}.footer .footer-content .footer-list-container .list-container .list-group li{margin-bottom:12px;list-style-type:none;text-transform:uppercase}.footer .footer-content .footer-list-container .list-container .list-group li span.icon{display:inline-block;vertical-align:middle;margin-right:5px;height:24px;width:24px}.footer .footer-content .footer-list-container .list-container .form-container{padding-top:5px}.footer .footer-content .footer-list-container .list-container .form-container .control-group .subscribe-field{width:100%}.footer .footer-content .footer-list-container .list-container .form-container .control-group .btn-primary{background-color:#242424;margin-top:8px;border-radius:0;text-align:center}.footer .footer-content .footer-list-container .list-container .form-container .control-group .locale-switcher{width:100%}.footer .footer-content .footer-list-container .list-container .currency{display:none}@media (max-width:720px){.footer{padding-left:15px}.footer .footer-list-container{padding-left:0!important}.footer .currency{display:block!important}}.footer-bottom{width:100%;height:70px;font-size:16px;color:#a5a5a5;letter-spacing:-.26px;display:flex;flex-direction:row;justify-content:center;align-items:center}.footer-bottom p{padding:0 15px}.main .category-container{display:flex;flex-direction:row;width:100%}.main .category-container .layered-filter-wrapper,.main .category-container .responsive-layred-filter{width:25%;float:left;padding-right:20px;min-height:1px}.main .category-container .layered-filter-wrapper .filter-title,.main .category-container .responsive-layred-filter .filter-title{border-bottom:1px solid #c7c7c7;color:#242424;padding:10px 0}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item{border-bottom:1px solid #c7c7c7;padding-bottom:10px}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-title,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-title{padding:10px 40px 0 10px;color:#5e5e5e;cursor:pointer;position:relative}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-title .remove-filter-link,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-title .remove-filter-link{font-weight:400;color:#0031f0;margin-right:10px}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-title .icon,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-title .icon{background-image:url(../images/icon-dropdown.svg)!important;width:10px;height:10px;position:absolute;right:15px;top:14px}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content{padding:10px;display:none}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items{padding:0;margin:0;list-style:none none}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item{padding:8px 0;color:#5e5e5e}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .checkbox,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .checkbox{margin:0}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .color-swatch,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content ol.items li.item .color-swatch{display:inline-block;margin-right:5px;min-width:20px;height:20px;border:1px solid #c7c7c7;border-radius:3px;float:right}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item .filter-attributes-content .price-range-wrapper,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item .filter-attributes-content .price-range-wrapper{margin-top:21px}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item.active .filter-attributes-content,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item.active .filter-attributes-content{display:block}.main .category-container .layered-filter-wrapper .filter-attributes .filter-attributes-item.active .filter-attributes-title .icon,.main .category-container .responsive-layred-filter .filter-attributes .filter-attributes-item.active .filter-attributes-title .icon{background-image:url(../images/arrow-up.svg)!important}.main .category-container .responsive-layred-filter{display:none;width:100%;float:none;padding-right:0;margin-top:-25px!important}.main .category-container .category-block{width:80%;display:block}.main .category-container .category-block .hero-image{display:inline-block;visibility:visible;width:100%}.main .category-container .category-block .hero-image img{max-height:400px;max-width:100%}.main .top-toolbar{width:100%;display:inline-block}.main .top-toolbar .page-info{float:left;color:#242424;line-height:45px}.main .top-toolbar .page-info span{display:none}.main .top-toolbar .page-info span:first-child{display:inline}.main .top-toolbar .pager{float:right}.main .top-toolbar .pager label{margin-right:5px}.main .top-toolbar .pager select{background:#f2f2f2;border:1px solid #c7c7c7;border-radius:3px;color:#242424;padding:10px}.main .top-toolbar .pager .view-mode{display:inline-block;margin-right:20px}.main .top-toolbar .pager .view-mode a,.main .top-toolbar .pager .view-mode span{display:inline-block;vertical-align:middle}.main .top-toolbar .pager .view-mode a.grid-view,.main .top-toolbar .pager .view-mode span.grid-view{margin-right:10px}.main .top-toolbar .pager .view-mode .sort-filter{display:none}.main .top-toolbar .pager .sorter{display:inline-block;margin-right:10px}.main .top-toolbar .pager .limiter{display:inline-block}.main .bottom-toolbar{display:block;margin-top:40px;margin-bottom:40px;text-align:center}@media only screen and (max-width:840px){.main .category-container .responsive-layred-filter,.main .layered-filter-wrapper{display:none}.main .category-block{width:100%!important}.main .category-block .top-toolbar{display:flex;flex-direction:column}.main .category-block .top-toolbar .page-info{border-bottom:1px solid #c7c7c7;line-height:15px;margin-top:10px}.main .category-block .top-toolbar .page-info span{display:inline}.main .category-block .top-toolbar .page-info span:first-child{display:none}.main .category-block .top-toolbar .page-info .sort-filter{float:right;cursor:pointer}.main .category-block .top-toolbar .pager{margin-top:20px;display:none}.main .category-block .top-toolbar .pager .view-mode{display:none}.main .category-block .responsive-layred-filter{display:block}}section.product-detail{color:#242424}section.product-detail div.category-breadcrumbs{display:inline}section.product-detail div.layouter{display:block;margin-top:20px;margin-bottom:20px}section.product-detail div.layouter .form-container{display:flex;flex-direction:row;width:100%}section.product-detail div.layouter .form-container div.product-image-group{margin-right:30px;width:604px;height:650px;max-width:604px;position:-webkit-sticky;position:sticky;top:10px}section.product-detail div.layouter .form-container div.product-image-group div{display:flex;flex-direction:row;cursor:pointer}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list{display:flex;flex-direction:column;margin-right:4px;min-width:120px;overflow:hidden;position:relative;justify-content:flex-start;max-height:480px}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame{border:2px solid transparent;background:#f2f2f2;width:120px;max-height:120px}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame.active{border-color:#0031f0}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame img{height:100%;width:100%}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control{width:100%;position:absolute;text-align:center;cursor:pointer;z-index:1}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control .overlay{opacity:.3;background:#242424;width:100%;height:18px;position:absolute;left:0;z-index:-1}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control .icon{z-index:2}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control.top{top:0}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control.bottom{bottom:0}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image{display:block;position:relative;background:#f2f2f2;width:100%;max-height:480px;height:100%}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image img{width:100%;height:auto;max-height:480px}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image .add-to-wishlist{background-image:url(../images/wishlist.svg);position:absolute;top:10px;right:12px;background-color:transparent;border:0;cursor:pointer;padding:0;width:32px;height:32px}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image .add-to-wishlist:hover{background-image:url(../images/wishlist-added.svg)}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image .add-to-wishlist.already{background-image:url(../images/wishlist-added.svg)!important}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image .share{position:absolute;top:10px;right:45px}section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons{display:none;flex-direction:row;margin-top:10px;width:79.5%;float:right;justify-content:space-between}section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons .addtocart{width:49%;background:#000;white-space:normal;text-transform:uppercase}section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons .buynow{width:49%;white-space:nowrap;text-transform:uppercase}section.product-detail div.layouter .form-container .details{width:50%;overflow-wrap:break-word}section.product-detail div.layouter .form-container .details .product-price{margin-bottom:14px}section.product-detail div.layouter .form-container .details .product-price .sticker{display:none}section.product-detail div.layouter .form-container .details .product-ratings{margin-bottom:20px}section.product-detail div.layouter .form-container .details .product-ratings .icon{width:16px;height:16px}section.product-detail div.layouter .form-container .details .product-ratings .total-reviews{display:inline-block;margin-left:15px}section.product-detail div.layouter .form-container .details .product-heading{font-size:24px;color:#242424;margin-bottom:15px}section.product-detail div.layouter .form-container .details .product-price{margin-bottom:15px;word-break:break-all}section.product-detail div.layouter .form-container .details .product-price .special-price{font-size:24px}section.product-detail div.layouter .form-container .details .stock-status{margin-bottom:15px;font-weight:600;color:#fc6868}section.product-detail div.layouter .form-container .details .stock-status.active{color:#4caf50}section.product-detail div.layouter .form-container .details .description{margin-bottom:15px}section.product-detail div.layouter .form-container .details .description ul{padding-left:40px;list-style:disc}section.product-detail div.layouter .form-container .details .quantity{padding-top:15px;border-top:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .downloadable-container .sample-list{padding:15px 0;border-top:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .downloadable-container .sample-list h3{font-size:16px;margin-top:0}section.product-detail div.layouter .form-container .details .downloadable-container .sample-list ul li{margin-bottom:5px}section.product-detail div.layouter .form-container .details .downloadable-container .sample-list ul li:last-child{margin-bottom:0}section.product-detail div.layouter .form-container .details .downloadable-container .link-list{padding:15px 0;border-top:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .downloadable-container .link-list h3{font-size:16px;margin-top:0}section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li{margin-bottom:15px}section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li:last-child{margin-bottom:0}section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li .checkbox{display:inline-block;margin:0}section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li a{float:right;margin-top:3px}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list{padding:15px 0;border-top:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li{margin-bottom:15px;width:100%;display:inline-block}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li:last-child{margin-bottom:0}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li:first-child span{font-weight:600}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li:first-child span:last-child{float:right;width:50px;text-align:left}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .name{vertical-align:middle;display:inline-block}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .name .product-price{margin-top:5px;margin-bottom:0;font-size:14px;word-break:break-all}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .name .product-price .special-price{font-size:16px}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .qty{float:right}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .qty .control-group{max-width:none;width:auto;text-align:center;margin-bottom:0;border-top:0;padding-top:0}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .qty .control-group label{display:none}section.product-detail div.layouter .form-container .details .grouped-product-container .grouped-product-list ul li .qty .control-group .control{height:38px;width:60px;text-align:center;line-height:38px}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list{padding:15px 0;border-top:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list h3{font-size:16px;margin:0;color:#242424}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item{border-bottom:1px solid hsla(0,0%,63.5%,.2);padding:15px 0;width:100%;display:inline-block}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item:last-child{border-bottom:0;padding-bottom:0}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group{margin-bottom:0;color:#5e5e5e}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group label{color:#242424}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group .control{color:#5e5e5e}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-group .price{margin-left:15px}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .quantity{border-top:0;padding-bottom:0}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .quantity.has-error button{border-color:#fc6868;color:#fc6868}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item .control-error{float:left;width:100%}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-option-list .bundle-option-item.has-error button{border-color:#fc6868;color:#fc6868}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary{padding:15px 0;border-top:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary h3{font-size:16px;margin:0;color:#242424}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary .quantity{border-top:0}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary .bundle-price{font-weight:600;font-size:24px;color:#ff6472;margin-top:10px}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary ul.bundle-items li{margin-bottom:20px}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary ul.bundle-items li:last-child{margin-bottom:0}section.product-detail div.layouter .form-container .details .bundle-options-wrapper .bundle-summary ul.bundle-items li .selected-products{color:#5e5e5e}section.product-detail div.layouter .form-container .details .full-description *{max-width:100%}section.product-detail div.layouter .form-container .details .full-description ul{padding-left:40px;list-style:disc}section.product-detail div.layouter .form-container .details .full-specifications td{padding:10px 0;color:#5e5e5e}section.product-detail div.layouter .form-container .details .full-specifications td:first-child{padding-right:40px}section.product-detail div.layouter .form-container .details .accordian .accordian-header{padding-left:0;font-weight:600}section.product-detail div.layouter .form-container .details .accordian .accordian-content{padding:20px 0}section.product-detail div.layouter .form-container .details .attributes{display:block;width:100%;border-bottom:1px solid hsla(0,0%,63.5%,.2)}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group{margin-bottom:20px}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container{margin-top:10px;display:inline-block}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch{display:inline-block;margin-right:5px;min-width:40px;height:40px}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch span{min-width:38px;height:38px;float:left;border:1px solid #c7c7c7;border-radius:3px;line-height:36px;text-align:center;cursor:pointer;padding:0 10px}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch img{width:38px;height:38px;border:1px solid #c7c7c7;border-radius:3px;cursor:pointer;background:#f2f2f2}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch input:checked+img,section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch input:checked+span{border:1px solid #242424}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .swatch input{display:none}section.product-detail div.layouter .form-container .details .attributes .attribute.control-group .swatch-container .no-options{color:#fb3949}.accordian .accordian-header,.accordian div[slot*=header],accordian .accordian-header,accordian div[slot*=header]{font-size:16px!important}.vue-slider .vue-slider-rail{background-color:#ccc;cursor:pointer}.vue-slider .vue-slider-dot-handle{width:100%;height:100%;border-radius:50%;background-color:#fff;box-shadow:.5px .5px 2px 1px rgba(0,0,0,.32)}.vue-slider .vue-slider-dot-tooltip-inner,.vue-slider .vue-slider-dot-tooltip-text{border-color:#ff6472!important;background-color:#ff6472!important}.vue-slider .vue-slider-dot-tooltip-text{display:block;font-size:14px;min-width:20px;padding:2px 5px;text-align:center;border-radius:5px;white-space:nowrap;color:#fff}.vue-slider .vue-slider-dot-tooltip-text:before{content:"";position:absolute;bottom:-10px;left:50%;width:0;height:0;border:6px solid transparent\0;border-top-color:inherit;transform:translate(-50%)}.vue-slider .vue-slider-process{background-color:#ff6472!important}@media only screen and (max-width:720px){section.product-detail div.layouter .form-container{flex-direction:column}section.product-detail div.layouter .form-container div.product-image-group{margin-right:0;max-width:none;width:auto;min-height:400px;height:auto;position:unset}section.product-detail div.layouter .form-container div.product-image-group .loader{margin-left:47%}section.product-detail div.layouter .form-container div.product-image-group div{flex-direction:column-reverse}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list{margin-top:5px;flex-direction:row;overflow-x:scroll;margin-right:0}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .thumb-frame img{height:100%;width:auto}section.product-detail div.layouter .form-container div.product-image-group div .thumb-list .gallery-control{display:none}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image{display:flex}section.product-detail div.layouter .form-container div.product-image-group div .product-hero-image img{margin-left:auto;margin-right:auto;width:480px}section.product-detail div.layouter .form-container div.product-image-group div .wrap{flex-direction:row;width:100%!important}section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons{width:100%}section.product-detail div.layouter .form-container .details{width:100%;margin-top:20px}}@media only screen and (max-width:510px){section.product-detail div.layouter .form-container div.product-image-group .product-hero-image img{width:100%!important}}.rating-reviews .rating-header{padding:20px 0}.rating-reviews .stars .icon{width:16px;height:16px}.rating-reviews .overall{display:flex;flex-direction:row;align-items:center;justify-content:space-between}.rating-reviews .overall .review-info .number{font-size:34px}.rating-reviews .overall .review-info .total-reviews{margin-top:10px}.rating-reviews .reviews{margin-top:40px;margin-bottom:40px}.rating-reviews .reviews .review{margin-bottom:25px}.rating-reviews .reviews .review .title{margin-bottom:5px}.rating-reviews .reviews .review .stars{margin-bottom:15px;display:inline-block}.rating-reviews .reviews .review .message{margin-bottom:10px}.rating-reviews .reviews .review .reviewer-details{color:#5e5e5e}.rating-reviews .reviews .view-all{margin-top:15px;color:#0031f0;margin-bottom:15px}section.cart{width:100%;color:#242424;margin-bottom:80px;margin-top:20px}section.cart .title{font-size:24px}section.cart .cart-content{margin-top:20px;width:100%;display:inline-block}section.cart .cart-content .left-side{width:70%;float:left}section.cart .cart-content .left-side .misc-controls{width:100%;display:inline-flex;align-items:center;justify-content:space-between;margin-top:20px}section.cart .cart-content .left-side .misc-controls a.link,section.cart .cart-content .left-side .misc-controls div button{margin-right:15px}section.cart .cart-content .right-side{width:30%;display:inline-block;padding-left:40px}.cart-item-list .item{padding:10px;display:flex;flex-direction:row;border:1px solid #c7c7c7;border-radius:2px}.cart-item-list .item .item-image{margin-right:15px}.cart-item-list .item .item-image img{height:160px;width:160px}.cart-item-list .item .item-details{display:flex;flex-direction:column;justify-content:flex-start;width:100%;overflow-x:auto}.cart-item-list .item .item-details .item-title{font-size:18px;margin-bottom:10px;font-weight:600}.cart-item-list .item .item-details .item-title a{color:#242424}.cart-item-list .item .item-details .price{margin-bottom:10px;font-size:18px;font-weight:600}.cart-item-list .item .item-details .summary{margin-bottom:17px}.cart-item-list .item .item-details .misc{display:flex;width:100%;flex-direction:row;justify-content:flex-start;align-items:flex-start;margin-top:10px}.cart-item-list .item .item-details .misc .control-group{font-size:16px!important;margin:0 15px 0 0;width:auto}.cart-item-list .item .item-details .misc .control-group .wrap{display:inline-flex;align-items:center}.cart-item-list .item .item-details .misc .control-group label{margin-right:15px}.cart-item-list .item .item-details .misc .control-group .control{height:38px;width:60px;text-align:center;line-height:38px}.cart-item-list .item .item-details .misc .remove,.cart-item-list .item .item-details .misc .towishlist{line-height:35px;margin-right:15px}.cart-item-list .item .error-message{color:#ff6472}.quantity{display:inline-block!important}.quantity label{margin-bottom:10px}.quantity button{width:40px;height:38px;font-size:16px;background:#fff;border:1px solid #c7c7c7;float:left;cursor:pointer}.quantity button.decrease{border-radius:3px 0 0 3px}.quantity button.increase{border-radius:0 3px 3px 0}.quantity.control-group .control{text-align:center;float:left;width:60px;height:38px;margin:0;border:1px solid #c7c7c7;border-right:none;border-left:none;border-radius:0}.quantity.control-group .control:focus{border-color:#c7c7c7}.coupon-container .discount-control .control-group{margin-top:20px}.coupon-container .discount-control .control-group .control{width:100%}.coupon-container .applied-coupon-details{margin-top:30px}.coupon-container .applied-coupon-details .right{float:right}.coupon-container .applied-coupon-details .right .icon{vertical-align:text-bottom;margin-bottom:1px;cursor:pointer}.order-summary h3{font-size:16px;margin-top:0}.order-summary .item-detail{margin-top:12px}.order-summary .item-detail label.right{float:right}.order-summary .payable-amount{margin-top:17px;border-top:1px solid #c7c7c7;padding-top:12px}.order-summary .payable-amount label{font-weight:700}.order-summary .payable-amount label.right{float:right}@media only screen and (max-width:815px){section.cart .cart-content{display:block}section.cart .cart-content .left-side{width:100%;float:none}section.cart .cart-content .left-side .misc-controls{position:relative;top:300px;margin-top:0}section.cart .cart-content .right-side{width:100%;padding-left:0;position:relative;top:-20px}}@media only screen and (max-width:600px){section.cart .cart-content .left-side .cart-item-list .item{display:flex;flex-direction:column}section.cart .cart-content .left-side .cart-item-list .item .item-details{margin-top:10px}section.cart .cart-content .left-side .cart-item-list .item .item-details .misc{display:flex;flex-wrap:wrap;line-height:40px}}@media only screen and (max-width:574px){section.cart .cart-content .left-side .misc-controls{display:block;top:300px}section.cart .cart-content .left-side .misc-controls div button{width:100%;margin-top:10px}section.cart .cart-content .left-side .misc-controls div a{margin-top:10px;width:100%;text-align:center}section.cart .cart-content .right-side{top:-100px}}.checkout-method-group .line-one{display:inline-flex;align-items:center}.checkout-method-group .line-one .radio-container{padding-left:28px}.checkout-method-group .line-one .method-label{margin-top:4px}.checkout-method-group .line-two{margin-left:30px}.checkout-process{display:flex;flex-direction:row;width:100%;margin-top:20px;margin-bottom:20px;font-size:16px;color:#242424}.checkout-process .col-main{width:70%;margin-right:5%}.checkout-process .col-main ul.checkout-steps{display:inline-flex;justify-content:space-between;width:100%;padding-bottom:15px;border-bottom:1px solid #c7c7c7}.checkout-process .col-main ul.checkout-steps li{height:48px;display:flex}.checkout-process .col-main ul.checkout-steps li .decorator{height:48px;width:48px;border-radius:50%;display:inline-flex;border:1px solid #c7c7c7;background-repeat:no-repeat;background-position:50%}.checkout-process .col-main ul.checkout-steps li .decorator.address-info{background-image:url(../images/address.svg)}.checkout-process .col-main ul.checkout-steps li .decorator.shipping{background-image:url(../images/shipping.svg)}.checkout-process .col-main ul.checkout-steps li .decorator.payment{background-image:url(../images/payment.svg)}.checkout-process .col-main ul.checkout-steps li .decorator.review{background-image:url(../images/finish.svg)}.checkout-process .col-main ul.checkout-steps li.completed{cursor:pointer}.checkout-process .col-main ul.checkout-steps li.completed .decorator{background-image:url(../images/complete.svg)}.checkout-process .col-main ul.checkout-steps li span{margin-left:7px;margin-top:auto;margin-bottom:auto}.checkout-process .col-main ul.checkout-steps li.active{color:#2650ef}.checkout-process .col-main ul.checkout-steps li.active .decorator{border:1px solid #2650ef}.checkout-process .col-main .step-content{padding-top:20px}.checkout-process .col-main .step-content .form-header{display:inline-flex;align-items:center;justify-content:space-between;width:100%;height:30px}.checkout-process .col-main .step-content .form-header .checkout-step-heading{font-size:24px;font-weight:700;float:left}.checkout-process .col-main .step-content .form-header .btn{float:right;font-size:14px}.checkout-process .col-main .step-content .form-container{border-bottom:1px solid #c7c7c7;padding-top:20px;padding-bottom:20px}.checkout-process .col-main .step-content .shipping-methods{font-size:16px}.checkout-process .col-main .step-content .shipping-methods .ship-method-carrier{margin-bottom:15px;font-weight:700}.checkout-process .col-main .step-content .payment-methods .radio-container{padding-left:28px}.checkout-process .col-main .step-content .payment-methods .control-info{margin-left:28px}.checkout-process .col-main .step-content .payment-methods .instructions{margin-top:10px;margin-left:30px}.checkout-process .col-main .step-content .payment-methods .instructions label{font-weight:600;font-size:14px}.checkout-process .col-main .step-content .payment-methods .instructions p{margin:0;font-size:14px;color:#777;font-style:italic}.checkout-process .col-main .step-content .address-summary{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;width:100%}.checkout-process .col-main .step-content .address-summary div.billing-address{margin-right:25%}.checkout-process .col-main .step-content .address-summary div.billing-address .horizontal-rule,.checkout-process .col-main .step-content .address-summary div.shipping-address .horizontal-rule{width:40px;background:#242424}.checkout-process .col-main .step-content .address-summary .label{width:10%}.checkout-process .col-main .step-content .address-summary .address-card-list{width:85%}.checkout-process .col-main .step-content .cart-item-list .item .row .title{width:100px;display:inline-block;color:#a5a5a5;font-weight:500;margin-bottom:10px}.checkout-process .col-main .step-content .cart-item-list .item .row .value{font-size:18px;font-weight:600}.checkout-process .col-main .step-content .order-description{display:inline-block;width:100%}.checkout-process .col-main .step-content .order-description .shipping{margin-bottom:25px}.checkout-process .col-main .step-content .order-description .decorator{height:48px;width:48px;border-radius:50%;border:1px solid #c7c7c7;vertical-align:middle;display:inline-block;text-align:center}.checkout-process .col-main .step-content .order-description .decorator .icon{margin-top:7px}.checkout-process .col-main .step-content .order-description .text{font-weight:600;vertical-align:middle;display:inline-block}.checkout-process .col-main .step-content .order-description .text .info{font-weight:500;margin-top:2px}.checkout-process .col-right{width:25%;padding-left:40px}@media only screen and (max-width:770px){.checkout-process .col-main{width:100%;padding-right:0}.checkout-process .col-main ul.checkout-steps{border-bottom:none;padding-bottom:0}.checkout-process .col-main ul.checkout-steps span{display:none}.checkout-process .col-main ul.checkout-steps .line{flex-grow:1;border-bottom:1px solid #c7c7c7;margin-left:5px;margin-right:5px}.checkout-process .step-content{padding-top:0}.checkout-process .step-content .control-group .control{width:100%}.checkout-process .col-right{display:none}}@media only screen and (max-width:480px){.checkout-process .col-main .step-content .address,.checkout-process .col-main .step-content .order-description{display:flex;flex-direction:column}.checkout-process .col-main .step-content .address .billing-address,.checkout-process .col-main .step-content .address .pull-left,.checkout-process .col-main .step-content .order-description .billing-address,.checkout-process .col-main .step-content .order-description .pull-left{width:100%!important}.checkout-process .col-main .step-content .address .pull-right,.checkout-process .col-main .step-content .address .shipping-address,.checkout-process .col-main .step-content .order-description .pull-right,.checkout-process .col-main .step-content .order-description .shipping-address{width:100%!important;margin-top:20px}}.attached-products-wrapper{margin-bottom:80px}.attached-products-wrapper .title{margin-bottom:40px;font-size:18px;color:#242424;text-align:center;position:relative}.attached-products-wrapper .title .border-bottom{border-bottom:1px solid hsla(0,0%,63.5%,.2);display:inline-block;width:100px;position:absolute;top:40px;left:50%;margin-left:-50px}.attached-products-wrapper .horizontal-rule{height:1px;background:#c7c7c7;width:148px;margin-bottom:24px;margin-left:auto;margin-right:auto}section.review .category-breadcrumbs{display:inline}section.review .review-layouter{display:flex}section.review .review-layouter .product-info{max-width:25%}section.review .review-layouter .product-info .product-name{font-size:24px}section.review .review-layouter .product-info .product-image img{height:280px;width:280px}section.review .review-layouter .product-info .product-name a{color:#242424}section.review .review-layouter .product-info .product-price{margin-top:10px;word-break:break-all}section.review .review-layouter .product-info .product-price .pro-price{color:#ff6472}section.review .review-layouter .product-info .product-price .pro-price-not{margin-left:10px;font-size:16px;color:#a5a5a5}section.review .review-layouter .product-info .product-price .offer{margin-left:10px;font-size:16px}section.review .review-layouter .review-form{margin-left:20px;width:55%}section.review .review-layouter .review-form .heading{color:#242424;font-weight:600}section.review .review-layouter .review-form .heading .right{float:right;margin-top:-10px}section.review .review-layouter .review-form .star{font-size:23px;color:#d4d4d4;transition:all .2s}section.review .review-layouter .review-form .star:before{content:"\2605"}section.review .review-layouter .review-form .control-group .control{width:100%}section.review .review-layouter .review-form .review-detail{height:150px;border:1px solid #b22222;margin-top:30px;display:flex;flex-direction:row}section.review .review-layouter .review-form .review-detail .rating-review{margin-top:40px;margin-left:20px;width:48%}section.review .review-layouter .review-form .review-detail .rating-review .avg-rating-count span{font-size:34px;text-align:center}section.review .review-layouter .review-form .review-detail .rating-calculate .progress-only{width:20px;border:1px solid #00f}section.review .review-layouter .ratings-reviews{display:flex;align-items:center;justify-content:space-between}section.review .review-layouter .ratings-reviews .left-side{padding:40px 20px;width:50%}section.review .review-layouter .ratings-reviews .left-side .rate{font-size:34px}section.review .review-layouter .ratings-reviews .left-side .stars .icon{height:16px;width:16px}section.review .review-layouter .ratings-reviews .right-side{width:50%}section.review .review-layouter .ratings-reviews .right-side .rater{display:inline-flex;align-items:center;padding-top:5px;width:100%}section.review .review-layouter .ratings-reviews .right-side .rater .star-name{margin-right:5px;width:35px}section.review .review-layouter .ratings-reviews .right-side .rater .rate-number{width:15px}section.review .review-layouter .ratings-reviews .right-side .rater .percentage{width:50px;margin-right:10px}section.review .review-layouter .ratings-reviews .right-side .rater .percentage span{float:right;white-space:nowrap}section.review .review-layouter .ratings-reviews .right-side .rater .line-bar{height:4px;width:calc(100% - 100px);margin-right:5px;margin-left:5px;background:#d8d8d8}section.review .review-layouter .ratings-reviews .right-side .rater .line-bar .line-value{background-color:#0031f0}@media only screen and (max-width:770px){section.review .category-breadcrumbs{display:none}section.review .review-layouter{flex-direction:column}section.review .review-layouter .product-info{max-width:100%}section.review .review-layouter .product-info .product-image,section.review .review-layouter .product-info .product-name,section.review .review-layouter .product-info .product-price{max-width:280px;margin-left:auto;margin-right:auto;word-break:break-all}section.review .review-layouter .review-form{width:100%;margin-left:0}section.review .review-layouter .review-form .heading .right{margin-top:50px}section.review .review-layouter .review-form .ratings-reviews{flex-direction:column;width:100%}section.review .review-layouter .review-form .ratings-reviews .left-side{width:100%;padding:0 0 40px;margin-top:-30px}section.review .review-layouter .review-form .ratings-reviews .right-side{width:100%}section.review .review-layouter .review-form .ratings-reviews .right-side .rater .percentage{margin-right:0}}.auth-content{padding-top:5%;padding-bottom:5%}.auth-content .sign-up-text{margin-bottom:2%;margin-left:auto;margin-right:auto;font-size:18px;color:#a5a5a5;text-align:center}.auth-content .login-form{margin-left:auto;margin-right:auto;display:flex;border:1px solid #c7c7c7;flex-direction:column;max-width:500px;min-width:320px;padding:25px}.auth-content .login-form .login-text{font-size:24px;font-weight:600;margin-bottom:30px}.auth-content .login-form .control-group{margin-bottom:15px!important}.auth-content .login-form .control-group .control{width:100%!important}.auth-content .login-form .forgot-password-link{font-size:17px;color:#0031f0;margin-bottom:5%}.auth-content .login-form .signup-confirm{margin-bottom:5%}.auth-content .login-form .btn-primary{width:100%;text-transform:uppercase}.account-content{width:100%;display:flex;flex-direction:row;margin-top:5.5%;margin-bottom:5.5%}.account-content a.btn.btn-lg.btn-primary{float:right}.account-content .sidebar{display:flex;flex-direction:column;align-content:center;justify-content:flex-start;width:20%;height:100%}.account-content .menu-block{margin-bottom:30px}.account-content .menu-block:last-child{margin-bottom:0}.account-content .menu-block .menu-block-title{padding-bottom:10px;font-size:18px}.account-content .menu-block .menu-block-title .right{display:none}.account-content .menu-block .menubar{border:1px solid #c7c7c7;color:#a5a5a5;position:relative}.account-content .menu-block .menubar li{width:95%;height:50px;margin-left:5%;display:flex;flex-direction:row;justify-content:flex-start;align-items:center;border-bottom:1px solid #c7c7c7;text-align:center}.account-content .menu-block .menubar li a{color:#5e5e5e;width:100%;text-align:left}.account-content .menu-block .menubar li .icon{display:none;position:absolute;right:12px}.account-content .menu-block .menubar li:first-child{border-top:none}.account-content .menu-block .menubar li:last-child{border-bottom:none}.account-content .menu-block .menubar li.active a{color:#0031f0}.account-content .menu-block .menubar li.active .icon{display:inline-block}.account-content .account-layout{margin-left:40px;width:80%}.account-content .account-layout .account-head .back-icon,.account-content .account-layout .responsive-empty{display:none}.account-table-content{color:#242424;margin-top:1.4%}.account-table-content table{width:100%}.account-table-content table tbody tr{height:45px}.account-table-content table tbody tr td{width:250px}.address-holder{display:flex;flex-direction:row;justify-content:flex-start;align-items:flex-start;flex-wrap:wrap;width:100%}.address-card{width:260px;border:1px solid #c7c7c7;padding:15px;margin-right:15px;margin-bottom:15px}.address-card .control-group{width:15px;height:15px;margin-top:10px}.address-card .details{font-weight:lighter}.address-card .details span{display:block}.address-card .details .control-links{width:90%;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;align-items:center}.address-card .details .control-links .btn{height:30px}.edit-form{display:flex;border:1px solid #c7c7c7;flex-direction:column;min-height:345px;padding:25px}@media only screen and (max-width:770px){.account-content{flex-direction:column}.account-content .sidebar{width:100%}.account-content .sidebar .menu-block .menu-block-title{height:50px;padding-top:13px;border-bottom:1px solid #c7c7c7;border-top:1px solid #c7c7c7}.account-content .sidebar .menu-block .menu-block-title .right{display:block;float:right;align-self:center}.account-content .sidebar .menu-block .menubar{border:0;display:none}.account-content .sidebar .menu-block .menubar>li{margin-left:0;width:100%}.account-content .sidebar .menu-block .menubar>li .icon{right:0}.account-content .sidebar .menu-block .menubar>li:last-child{border-bottom:1px solid #c7c7c7}.account-content .account-layout{margin-left:0;margin-top:20px;width:100%}.account-content .account-layout .account-head{display:flex;justify-content:space-between;border-bottom:1px solid #c7c7c7;border-top:1px solid #c7c7c7;height:50px;margin-top:10px}.account-content .account-layout .account-head .account-action{margin-top:12px;margin-left:15px}.account-content .account-layout .account-head .back-icon{display:block}.account-content .account-layout .account-head span{margin-top:13px;font-size:18px}.account-content .account-layout .account-head .horizontal-rule{display:none}.account-content .account-layout .account-table-content{margin-top:2%}.account-content .account-layout .account-table-content table tbody tr{height:70px}.account-content .account-layout .account-table-content table tbody tr td{display:block}.account-content .account-layout .account-table-content .address-holder{justify-content:center}.account-content .account-items-list,.account-content .edit-form{margin-top:20px}.account-content .account-items-list .responsive-empty,.account-content .edit-form .responsive-empty{display:block}.account-content .control-group .control{width:100%}}.sale-container{color:#5e5e5e}.sale-container .sale-section .secton-title{font-size:18px;color:#8e8e8e;padding:15px 0;border-bottom:1px solid #c7c7c7}.sale-container .sale-section .section-content{display:block;padding:20px 0;border-bottom:1px solid #e8e8e8}.sale-container .sale-section .section-content .row{display:block;padding:7px 0}.sale-container .sale-section .section-content .row .title{width:200px;letter-spacing:-.26px;display:inline-block}.sale-container .sale-section .section-content .row .value{letter-spacing:-.26px;display:inline-block}.sale-container .sale-section .section-content .order-box-container{display:inline-block;width:100%}.sale-container .sale-section .section-content .order-box-container .box{float:left;width:25%}.sale-container .sale-section .section-content .order-box-container .box .box-title{padding:10px 0;font-size:18px;color:#8e8e8e}.sale-container .sale-section .section-content .order-box-container .box .box-content{color:#3a3a3a;padding-right:10px}.sale-container .sale-section .section-content .qty-row{display:block}.sale-container .totals{padding-top:20px;display:inline-block;width:100%;border-top:1px solid #e8e8e8}.sale-container .totals .sale-summary{height:130px;float:right;border-collapse:collapse;left:3px;position:relative}.sale-container .totals .sale-summary tr td{padding:5px 8px;width:auto;color:#3a3a3a}.sale-container .totals .sale-summary tr.bold{font-weight:600;font-size:15px}.sale-container .totals .sale-summary tr.border td{border-bottom:1px solid #c7c7c7}@media only screen and (max-width:770px){.sale-container .sale-section .section-content{border-bottom:none;padding:10px 0}.sale-container .sale-section .section-content .row{display:flex;flex-direction:column}.sale-container .sale-section .section-content .row .title{line-height:20px}.sale-container .sale-section .section-content .totals{border-top:none}.sale-container .sale-section .section-content .totals .sale-summary{width:100%}.sale-container .sale-section .section-content .totals .sale-summary tr td:nth-child(2){display:none}.sale-container .sale-section .section-content .order-box-container{display:flex;flex-direction:column}.sale-container .sale-section .section-content .order-box-container .box{width:100%;margin:10px auto}.sale-container .sale-section .section-content .qty-row{display:inline}}.verify-account{text-align:center;background:#204d74;width:200px;margin-right:auto;margin-left:auto;border-radius:4px}.verify-account a{color:#fff!important}.cp-spinner{position:absolute;left:calc(50% - 24px);margin-top:calc(40% - 24px)}@media only screen and (max-width:720px){.cp-spinner{left:50%;margin-left:-24px;top:50%;margin-top:-24px}}@media only screen and (max-width:720px){.error-container .wrapper{flex-direction:column-reverse!important;margin:10px 0 20px!important;align-items:start!important;height:100%!important}}@media only screen and (max-width:770px){.table table{width:100%}.table table thead{display:none}.table table tbody tr td:before{content:attr(data-value);font-size:15px;font-weight:600;display:inline-block;width:120px}.table table tbody td{border-bottom:none!important;display:block;width:100%!important}.table table tbody td div{position:relative;left:100px;top:-20px}.table table tbody tr{border:1px solid #c7c7c7}}.show-wishlist{z-index:-1!important}.filter-row-one .dropdown-filters{position:relative!important;right:1px!important}@media only screen and (max-width:770px){.table .grid-container{margin-top:10px;overflow-x:hidden}.table .grid-container .filter-row-one{display:block}.table .grid-container .filter-row-one .dropdown-filters{margin-top:10px}.image-search-container .icon.camera-icon{top:10px;position:relative;margin-left:10px}.image-search-container input[type=file]{display:none}.image-search-result .searched-terms{margin-top:15px;margin-left:0!important}.image-search-result .term-list{line-height:35px}}.rtl{direction:rtl}.rtl .dropdown-filters .per-page-label{position:static!important}.rtl .header .header-top div.left-content ul.logo-container{margin-right:0;margin-left:12px}.rtl .header .header-top div.left-content ul.search-container li.search-group .search-field{border:2px solid #c7c7c7;padding-right:12px;padding-left:0;border-radius:2px;border-top-left-radius:0;border-bottom-left-radius:0;-webkit-appearance:none}.rtl .header .header-top div.left-content ul.search-container li.search-group .search-icon-wrapper{border:2px solid #c7c7c7;border-right:none;border-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;margin-left:-2px}.rtl .header .header-top div.left-content ul.search-container li.search-group .image-search-container{left:48px;right:unset}.rtl .header .header-top div.right-content .right-content-menu>li{border-right:2px solid #c7c7c7;padding:0 15px}.rtl .header .header-top div.right-content .right-content-menu>li:last-child{padding-left:0}.rtl .header .header-top div.right-content .right-content-menu>li:first-child{border-right:0;padding-right:0}.rtl .header .header-top div.right-content .right-content-menu .cart-dropdown-container .dropdown-list{left:0;right:unset!important}.rtl .header .header-top div.right-content .right-content-menu .cart-dropdown-container .count{display:inline-block}.rtl .header .header-top div.right-content .right-content-menu .account,.rtl .header .header-top div.right-content .right-content-menu .currency{right:unset;left:0}.rtl .header .header-top div.right-content .right-content-menu .guest div{display:flex;justify-content:space-between}.rtl .header .header-bottom .nav>li{float:right;margin-right:0;margin-left:1px}.rtl .header .header-bottom .nav a{padding:.8em .5em .8em .3em!important}.rtl .header .header-bottom .nav li a>.icon{transform:rotate(180deg)}.rtl .header .header-bottom .nav>li li:hover>ul{left:unset!important;right:100%!important}.rtl .header .header-bottom .nav ul{left:99999em}.rtl .header .search-responsive .search-content .right{float:left}.rtl .dropdown-list{text-align:right}.rtl .dropdown-list.bottom-right{left:0;right:auto}@media only screen and (max-width:720px){.rtl .header .header-top div.right-content .menu-box{margin-left:0;margin-right:5px}.rtl .header .header-top div.right-content .right-content-menu .account{position:absolute;left:0;right:auto}.rtl .header .header-top div.right-content .right-content-menu>li{padding:0;border:0}.rtl .header .header-top div.right-content .search-box{margin-left:5px}.rtl .header .header-bottom .nav>li{float:none}.rtl .header .header-bottom .nav li>.icon{float:left;transform:rotate(180deg)}.rtl .header .header-bottom .icon.icon-arrow-down{margin-left:5px}}.rtl section.slider-block div.slider-content div.slider-control{left:2%;right:auto}.rtl section.slider-block div.slider-content div.slider-control .slider-left{float:left}.rtl section.slider-block div.slider-content div.slider-control .slider-right{margin-left:5px}@media only screen and (max-width:720px){.rtl section.slider-block div.slider-content div.slider-control{left:0}}.rtl .main-container-wrapper .product-card .sticker{left:auto;right:20px;min-width:52px}.rtl .main-container-wrapper .product-card .cart-wish-wrap .addtocart{margin-right:0;margin-left:10px}.rtl section.product-detail div.layouter .form-container div.product-image-group{margin-right:0;margin-left:30px}.rtl section.product-detail div.layouter .form-container div.product-image-group .add-to-buttons{float:left!important}.rtl section.product-detail div.layouter .form-container div .thumb-list{margin-left:4px;margin-right:0}.rtl section.product-detail div.layouter .form-container .details .accordian .accordian-header{padding:20px 0 20px 15px}.rtl section.product-detail div.layouter .form-container .details .accordian .accordian-header .icon{float:left}.rtl section.product-detail div.layouter .form-container .details .accordian .accordian-header .expand-icon{margin-left:10px}.rtl section.product-detail div.layouter .form-container .details .full-specifications td:first-child{padding-right:0;padding-left:40px}.rtl section.product-detail div.layouter .form-container .details .product-ratings .total-reviews{margin-left:0;margin-right:15px}.rtl section.product-detail div.layouter .form-container .details .downloadable-container .link-list ul li a{float:left;margin-top:3px}@media only screen and (max-width:720px){.rtl section.product-detail div.layouter .form-container div.product-image-group{margin-right:0;margin-left:0}}.rtl .main .category-container .layered-filter-wrapper,.rtl .main .category-container .responsive-layred-filter{padding-right:0;padding-left:20px}.rtl .main .top-toolbar .pager{float:left}.rtl .main .top-toolbar .pager .view-mode{margin-right:0;margin-left:20px}.rtl .main .top-toolbar .pager .sorter{margin-right:0;margin-left:10px}.rtl .main .top-toolbar .pager label{margin-right:0;margin-left:5px}.rtl .main .top-toolbar .page-info{float:right}.rtl section.review .review-layouter .review-form{margin-left:0;margin-right:20px}.rtl section.review .review-layouter .review-form .heading .right{float:left}.rtl section.review .review-layouter .review-form .ratings-reviews .right-side .rater .star-name{margin-right:0;margin-left:5px}@media only screen and (max-width:770px){.rtl section.review .review-layouter .review-form{margin-right:0}}.rtl section.cart .cart-content .left-side{width:70%;float:right}.rtl section.cart .cart-content .left-side .misc-controls a.link{margin-left:15px;margin-right:0}.rtl section.cart .cart-content .right-side{width:30%;padding-right:40px;padding-left:0}.rtl .order-summary .item-detail label.right,.rtl .payable-amount label.right{float:left}.rtl .item div{margin-left:15px;margin-right:0!important}.rtl .cart-item-list .item .item-details .misc div.qty-text{margin-right:0;margin-left:10px}.rtl .cart-item-list .item .item-details .misc .remove,.rtl .cart-item-list .item .item-details .misc input.box{margin-right:0;margin-left:30px}.rtl .cart-item-list .item .item-details .misc .control-group label{margin-left:15px;margin-right:0}@media only screen and (max-width:770px){.rtl section.cart .cart-content .left-side{width:100%;float:none}.rtl section.cart .cart-content .left-side .misc-controls div button{margin-right:0}.rtl section.cart .cart-content .right-side{width:100%;padding-right:0}}.rtl .checkout-process .col-right{padding-left:0;padding-right:40px}.rtl .checkout-process .col-main{padding-left:40px;padding-right:0}.rtl .checkout-process .col-main ul.checkout-steps li span{margin-right:7px;margin-left:0}.rtl .checkout-process .col-main .step-content .form-header h1{float:right}.rtl .checkout-process .col-main .step-content .form-header .btn{float:left}.rtl .checkout-process .col-main .step-content .payment-methods .control-info{margin-right:28px;margin-left:0}.rtl .checkout-process .col-main .step-content .address .billing-address,.rtl .checkout-process .col-main .step-content .address .pull-left,.rtl .checkout-process .col-main .step-content .order-description .billing-address,.rtl .checkout-process .col-main .step-content .order-description .pull-left{float:right!important}.rtl .checkout-process .col-main .step-content .address .pull-right,.rtl .checkout-process .col-main .step-content .address .shipping-address,.rtl .checkout-process .col-main .step-content .order-description .pull-right,.rtl .checkout-process .col-main .step-content .order-description .shipping-address{float:left!important}.rtl .radio{margin:10px 0 5px 5px}.rtl .radio .radio-view{margin-left:5px;margin-right:0}.rtl .radio input{right:0;left:auto}.rtl .radio-container .checkmark{top:2px;left:4px}.rtl .mt-5{margin-top:5px;margin-right:28px}@media only screen and (max-width:770px){.rtl .checkout-process .col-main{padding-left:0}}.rtl .account-content .account-layout{margin-left:0;margin-right:40px}.rtl .account-content .menu-block .menubar li{margin-left:0;margin-right:5%}.rtl .account-content .menu-block .menubar li a{text-align:right}.rtl .account-content .menu-block .menubar li .icon{right:unset;left:12px;transform:rotate(180deg)}.rtl .account-head .account-action{float:left}.rtl a.btn.btn-lg.btn-primary{float:left;margin-right:15px}.rtl .account-item-card .media-info .info{margin-right:20px;margin-left:0}.rtl .account-item-card .operations a span{float:left}.rtl .table table{text-align:right}.rtl .sale-container .totals .sale-summary{float:left}.rtl .sale-container .sale-section .section-content .order-box-container{display:flex}@media (max-width:770px){.rtl .account-content .account-layout{margin-right:0}.rtl .account-content .account-layout .account-head .account-action{margin-left:0}.rtl .account-content .sidebar .menu-block .menu-block-title .right{float:left}.rtl .account-content .sidebar .menu-block .menubar>li{margin-right:0}}.rtl .footer .footer-content .footer-list-container .list-container .list-group li span.icon{margin-left:5px;margin-right:0}@media (max-width:720px){.rtl .footer{padding-right:15px;padding-left:10%}.rtl .footer .footer-list-container{padding-right:0!important}}.rtl .cp-spinner{position:absolute;right:calc(50% - 24px);margin-top:calc(40% - 24px)}@media only screen and (max-width:720px){.rtl .cp-spinner{right:50%;margin-right:-24px;left:auto}}.rtl .product-list .product-card .product-information{padding-left:0;padding-right:30px;float:left}.rtl .zoom-image-direction{left:0;right:476px!important}.banner-container{width:100%;float:left;padding:0 18px;margin-bottom:40px}.banner-container .left-banner{padding-right:20px;width:60%;float:left}.banner-container .left-banner img{width:100%}.banner-container .right-banner{padding-left:20px;width:40%;float:left}.banner-container .right-banner img{max-width:100%}.banner-container .right-banner img:first-child{padding-bottom:20px;display:block}.banner-container .right-banner img:last-child{padding-top:20px;display:block}@media (max-width:720px){.banner-container .left-banner{padding-right:0;width:100%}.banner-container .right-banner{padding-left:0;width:100%}.banner-container .right-banner img:first-child{padding-bottom:0;padding-top:25px}.banner-container .right-banner img:last-child{padding-top:25px}}.static-container{display:block;width:100%;padding:10px;margin-left:auto;margin-right:auto}.static-container.one-column{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}.static-container.two-column{display:grid;grid-template-columns:48% 48%;grid-column-gap:4%}.static-container.three-column{display:grid;grid-template-columns:30% 30% 30%;grid-column-gap:4%}.item-options{font-size:14px;font-weight:200}.item-options b{font-weight:500}.image-search-result{background-color:rgba(0,65,255,.1);border:1px solid #0041ff;padding:20px;margin-bottom:20px;border-radius:2px;display:inline-block;width:100%}.image-search-result .searched-image{float:left}.image-search-result .searched-image img{width:150px;height:auto;box-shadow:1px 1px 3px 0 rgba(0,0,0,.32)}.image-search-result .searched-terms{margin-left:20px;display:inline-block}.image-search-result .searched-terms h3{margin-top:0}.image-search-result .searched-terms .term-list a{padding:5px 8px;background:#fff;margin-right:10px}body{overflow-x:hidden}.comparison-component{width:100%;padding-top:20px}.desc>p,.mt-0{margin-top:0}.comparison-component>h1{display:inline-block}td{padding:15px;min-width:25px;max-width:250px;line-height:30px;vertical-align:top}.icon.remove-product{top:5px;float:right;cursor:pointer;position:relative;background-color:#000}.action>div{display:inline-block}.cart-wish-wrap .btn.btn-lg{padding:5px 10px}.cart-wish-wrap{display:flex}.white-cross-sm-icon{width:24px;height:24px}.add-to-wishlist{margin-left:15px} \ No newline at end of file diff --git a/packages/Webkul/Shop/publishable/assets/images/1.webp b/packages/Webkul/Shop/publishable/assets/images/1.webp new file mode 100644 index 0000000000000000000000000000000000000000..21dbbfdf26ac35e1e860e4d77c9d993c2ed7f71b GIT binary patch literal 30516 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 Hl%N0rKU;0+ literal 0 HcmV?d00001 diff --git a/packages/Webkul/Shop/publishable/assets/images/2.webp b/packages/Webkul/Shop/publishable/assets/images/2.webp new file mode 100644 index 0000000000000000000000000000000000000000..75f5af47a01d50ceda8833132dde1ca3ef65e918 GIT binary patch literal 23602 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 JY5G_I0015;fnopv literal 0 HcmV?d00001 diff --git a/packages/Webkul/Shop/publishable/assets/images/3.webp b/packages/Webkul/Shop/publishable/assets/images/3.webp new file mode 100644 index 0000000000000000000000000000000000000000..9929ed5de542d2d01e6cfff9766712955d5af47a GIT binary patch literal 25968 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ÁULFQn;*!xHrqwmy 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 literal 0 HcmV?d00001 diff --git a/packages/Webkul/Shop/publishable/assets/images/product/meduim-product-placeholder.webp b/packages/Webkul/Shop/publishable/assets/images/product/meduim-product-placeholder.webp new file mode 100644 index 0000000000000000000000000000000000000000..5f1c598e35de1fcdbacbf601b9ede2b812bce96e GIT binary patch literal 694 zcmWIYbaPwB#J~{l>J$(bV4<)G$o`f#Gc)gD zv7_|o*u~Rd{FY$J3W(``vQzwIk^ZD7@v0~Gc~7jFuJlvS^%EXpvFhBC(^3DqttR&G zcWJpY|MIb?tCt9+7Mz&xvvvLZi)%hFJMu=)b@k$k-qM%rI+a_Ued%>C#1<{;Y1+ng`1~aKh#yPt1lR{_)%4v6 z3CvmaXY$@>*Tau$Is|<_C3EMHQh`D9kKpQ)|w%}>3z-lEUtopF13SKQ0X(wwiC zD|t5c7U>+^StkARqV~&a;{OCcety!v5N{Y@53v;t4FCS!T)@D<+#cuhup#mNnr8x? zygbiCrmSf@n=wiE!|lb%^YV|aiCboHbEdrS%AYlVuW3JD%X<5(OGvS4PW|MkE^-;w z?|)6cb%QzPRO{!pU#I!aGW?lbacT9v2X%Wby;eD}&z+>PV{gtKjYnUeEIgvU-eMX* zL#X(_*Q#L!nYXq$vDuk?WqNeQ;=C@G#GE-hzB+fb*X^Ix^zde_^`=awvaX1f6$v{R z8_kIRAhM)0DuL5~Yfbg+O}E}IXYjeE6tBwSRefRJ@f$hQ9A&uHSA+!KtNXRleWvEd zhdlkB)89GI%h@3r(4cjuausKtoZ+K(&L%f& jo)5at(x)QUY&kx~>s#uL!%G_DK0J_WOz$x5U;qOEi>g`l literal 0 HcmV?d00001 diff --git a/packages/Webkul/Shop/publishable/assets/images/product/small-product-placeholder.webp b/packages/Webkul/Shop/publishable/assets/images/product/small-product-placeholder.webp new file mode 100644 index 0000000000000000000000000000000000000000..cd13a9ab3256e2fd2f2f3081abf4904c5e7e7b3e GIT binary patch literal 338 zcmV-Y0j>U0Nk&FW0RRA3MM6+kP&gny0RRB-4gj42DtG{R06vjKoJysmqM@V|3rMgM z326Wp&S;+OhdG$Y&M6OBdv(fm2Yz5m6Ljs$L-3*jtgPq29kt~v8Um;e+L!5i2B&sHyHkFG>(7(0> z7AMAWk{e>I>n5kg>ZyBod2>qRbdQnDNWOH7l^cats_se=0 z<3K@$Wj_qSgX+hDD>N`x-Y9ga$4y}6mk3B2nGk>gu|XvrPstLxVT&)kRL;r;IJ@0ia-DW0QUHqGynhq literal 0 HcmV?d00001 diff --git a/packages/Webkul/Shop/publishable/assets/js/shop.js b/packages/Webkul/Shop/publishable/assets/js/shop.js index a31c3522c..8dede3ae6 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(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=0)}({0:function(e,t,n){n("uPOf"),e.exports=n("w/dW")},"2SVd":function(e,t,n){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},"5oMp":function(e,t,n){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},"8oxB":function(e,t){var n,r,i=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:o}catch(e){n=o}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var u,l=[],c=!1,d=-1;function f(){c&&u&&(c=!1,u.length?l=u.concat(l):d=-1,l.length&&h())}function h(){if(!c){var e=s(f);c=!0;for(var t=l.length;t;){for(u=l,l=[];++d1)for(var n=1;n3?u.length%3:0;return s+(p?u.substr(0,p)+o.thousand:"")+u.substr(p).replace(/(\d{3})(?=\d)/g,"$1"+o.thousand)+(a?o.decimal+m(Math.abs(e),a).split(".")[1]:"")},y=i.formatMoney=function(e,t,n,r,o,a){if(l(e))return f(e,(function(e){return y(e,t,n,r,o,a)}));e=v(e);var s=d(c(t)?t:{symbol:t,precision:n,thousand:r,decimal:o,format:a},i.settings.currency),u=p(s.format);return(e>0?u.pos:e<0?u.neg:u.zero).replace("%s",s.symbol).replace("%v",g(Math.abs(e),h(s.precision),s.thousand,s.decimal))};i.formatColumn=function(e,t,n,r,o,a){if(!e)return[];var s=d(c(t)?t:{symbol:t,precision:n,thousand:r,decimal:o,format:a},i.settings.currency),m=p(s.format),y=m.pos.indexOf("%s")0?m.pos:e<0?m.neg:m.zero).replace("%s",s.symbol).replace("%v",g(Math.abs(e),h(s.precision),s.thousand,s.decimal));return n.length>b&&(b=n.length),n}));return f(w,(function(e,t){return u(e)&&e.length0&&t-1 in e)}_.fn=_.prototype={jquery:"3.5.1",constructor:_,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=_.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return _.each(this,e)},map:function(e){return this.pushStack(_.map(this,(function(t,n){return e.call(t,n,t)})))},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(_.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(_.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t: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("^(?:"+P+")$","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,Q=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+I+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){f()},ae=we((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{L.apply($=j.call(x.childNodes),x.childNodes),$[x.childNodes.length].nodeType}catch(e){L={apply:$.length?function(e,t){D.apply(e,j.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,l,c,d,p,g,y=t&&t.ownerDocument,x=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==x&&9!==x&&11!==x)return r;if(!i&&(f(t),t=t||h,v)){if(11!==x&&(d=J.exec(e)))if(o=d[1]){if(9===x){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(y&&(l=y.getElementById(o))&&b(t,l)&&l.id===o)return r.push(l),r}else{if(d[2])return L.apply(r,t.getElementsByTagName(e)),r;if((o=d[3])&&n.getElementsByClassName&&t.getElementsByClassName)return L.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!O[e+" "]&&(!m||!m.test(e))&&(1!==x||"object"!==t.nodeName.toLowerCase())){if(g=e,y=t,1===x&&(U.test(e)||B.test(e))){for((y=ee.test(e)&&ge(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute("id"))?c=c.replace(re,ie):t.setAttribute("id",c=w)),s=(p=a(e)).length;s--;)p[s]=(c?"#"+c:":scope")+" "+be(p[s]);g=p.join(",")}try{return L.apply(r,y.querySelectorAll(g)),r}catch(t){O(e,!0)}finally{c===w&&t.removeAttribute("id")}}}return u(e.replace(F,"$1"),t,r,i)}function ue(){var e=[];return function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function le(e){return e[w]=!0,e}function ce(e){var t=h.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function de(e,t){for(var n=e.split("|"),i=n.length;i--;)r.attrHandle[n[i]]=t}function fe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function he(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function pe(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ve(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function me(e){return le((function(t){return t=+t,le((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ge(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!X.test(t||n&&n.nodeName||"HTML")},f=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:x;return a!=h&&9===a.nodeType&&a.documentElement?(p=(h=a).documentElement,v=!o(h),x!=h&&(i=h.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",oe,!1):i.attachEvent&&i.attachEvent("onunload",oe)),n.scope=ce((function(e){return p.appendChild(e).appendChild(h.createElement("div")),void 0!==e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length})),n.attributes=ce((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=ce((function(e){return e.appendChild(h.createComment("")),!e.getElementsByTagName("*").length})),n.getElementsByClassName=K.test(h.getElementsByClassName),n.getById=ce((function(e){return p.appendChild(e).id=w,!h.getElementsByName||!h.getElementsByName(w).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&v){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&v){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&v)return t.getElementsByClassName(e)},g=[],m=[],(n.qsa=K.test(h.querySelectorAll))&&(ce((function(e){var t;p.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&m.push("[*^$]="+I+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||m.push("\\["+I+"*(?:value|"+P+")"),e.querySelectorAll("[id~="+w+"-]").length||m.push("~="),(t=h.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||m.push("\\["+I+"*name"+I+"*="+I+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||m.push(":checked"),e.querySelectorAll("a#"+w+"+*").length||m.push(".#.+[+~]"),e.querySelectorAll("\\\f"),m.push("[\\r\\n\\f]")})),ce((function(e){e.innerHTML="";var t=h.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&m.push("name"+I+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&m.push(":enabled",":disabled"),p.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&m.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),m.push(",.*:")}))),(n.matchesSelector=K.test(y=p.matches||p.webkitMatchesSelector||p.mozMatchesSelector||p.oMatchesSelector||p.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=y.call(e,"*"),y.call(e,"[s!='']:x"),g.push("!=",W)})),m=m.length&&new RegExp(m.join("|")),g=g.length&&new RegExp(g.join("|")),t=K.test(p.compareDocumentPosition),b=t||K.test(p.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},A=t?function(e,t){if(e===t)return d=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==h||e.ownerDocument==x&&b(x,e)?-1:t==h||t.ownerDocument==x&&b(x,t)?1:c?N(c,e)-N(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return d=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==h?-1:t==h?1:i?-1:o?1:c?N(c,e)-N(c,t):0;if(i===o)return fe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?fe(a[r],s[r]):a[r]==x?-1:s[r]==x?1:0},h):h},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(f(e),n.matchesSelector&&v&&!O[t+" "]&&(!g||!g.test(t))&&(!m||!m.test(t)))try{var r=y.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){O(t,!0)}return se(t,h,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=h&&f(e),b(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=h&&f(e);var i=r.attrHandle[t.toLowerCase()],o=i&&z.call(r.attrHandle,t.toLowerCase())?i(e,t,!v):void 0;return void 0!==o?o:n.attributes||!v?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(d=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(A),d){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return c=null,e},i=se.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=se.selectors={cacheLength:50,createPseudo:le,match:Y,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return Y.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=k[e+" "];return t||(t=new RegExp("(^|"+I+")"+e+"("+I+"|$)"))&&k(e,(function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")}))},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(H," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,d,f,h,p,v=o!==a?"nextSibling":"previousSibling",m=t.parentNode,g=s&&t.nodeName.toLowerCase(),y=!u&&!s,b=!1;if(m){if(o){for(;v;){for(f=t;f=f[v];)if(s?f.nodeName.toLowerCase()===g:1===f.nodeType)return!1;p=v="only"===e&&!p&&"nextSibling"}return!0}if(p=[a?m.firstChild:m.lastChild],a&&y){for(b=(h=(l=(c=(d=(f=m)[w]||(f[w]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],f=h&&m.childNodes[h];f=++h&&f&&f[v]||(b=h=0)||p.pop();)if(1===f.nodeType&&++b&&f===t){c[e]=[T,h,b];break}}else if(y&&(b=h=(l=(c=(d=(f=t)[w]||(f[w]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===b)for(;(f=++h&&f&&f[v]||(b=h=0)||p.pop())&&((s?f.nodeName.toLowerCase()!==g:1!==f.nodeType)||!++b||(y&&((c=(d=f[w]||(f[w]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]=[T,b]),f!==t)););return(b-=i)===r||b%r==0&&b/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return i[w]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var r,o=i(e,t),a=o.length;a--;)e[r=N(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:le((function(e){var t=[],n=[],r=s(e.replace(F,"$1"));return r[w]?le((function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return se(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:le((function(e){return Z.test(e||"")||se.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=v?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===p},focus:function(e){return e===h.activeElement&&(!h.hasFocus||h.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ve(!1),disabled:ve(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:me((function(){return[0]})),last:me((function(e,t){return[t-1]})),eq:me((function(e,t,n){return[n<0?n+t:n]})),even:me((function(e,t){for(var n=0;nt?t:n;--r>=0;)e.push(r);return e})),gt:me((function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s-1&&(o[l]=!(a[l]=d))}}else g=Te(g===a?g.splice(p,g.length):g),i?i(null,a,g,u):L.apply(a,g)}))}function ke(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=we((function(e){return e===t}),s,!0),d=we((function(e){return N(t,e)>-1}),s,!0),f=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):d(e,n,r));return t=null,i}];u1&&xe(f),u>1&&be(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace(F,"$1"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var d,p,m,g=0,y="0",b=o&&[],w=[],x=l,_=o||i&&r.find.TAG("*",c),k=T+=null==x?1:Math.random()||.1,C=_.length;for(c&&(l=a==h||a||c);y!==C&&null!=(d=_[y]);y++){if(i&&d){for(p=0,a||d.ownerDocument==h||(f(d),s=!v);m=e[p++];)if(m(d,a||h,s)){u.push(d);break}c&&(T=k)}n&&((d=!m&&d)&&g--,o&&b.push(d))}if(g+=y,n&&y!==g){for(p=0;m=t[p++];)m(b,w,a,s);if(o){if(g>0)for(;y--;)b[y]||w[y]||(w[y]=E.call(u));w=Te(w)}L.apply(u,w),c&&!o&&w.length>0&&g+t.length>1&&se.uniqueSort(u)}return c&&(T=k,l=x),b};return n?le(o):o}(o,i))).selector=e}return s},u=se.select=function(e,t,n,i){var o,u,l,c,d,f="function"==typeof e&&e,h=!i&&a(e=f.selector||e);if(n=n||[],1===h.length){if((u=h[0]=h[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&v&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;f&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(o=Y.needsContext.test(e)?0:u.length;o--&&(l=u[o],!r.relative[c=l.type]);)if((d=r.find[c])&&(i=d(l.matches[0].replace(te,ne),ee.test(u[0].type)&&ge(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&be(u)))return L.apply(n,i),n;break}}return(f||s(e,h))(i,t,!v,n,!t||ee.test(e)&&ge(t.parentNode)||t),n},n.sortStable=w.split("").sort(A).join("")===w,n.detectDuplicates=!!d,f(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(h.createElement("fieldset"))})),ce((function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")}))||de("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||de("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute("disabled")}))||de(P,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(n);_.find=C,_.expr=C.selectors,_.expr[":"]=_.expr.pseudos,_.uniqueSort=_.unique=C.uniqueSort,_.text=C.getText,_.isXMLDoc=C.isXML,_.contains=C.contains,_.escapeSelector=C.escape;var S=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&_(e).is(n))break;r.push(e)}return r},O=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},A=_.expr.match.needsContext;function z(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var $=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function E(e,t,n){return g(t)?_.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?_.grep(e,(function(e){return e===t!==n})):"string"!=typeof t?_.grep(e,(function(e){return c.call(t,e)>-1!==n})):_.filter(t,e,n)}_.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?_.find.matchesSelector(r,e)?[r]:[]:_.find.matches(e,_.grep(t,(function(e){return 1===e.nodeType})))},_.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(_(e).filter((function(){for(t=0;t1?_.uniqueSort(n):n},filter:function(e){return this.pushStack(E(this,e||[],!1))},not:function(e){return this.pushStack(E(this,e||[],!0))},is:function(e){return!!E(this,"string"==typeof e&&A.test(e)?_(e):e||[],!1).length}});var D,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(_.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof _?t[0]:t,_.merge(this,_.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:b,!0)),$.test(r[1])&&_.isPlainObject(t))for(r in t)g(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=b.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(_):_.makeArray(e,this)}).prototype=_.fn,D=_(b);var j=/^(?:parents|prev(?:Until|All))/,N={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}_.fn.extend({has:function(e){var t=_(e,this),n=t.length;return this.filter((function(){for(var e=0;e-1:1===n.nodeType&&_.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?_.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?c.call(_(e),this[0]):c.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(_.uniqueSort(_.merge(this.get(),_(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),_.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return S(e,"parentNode")},parentsUntil:function(e,t,n){return S(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return S(e,"nextSibling")},prevAll:function(e){return S(e,"previousSibling")},nextUntil:function(e,t,n){return S(e,"nextSibling",n)},prevUntil:function(e,t,n){return S(e,"previousSibling",n)},siblings:function(e){return O((e.parentNode||{}).firstChild,e)},children:function(e){return O(e.firstChild)},contents:function(e){return null!=e.contentDocument&&a(e.contentDocument)?e.contentDocument:(z(e,"template")&&(e=e.content||e),_.merge([],e.childNodes))}},(function(e,t){_.fn[e]=function(n,r){var i=_.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=_.filter(r,i)),this.length>1&&(N[e]||_.uniqueSort(i),j.test(e)&&i.reverse()),this.pushStack(i)}}));var I=/[^\x20\t\r\n\f]+/g;function M(e){return e}function R(e){throw e}function W(e,t,n,r){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n):e&&g(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}_.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return _.each(e.match(I)||[],(function(e,n){t[n]=!0})),t}(e):_.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s-1;)o.splice(n,1),n<=s&&s--})),this},has:function(e){return e?_.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},_.extend({Deferred:function(e){var t=[["notify","progress",_.Callbacks("memory"),_.Callbacks("memory"),2],["resolve","done",_.Callbacks("once memory"),_.Callbacks("once memory"),0,"resolved"],["reject","fail",_.Callbacks("once memory"),_.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return _.Deferred((function(n){_.each(t,(function(t,r){var i=g(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&g(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(e,r,i){var o=0;function a(e,t,r,i){return function(){var s=this,u=arguments,l=function(){var n,l;if(!(e=o&&(r!==R&&(s=void 0,u=[n]),t.rejectWith(s,u))}};e?c():(_.Deferred.getStackHook&&(c.stackTrace=_.Deferred.getStackHook()),n.setTimeout(c))}}return _.Deferred((function(n){t[0][3].add(a(0,n,g(i)?i:M,n.notifyWith)),t[1][3].add(a(0,n,g(e)?e:M)),t[2][3].add(a(0,n,g(r)?r:R))})).promise()},promise:function(e){return null!=e?_.extend(e,i):i}},o={};return _.each(t,(function(e,n){var a=n[2],s=n[5];i[n[1]]=a.add,s&&a.add((function(){r=s}),t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[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),e&&e.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=s.call(arguments),o=_.Deferred(),a=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?s.call(arguments):n,--t||o.resolveWith(r,i)}};if(t<=1&&(W(e,o.done(a(n)).resolve,o.reject,!t),"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$/;_.Deferred.exceptionHook=function(e,t){n.console&&n.console.warn&&e&&H.test(e.name)&&n.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},_.readyException=function(e){n.setTimeout((function(){throw e}))};var F=_.Deferred();function q(){b.removeEventListener("DOMContentLoaded",q),n.removeEventListener("load",q),_.ready()}_.fn.ready=function(e){return F.then(e).catch((function(e){_.readyException(e)})),this},_.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--_.readyWait:_.isReady)||(_.isReady=!0,!0!==e&&--_.readyWait>0||F.resolveWith(b,[_]))}}),_.ready.then=F.then,"complete"===b.readyState||"loading"!==b.readyState&&!b.documentElement.doScroll?n.setTimeout(_.ready):(b.addEventListener("DOMContentLoaded",q),n.addEventListener("load",q));var B=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===T(n))for(s in i=!0,n)B(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,g(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(_(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each((function(){K.remove(this,e)}))}}),_.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Q.get(e,t),n&&(!r||Array.isArray(n)?r=Q.access(e,t,_.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=_.queue(e,t),r=n.length,i=n.shift(),o=_._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,(function(){_.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Q.get(e,n)||Q.access(e,n,{empty:_.Callbacks("once memory").add((function(){Q.remove(e,[t+"queue",n])}))})}}),_.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]*)/i,ge=/^$|^module$|\/(?:java|ecma)script/i;he=b.createDocumentFragment().appendChild(b.createElement("div")),(pe=b.createElement("input")).setAttribute("type","radio"),pe.setAttribute("checked","checked"),pe.setAttribute("name","t"),he.appendChild(pe),m.checkClone=he.cloneNode(!0).cloneNode(!0).lastChild.checked,he.innerHTML="",m.noCloneChecked=!!he.cloneNode(!0).lastChild.defaultValue,he.innerHTML="",m.option=!!he.lastChild;var ye={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function be(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&z(e,t)?_.merge([e],n):n}function we(e,t){for(var n=0,r=e.length;n",""]);var xe=/<|&#?\w+;/;function Te(e,t,n,r,i){for(var o,a,s,u,l,c,d=t.createDocumentFragment(),f=[],h=0,p=e.length;h-1)i&&i.push(o);else if(l=ae(o),a=be(d.appendChild(o),"script"),l&&we(a),n)for(c=0;o=a[c++];)ge.test(o.type||"")&&n.push(o);return d}var _e=/^key/,ke=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ce=/^([^.]*)(?:\.(.+)|)/;function Se(){return!0}function Oe(){return!1}function Ae(e,t){return e===function(){try{return b.activeElement}catch(e){}}()==("focus"===t)}function ze(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)ze(e,s,n,r,t[s],o);return e}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=Oe;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return _().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=_.guid++)),e.each((function(){_.event.add(this,t,i,r,n)}))}function $e(e,t,n){n?(Q.set(e,t,!1),_.event.add(e,t,{namespace:!1,handler:function(e){var r,i,o=Q.get(this,t);if(1&e.isTrigger&&this[t]){if(o.length)(_.event.special[t]||{}).delegateType&&e.stopPropagation();else if(o=s.call(arguments),Q.set(this,t,o),r=n(this,t),this[t](),o!==(i=Q.get(this,t))||r?Q.set(this,t,!1):i={},o!==i)return e.stopImmediatePropagation(),e.preventDefault(),i.value}else o.length&&(Q.set(this,t,{value:_.event.trigger(_.extend(o[0],_.Event.prototype),o.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,t)&&_.event.add(e,t,Se)}_.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,d,f,h,p,v,m=Q.get(e);if(X(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&_.find.matchesSelector(oe,i),n.guid||(n.guid=_.guid++),(u=m.events)||(u=m.events=Object.create(null)),(a=m.handle)||(a=m.handle=function(t){return void 0!==_&&_.event.triggered!==t.type?_.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(I)||[""]).length;l--;)h=v=(s=Ce.exec(t[l])||[])[1],p=(s[2]||"").split(".").sort(),h&&(d=_.event.special[h]||{},h=(i?d.delegateType:d.bindType)||h,d=_.event.special[h]||{},c=_.extend({type:h,origType:v,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&_.expr.match.needsContext.test(i),namespace:p.join(".")},o),(f=u[h])||((f=u[h]=[]).delegateCount=0,d.setup&&!1!==d.setup.call(e,r,p,a)||e.addEventListener&&e.addEventListener(h,a)),d.add&&(d.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?f.splice(f.delegateCount++,0,c):f.push(c),_.event.global[h]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,d,f,h,p,v,m=Q.hasData(e)&&Q.get(e);if(m&&(u=m.events)){for(l=(t=(t||"").match(I)||[""]).length;l--;)if(h=v=(s=Ce.exec(t[l])||[])[1],p=(s[2]||"").split(".").sort(),h){for(d=_.event.special[h]||{},f=u[h=(r?d.delegateType:d.bindType)||h]||[],s=s[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=f.length;o--;)c=f[o],!i&&v!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(f.splice(o,1),c.selector&&f.delegateCount--,d.remove&&d.remove.call(e,c));a&&!f.length&&(d.teardown&&!1!==d.teardown.call(e,p,m.handle)||_.removeEvent(e,h,m.handle),delete u[h])}else for(h in u)_.event.remove(e,h+t[l],n,r,!0);_.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=_.event.fix(e),l=(Q.get(this,"events")||Object.create(null))[u.type]||[],c=_.event.special[u.type]||{};for(s[0]=u,t=1;t=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:_.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\s*$/g;function je(e,t){return z(e,"table")&&z(11!==t.nodeType?t:t.firstChild,"tr")&&_(e).children("tbody")[0]||e}function Ne(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Pe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Ie(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Q.hasData(e)&&(s=Q.get(e).events))for(i in Q.remove(t,"handle events"),s)for(n=0,r=s[i].length;n1&&"string"==typeof p&&!m.checkClone&&De.test(p))return e.each((function(i){var o=e.eq(i);v&&(t[0]=p.call(this,i,o.html())),Re(o,t,n,r)}));if(f&&(o=(i=Te(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=o),o||r)){for(s=(a=_.map(be(i,"script"),Ne)).length;d0&&we(a,!u&&be(e,"script")),s},cleanData:function(e){for(var t,n,r,i=_.event.special,o=0;void 0!==(n=e[o]);o++)if(X(n)){if(t=n[Q.expando]){if(t.events)for(r in t.events)i[r]?_.event.remove(n,r):_.removeEvent(n,r,t.handle);n[Q.expando]=void 0}n[K.expando]&&(n[K.expando]=void 0)}}}),_.fn.extend({detach:function(e){return We(this,e,!0)},remove:function(e){return We(this,e)},text:function(e){return B(this,(function(e){return void 0===e?_.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Re(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||je(this,e).appendChild(e)}))},prepend:function(){return Re(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=je(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Re(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(_.cleanData(be(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return _.clone(this,e,t)}))},html:function(e){return B(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ee.test(e)&&!ye[(me.exec(e)||["",""])[1].toLowerCase()]){e=_.htmlPrefilter(e);try{for(;n3,oe.removeChild(e)),s}}))}();var Ze=["Webkit","Moz","ms"],Ye=b.createElement("div").style,Xe={};function Ge(e){var t=_.cssProps[e]||Xe[e];return t||(e in Ye?e:Xe[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=Ze.length;n--;)if((e=Ze[n]+t)in Ye)return e}(e)||e)}var Qe=/^(none|table(?!-c[ea]).+)/,Ke=/^--/,Je={position:"absolute",visibility:"hidden",display:"block"},et={letterSpacing:"0",fontWeight:"400"};function tt(e,t,n){var r=re.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function nt(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=_.css(e,n+ie[a],!0,i)),r?("content"===n&&(u-=_.css(e,"padding"+ie[a],!0,i)),"margin"!==n&&(u-=_.css(e,"border"+ie[a]+"Width",!0,i))):(u+=_.css(e,"padding"+ie[a],!0,i),"padding"!==n?u+=_.css(e,"border"+ie[a]+"Width",!0,i):s+=_.css(e,"border"+ie[a]+"Width",!0,i));return!r&&o>=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function rt(e,t,n){var r=Fe(e),i=(!m.boxSizingReliable()||n)&&"border-box"===_.css(e,"boxSizing",!1,r),o=i,a=Ue(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(He.test(a)){if(!n)return a;a="auto"}return(!m.boxSizingReliable()&&i||!m.reliableTrDimensions()&&z(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===_.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===_.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+nt(e,t,n||(i?"border":"content"),o,r,a)+"px"}function it(e,t,n,r,i){return new it.prototype.init(e,t,n,r,i)}_.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Ue(e,"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(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=Y(t),u=Ke.test(t),l=e.style;if(u||(t=Ge(s)),a=_.cssHooks[t]||_.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=re.exec(n))&&i[1]&&(n=le(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(_.cssNumber[s]?"":"px")),m.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=Y(t);return Ke.test(t)||(t=Ge(s)),(a=_.cssHooks[t]||_.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Ue(e,t,r)),"normal"===i&&t in et&&(i=et[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),_.each(["height","width"],(function(e,t){_.cssHooks[t]={get:function(e,n,r){if(n)return!Qe.test(_.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?rt(e,t,r):qe(e,Je,(function(){return rt(e,t,r)}))},set:function(e,n,r){var i,o=Fe(e),a=!m.scrollboxSize()&&"absolute"===o.position,s=(a||r)&&"border-box"===_.css(e,"boxSizing",!1,o),u=r?nt(e,t,r,s,o):0;return s&&a&&(u-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-nt(e,t,"border",!1,o)-.5)),u&&(i=re.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=_.css(e,t)),tt(0,n,u)}}})),_.cssHooks.marginLeft=Ve(m.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(Ue(e,"marginLeft"))||e.getBoundingClientRect().left-qe(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),_.each({margin:"",padding:"",border:"Width"},(function(e,t){_.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+ie[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(_.cssHooks[e+t].set=tt)})),_.fn.extend({css:function(e,t){return B(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Fe(e),i=t.length;a1)}}),_.Tween=it,it.prototype={constructor:it,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||_.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(_.cssNumber[n]?"":"px")},cur:function(){var e=it.propHooks[this.prop];return e&&e.get?e.get(this):it.propHooks._default.get(this)},run:function(e){var t,n=it.propHooks[this.prop];return this.options.duration?this.pos=t=_.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):it.propHooks._default.set(this),this}},it.prototype.init.prototype=it.prototype,it.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=_.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){_.fx.step[e.prop]?_.fx.step[e.prop](e):1!==e.elem.nodeType||!_.cssHooks[e.prop]&&null==e.elem.style[Ge(e.prop)]?e.elem[e.prop]=e.now:_.style(e.elem,e.prop,e.now+e.unit)}}},it.propHooks.scrollTop=it.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},_.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},_.fx=it.prototype.init,_.fx.step={};var ot,at,st=/^(?:toggle|show|hide)$/,ut=/queueHooks$/;function lt(){at&&(!1===b.hidden&&n.requestAnimationFrame?n.requestAnimationFrame(lt):n.setTimeout(lt,_.fx.interval),_.fx.tick())}function ct(){return n.setTimeout((function(){ot=void 0})),ot=Date.now()}function dt(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=ie[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ft(e,t,n){for(var r,i=(ht.tweeners[t]||[]).concat(ht.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each((function(){_.removeAttr(this,e)}))}}),_.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?_.prop(e,t,n):(1===o&&_.isXMLDoc(e)||(i=_.attrHooks[t.toLowerCase()]||(_.expr.match.bool.test(t)?pt:void 0)),void 0!==n?null===n?void _.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=_.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!m.radioValue&&"radio"===t&&z(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(I);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),pt={set:function(e,t,n){return!1===t?_.removeAttr(e,n):e.setAttribute(n,n),n}},_.each(_.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=vt[t]||_.find.attr;vt[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=vt[a],vt[a]=i,i=null!=n(e,t,r)?a:null,vt[a]=o),i}}));var mt=/^(?:input|select|textarea|button)$/i,gt=/^(?:a|area)$/i;function yt(e){return(e.match(I)||[]).join(" ")}function bt(e){return e.getAttribute&&e.getAttribute("class")||""}function wt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(I)||[]}_.fn.extend({prop:function(e,t){return B(this,_.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[_.propFix[e]||e]}))}}),_.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&_.isXMLDoc(e)||(t=_.propFix[t]||t,i=_.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=_.find.attr(e,"tabindex");return t?parseInt(t,10):mt.test(e.nodeName)||gt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),m.optSelected||(_.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),_.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){_.propFix[this.toLowerCase()]=this})),_.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each((function(t){_(this).addClass(e.call(this,t,bt(this)))}));if((t=wt(e)).length)for(;n=this[u++];)if(i=bt(n),r=1===n.nodeType&&" "+yt(i)+" "){for(a=0;o=t[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=yt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each((function(t){_(this).removeClass(e.call(this,t,bt(this)))}));if(!arguments.length)return this.attr("class","");if((t=wt(e)).length)for(;n=this[u++];)if(i=bt(n),r=1===n.nodeType&&" "+yt(i)+" "){for(a=0;o=t[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(s=yt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):g(e)?this.each((function(n){_(this).toggleClass(e.call(this,n,bt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=_(this),a=wt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||((t=bt(this))&&Q.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":Q.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+yt(bt(n))+" ").indexOf(t)>-1)return!0;return!1}});var xt=/\r/g;_.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=g(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,_(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=_.map(i,(function(e){return null==e?"":e+""}))),(t=_.valHooks[this.type]||_.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))}))):i?(t=_.valHooks[i.type]||_.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(xt,""):null==n?"":n:void 0}}),_.extend({valHooks:{option:{get:function(e){var t=_.find.attr(e,"value");return null!=t?t:yt(_.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),_.each(["radio","checkbox"],(function(){_.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=_.inArray(_(e).val(),t)>-1}},m.checkOn||(_.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})})),m.focusin="onfocusin"in n;var Tt=/^(?:focusinfocus|focusoutblur)$/,_t=function(e){e.stopPropagation()};_.extend(_.event,{trigger:function(e,t,r,i){var o,a,s,u,l,c,d,f,p=[r||b],v=h.call(e,"type")?e.type:e,m=h.call(e,"namespace")?e.namespace.split("."):[];if(a=f=s=r=r||b,3!==r.nodeType&&8!==r.nodeType&&!Tt.test(v+_.event.triggered)&&(v.indexOf(".")>-1&&(m=v.split("."),v=m.shift(),m.sort()),l=v.indexOf(":")<0&&"on"+v,(e=e[_.expando]?e:new _.Event(v,"object"==typeof e&&e)).isTrigger=i?2:3,e.namespace=m.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=r),t=null==t?[e]:_.makeArray(t,[e]),d=_.event.special[v]||{},i||!d.trigger||!1!==d.trigger.apply(r,t))){if(!i&&!d.noBubble&&!y(r)){for(u=d.delegateType||v,Tt.test(u+v)||(a=a.parentNode);a;a=a.parentNode)p.push(a),s=a;s===(r.ownerDocument||b)&&p.push(s.defaultView||s.parentWindow||n)}for(o=0;(a=p[o++])&&!e.isPropagationStopped();)f=a,e.type=o>1?u:d.bindType||v,(c=(Q.get(a,"events")||Object.create(null))[e.type]&&Q.get(a,"handle"))&&c.apply(a,t),(c=l&&a[l])&&c.apply&&X(a)&&(e.result=c.apply(a,t),!1===e.result&&e.preventDefault());return e.type=v,i||e.isDefaultPrevented()||d._default&&!1!==d._default.apply(p.pop(),t)||!X(r)||l&&g(r[v])&&!y(r)&&((s=r[l])&&(r[l]=null),_.event.triggered=v,e.isPropagationStopped()&&f.addEventListener(v,_t),r[v](),e.isPropagationStopped()&&f.removeEventListener(v,_t),_.event.triggered=void 0,s&&(r[l]=s)),e.result}},simulate:function(e,t,n){var r=_.extend(new _.Event,n,{type:e,isSimulated:!0});_.event.trigger(r,null,t)}}),_.fn.extend({trigger:function(e,t){return this.each((function(){_.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return _.event.trigger(e,t,n,!0)}}),m.focusin||_.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){_.event.simulate(t,e.target,_.event.fix(e))};_.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=Q.access(r,t);i||r.addEventListener(e,n,!0),Q.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=Q.access(r,t)-1;i?Q.access(r,t,i):(r.removeEventListener(e,n,!0),Q.remove(r,t))}}}));var kt=n.location,Ct={guid:Date.now()},St=/\?/;_.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new n.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||_.error("Invalid XML: "+e),t};var Ot=/\[\]$/,At=/\r?\n/g,zt=/^(?:submit|button|image|reset|file)$/i,$t=/^(?:input|select|textarea|keygen)/i;function Et(e,t,n,r){var i;if(Array.isArray(t))_.each(t,(function(t,i){n||Ot.test(e)?r(e,i):Et(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)}));else if(n||"object"!==T(t))r(e,t);else for(i in t)Et(e+"["+i+"]",t[i],n,r)}_.param=function(e,t){var n,r=[],i=function(e,t){var n=g(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!_.isPlainObject(e))_.each(e,(function(){i(this.name,this.value)}));else for(n in e)Et(n,e[n],t,i);return r.join("&")},_.fn.extend({serialize:function(){return _.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=_.prop(this,"elements");return e?_.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!_(this).is(":disabled")&&$t.test(this.nodeName)&&!zt.test(e)&&(this.checked||!ve.test(e))})).map((function(e,t){var n=_(this).val();return null==n?null:Array.isArray(n)?_.map(n,(function(e){return{name:t.name,value:e.replace(At,"\r\n")}})):{name:t.name,value:n.replace(At,"\r\n")}})).get()}});var Dt=/%20/g,Lt=/#.*$/,jt=/([?&])_=[^&]*/,Nt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Pt=/^(?:GET|HEAD)$/,It=/^\/\//,Mt={},Rt={},Wt="*/".concat("*"),Ht=b.createElement("a");function Ft(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(I)||[];if(g(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qt(e,t,n,r){var i={},o=e===Rt;function a(s){var u;return i[s]=!0,_.each(e[s]||[],(function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)})),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function Bt(e,t){var n,r,i=_.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&_.extend(!0,e,r),e}Ht.href=kt.href,_.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:kt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(kt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Wt,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":_.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Bt(Bt(e,_.ajaxSettings),t):Bt(_.ajaxSettings,e)},ajaxPrefilter:Ft(Mt),ajaxTransport:Ft(Rt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var r,i,o,a,s,u,l,c,d,f,h=_.ajaxSetup({},t),p=h.context||h,v=h.context&&(p.nodeType||p.jquery)?_(p):_.event,m=_.Deferred(),g=_.Callbacks("once memory"),y=h.statusCode||{},w={},x={},T="canceled",k={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=Nt.exec(o);)a[t[1].toLowerCase()+" "]=(a[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=a[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(e,t){return null==l&&(e=x[e.toLowerCase()]=x[e.toLowerCase()]||e,w[e]=t),this},overrideMimeType:function(e){return null==l&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)k.always(e[k.status]);else for(t in e)y[t]=[y[t],e[t]];return this},abort:function(e){var t=e||T;return r&&r.abort(t),C(0,t),this}};if(m.promise(k),h.url=((e||h.url||kt.href)+"").replace(It,kt.protocol+"//"),h.type=t.method||t.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(I)||[""],null==h.crossDomain){u=b.createElement("a");try{u.href=h.url,u.href=u.href,h.crossDomain=Ht.protocol+"//"+Ht.host!=u.protocol+"//"+u.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=_.param(h.data,h.traditional)),qt(Mt,h,t,k),l)return k;for(d in(c=_.event&&h.global)&&0==_.active++&&_.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!Pt.test(h.type),i=h.url.replace(Lt,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(Dt,"+")):(f=h.url.slice(i.length),h.data&&(h.processData||"string"==typeof h.data)&&(i+=(St.test(i)?"&":"?")+h.data,delete h.data),!1===h.cache&&(i=i.replace(jt,"$1"),f=(St.test(i)?"&":"?")+"_="+Ct.guid+++f),h.url=i+f),h.ifModified&&(_.lastModified[i]&&k.setRequestHeader("If-Modified-Since",_.lastModified[i]),_.etag[i]&&k.setRequestHeader("If-None-Match",_.etag[i])),(h.data&&h.hasContent&&!1!==h.contentType||t.contentType)&&k.setRequestHeader("Content-Type",h.contentType),k.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+Wt+"; q=0.01":""):h.accepts["*"]),h.headers)k.setRequestHeader(d,h.headers[d]);if(h.beforeSend&&(!1===h.beforeSend.call(p,k,h)||l))return k.abort();if(T="abort",g.add(h.complete),k.done(h.success),k.fail(h.error),r=qt(Rt,h,t,k)){if(k.readyState=1,c&&v.trigger("ajaxSend",[k,h]),l)return k;h.async&&h.timeout>0&&(s=n.setTimeout((function(){k.abort("timeout")}),h.timeout));try{l=!1,r.send(w,C)}catch(e){if(l)throw e;C(-1,e)}}else C(-1,"No Transport");function C(e,t,a,u){var d,f,b,w,x,T=t;l||(l=!0,s&&n.clearTimeout(s),r=void 0,o=u||"",k.readyState=e>0?4:0,d=e>=200&&e<300||304===e,a&&(w=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;"*"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.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]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(h,k,a)),!d&&_.inArray("script",h.dataTypes)>-1&&(h.converters["text script"]=function(){}),w=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(h,w,k,d),d?(h.ifModified&&((x=k.getResponseHeader("Last-Modified"))&&(_.lastModified[i]=x),(x=k.getResponseHeader("etag"))&&(_.etag[i]=x)),204===e||"HEAD"===h.type?T="nocontent":304===e?T="notmodified":(T=w.state,f=w.data,d=!(b=w.error))):(b=T,!e&&T||(T="error",e<0&&(e=0))),k.status=e,k.statusText=(t||T)+"",d?m.resolveWith(p,[f,T,k]):m.rejectWith(p,[k,T,b]),k.statusCode(y),y=void 0,c&&v.trigger(d?"ajaxSuccess":"ajaxError",[k,h,d?f:b]),g.fireWith(p,[k,T]),c&&(v.trigger("ajaxComplete",[k,h]),--_.active||_.event.trigger("ajaxStop")))}return k},getJSON:function(e,t,n){return _.get(e,t,n,"json")},getScript:function(e,t){return _.get(e,void 0,t,"script")}}),_.each(["get","post"],(function(e,t){_[t]=function(e,n,r,i){return g(n)&&(i=i||r,r=n,n=void 0),_.ajax(_.extend({url:e,type:t,dataType:i,data:n,success:r},_.isPlainObject(e)&&e))}})),_.ajaxPrefilter((function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")})),_._evalUrl=function(e,t,n){return _.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){_.globalEval(e,t,n)}})},_.fn.extend({wrapAll:function(e){var t;return this[0]&&(g(e)&&(e=e.call(this[0])),t=_(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return g(e)?this.each((function(t){_(this).wrapInner(e.call(this,t))})):this.each((function(){var t=_(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=g(e);return this.each((function(n){_(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not("body").each((function(){_(this).replaceWith(this.childNodes)})),this}}),_.expr.pseudos.hidden=function(e){return!_.expr.pseudos.visible(e)},_.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},_.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(e){}};var Ut={0:200,1223:204},Vt=_.ajaxSettings.xhr();m.cors=!!Vt&&"withCredentials"in Vt,m.ajax=Vt=!!Vt,_.ajaxTransport((function(e){var t,r;if(m.cors||Vt&&!e.crossDomain)return{send:function(i,o){var a,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(a in e.xhrFields)s[a]=e.xhrFields[a];for(a in e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)s.setRequestHeader(a,i[a]);t=function(e){return function(){t&&(t=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Ut[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=t(),r=s.onerror=s.ontimeout=t("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&n.setTimeout((function(){t&&r()}))},t=t("abort");try{s.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}})),_.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),_.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return _.globalEval(e),e}}}),_.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),_.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=_(" + \ No newline at end of file diff --git a/packages/Webkul/Shop/src/Resources/assets/sass/_variables.scss b/packages/Webkul/Shop/src/Resources/assets/sass/_variables.scss index 6c516406a..98628d229 100755 --- a/packages/Webkul/Shop/src/Resources/assets/sass/_variables.scss +++ b/packages/Webkul/Shop/src/Resources/assets/sass/_variables.scss @@ -1,4 +1,4 @@ -@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500"); +@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500&display=swap"); //shop variables $brand-color: #0031F0; diff --git a/packages/Webkul/Shop/src/Resources/views/checkout/cart/index.blade.php b/packages/Webkul/Shop/src/Resources/views/checkout/cart/index.blade.php index 68396ba95..f57e97f89 100755 --- a/packages/Webkul/Shop/src/Resources/views/checkout/cart/index.blade.php +++ b/packages/Webkul/Shop/src/Resources/views/checkout/cart/index.blade.php @@ -33,7 +33,7 @@
- +
diff --git a/packages/Webkul/Shop/src/Resources/views/checkout/cart/mini-cart.blade.php b/packages/Webkul/Shop/src/Resources/views/checkout/cart/mini-cart.blade.php index a0e37eb47..b46cfc470 100755 --- a/packages/Webkul/Shop/src/Resources/views/checkout/cart/mini-cart.blade.php +++ b/packages/Webkul/Shop/src/Resources/views/checkout/cart/mini-cart.blade.php @@ -41,7 +41,7 @@ @php $images = $item->product->getTypeInstance()->getBaseImage($item); @endphp - +
diff --git a/packages/Webkul/Shop/src/Resources/views/checkout/onepage/review.blade.php b/packages/Webkul/Shop/src/Resources/views/checkout/onepage/review.blade.php index 59a507f44..223514041 100755 --- a/packages/Webkul/Shop/src/Resources/views/checkout/onepage/review.blade.php +++ b/packages/Webkul/Shop/src/Resources/views/checkout/onepage/review.blade.php @@ -78,7 +78,7 @@
- +
diff --git a/packages/Webkul/Shop/src/Resources/views/customers/account/orders/pdf.blade.php b/packages/Webkul/Shop/src/Resources/views/customers/account/orders/pdf.blade.php index 7e30e1c13..1826d8fe9 100755 --- a/packages/Webkul/Shop/src/Resources/views/customers/account/orders/pdf.blade.php +++ b/packages/Webkul/Shop/src/Resources/views/customers/account/orders/pdf.blade.php @@ -111,7 +111,7 @@
@if (core()->getConfigData('sales.orderSettings.invoice_slip_design.logo'))
- +
@endif
diff --git a/packages/Webkul/Shop/src/Resources/views/customers/account/reviews/index.blade.php b/packages/Webkul/Shop/src/Resources/views/customers/account/reviews/index.blade.php index 119b0fdec..28683a5c4 100755 --- a/packages/Webkul/Shop/src/Resources/views/customers/account/reviews/index.blade.php +++ b/packages/Webkul/Shop/src/Resources/views/customers/account/reviews/index.blade.php @@ -36,7 +36,7 @@
getProductBaseImage($review->product); ?> - +
diff --git a/packages/Webkul/Shop/src/Resources/views/customers/account/reviews/reviews.blade.php b/packages/Webkul/Shop/src/Resources/views/customers/account/reviews/reviews.blade.php index 50340e35b..a86d410e1 100755 --- a/packages/Webkul/Shop/src/Resources/views/customers/account/reviews/reviews.blade.php +++ b/packages/Webkul/Shop/src/Resources/views/customers/account/reviews/reviews.blade.php @@ -22,7 +22,7 @@