commit ef46e76a68ef3b625d5741022f50eb0790ee532b
Author: Alex Dong <support@alothemes.com>
Date:   Tue Apr 21 23:18:28 2020 +0700

    Update featured

diff --git a/app/code/Magepow/Ajaxcart/.gitignore b/app/code/Magepow/Ajaxcart/.gitignore
new file mode 100644
index 0000000..b275c23
--- /dev/null
+++ b/app/code/Magepow/Ajaxcart/.gitignore
@@ -0,0 +1,26 @@
+# General
+.DS_Store
+.AppleDouble
+.LSOverride
+
+# Icon must end with two \r
+Icon
+
+# Thumbnails
+._*
+
+# Files that might appear in the root of a volume
+.DocumentRevisions-V100
+.fseventsd
+.Spotlight-V100
+.TemporaryItems
+.Trashes
+.VolumeIcon.icns
+.com.apple.timemachine.donotpresent
+
+# Directories potentially created on remote AFP share
+.AppleDB
+.AppleDesktop
+Network Trash Folder
+Temporary Items
+.apdisk
\ No newline at end of file
diff --git a/app/code/Magepow/Ajaxcart/Block/Cart/Sidebar.php b/app/code/Magepow/Ajaxcart/Block/Cart/Sidebar.php
index 15ec4aa..089f71d 100644
--- a/app/code/Magepow/Ajaxcart/Block/Cart/Sidebar.php
+++ b/app/code/Magepow/Ajaxcart/Block/Cart/Sidebar.php
@@ -21,6 +21,7 @@ class Sidebar extends Template
 
    private $scopeConfig;
 
+   protected $jsLayout;
    protected $_storeManager;
 
    protected $localeCurrency;
@@ -49,9 +50,28 @@ class Sidebar extends Template
      $this->_storeManager = $storeManager;
      $this->localecurrency = $localeCurrency;
      $this->helper = $helper;
+    // $this->jsLayout = array('test'=>1);
+      // if (isset($data['jsLayout'])) {
+      //     $this->jsLayout = array_merge_recursive($jsLayoutDataProvider->getData(), $data['jsLayout']);
+      //     unset($data['jsLayout']);
+      // } else {
+      //     $this->jsLayout = $jsLayoutDataProvider->getData();
+      // }
+    $this->jsLayout = isset($data['jsLayout']) && is_array($data['jsLayout']) ? $data['jsLayout'] : [];
+    $this->jsLayout['components']['minicart-addons']['config'] = array(
+      'currency' => $this->getStoreCurrency(),
+      'currencyCode' => $this->getCurrentCurrencyCode(),
+      'shippingBar' => $this->getConfigForShippingBar(),
+    );
 
    }
-   
+    /**
+     * @return string
+     */
+    public function getJsLayout()
+    {
+            return \Zend_Json::encode($this->jsLayout);
+    }
     public function getFreeShippingStatus()
     {
         return $this->scopeConfig->getValue('carriers/freeshipping/active', \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
diff --git a/app/code/Magepow/Ajaxcart/Block/Color.php b/app/code/Magepow/Ajaxcart/Block/Color.php
new file mode 100644
index 0000000..f6f7e07
--- /dev/null
+++ b/app/code/Magepow/Ajaxcart/Block/Color.php
@@ -0,0 +1,48 @@
+<?php
+/*
+ * @category: Magepow
+ * @copyright: Copyright (c) 2014 Magepow (http://www.magepow.com/)
+ * @licence: http://www.magepow.com/license-agreement
+ * @author: MichaelHa
+ * @create date: 2019-07-9 17:19:50
+ * @LastEditors: DavidDuong
+ * @LastEditTime: 2019-07-22 12:59:07
+ */
+namespace Magepow\Ajaxcart\Block;
+ 
+class Color extends \Magento\Config\Block\System\Config\Form\Field {
+ 
+	public function __construct(
+	\Magento\Backend\Block\Template\Context $context, array $data = []
+	) {
+		parent::__construct($context, $data);
+	}
+	
+	protected function _getElementHtml(\Magento\Framework\Data\Form\Element\AbstractElement $element) {
+		$html = $element->getElementHtml();
+		$value = $element->getData('value');
+	
+		$html .= '<script type="text/javascript">
+			require(["jquery"], function ($) {
+				$(document).ready(function (e) {
+					$("#'.$element->getHtmlId().'").css("background-color","#'.$value.'");
+					$("#'.$element->getHtmlId().'").colpick({
+						layout:"hex",
+						submit:0,
+						colorScheme:"dark",
+						color: "#'.$value.'",
+						onChange:function(hsb,hex,rgb,el,bySetColor) {
+						$(el).css("background-color","#"+hex);
+						if(!bySetColor) $(el).val(hex);
+					}
+					}).keyup(function(){
+						$(this).colpickSetColor(this.value);
+					});
+				});
+			});
+			</script>';
+
+		return $html;
+	}
+ 
+}
\ No newline at end of file
diff --git a/app/code/Magepow/Ajaxcart/Controller/Index/Index.php b/app/code/Magepow/Ajaxcart/Controller/Index/Index.php
index 275b731..ff328ff 100644
--- a/app/code/Magepow/Ajaxcart/Controller/Index/Index.php
+++ b/app/code/Magepow/Ajaxcart/Controller/Index/Index.php
@@ -160,6 +160,24 @@ class Index extends \Magento\Framework\App\Action\Action
         $this->registry = $registry;
     }
 
+    /**
+     * Set back redirect url to response
+     *
+     * @param null|string $backUrl
+     *
+     * @return \Magento\Framework\Controller\Result\Redirect
+     */
+    protected function _goBack($backUrl = null)
+    {
+        $resultRedirect = $this->resultRedirectFactory->create();
+
+        if ($backUrl || $backUrl = $this->getBackUrl($this->_redirect->getRefererUrl())) {
+            $resultRedirect->setUrl($backUrl);
+        }
+
+        return $resultRedirect;
+    }
+
     /**
      * Execute add to cart.
      *
@@ -229,12 +247,16 @@ class Index extends \Magento\Framework\App\Action\Action
             $result = [];
             $result['error'] = true;
             $result['error_info'] = $e->getMessage();
-            $result['view'] = true;
             $result['id'] = $params['id'];
             $result['url'] = $this->escaper->escapeUrl(
                 $this->urlInterface->getUrl('ajaxcart/index/view', ['id' => $params['id']])
             );
-
+            $result['view'] = true;
+            // $qty = isset($params['qty']) ? $params['qty'] : 1;
+            // $stockQty = $product->getExtensionAttributes()->getStockItem()->getQty();
+            if( $product->getTypeId() == 'simple' && !$product->getData('has_options') ){
+	            $result['view'] = false;
+            }
             $resultJson = $this->resultFactory->create(ResultFactory::TYPE_JSON);
             $resultJson->setData($result);
             return $resultJson;
diff --git a/app/code/Magepow/Ajaxcart/Helper/Data.php b/app/code/Magepow/Ajaxcart/Helper/Data.php
index 3ed7194..026784a 100644
--- a/app/code/Magepow/Ajaxcart/Helper/Data.php
+++ b/app/code/Magepow/Ajaxcart/Helper/Data.php
@@ -33,7 +33,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function isEnabled()
     {
         return $this->scopeConfig->isSetFlag(
-            'ajaxcart/general/active',
+            'magepow_ajaxcart/general/enabled',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -46,7 +46,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function isEnabledProductView()
     {
         return $this->scopeConfig->isSetFlag(
-            'ajaxcart/general/active_product_view',
+            'magepow_ajaxcart/general/enabled_product_view',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -59,7 +59,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getAddToCartSelector()
     {
         return $this->scopeConfig->getValue(
-            'ajaxcart/general/selector',
+            'magepow_ajaxcart/general/selector',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -72,7 +72,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function isShowProductImage()
     {
         return $this->scopeConfig->isSetFlag(
-            'ajaxcart/success_popup/product_image',
+            'magepow_ajaxcart/success_popup/product_image',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -85,7 +85,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getImageSize()
     {
         return $this->scopeConfig->getValue(
-            'ajaxcart/success_popup/product_image_size',
+            'magepow_ajaxcart/success_popup/product_image_size',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -98,7 +98,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function isShowProductPrice()
     {
         return $this->scopeConfig->isSetFlag(
-            'ajaxcart/success_popup/product_price',
+            'magepow_ajaxcart/success_popup/product_price',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -111,20 +111,20 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function isShowContinueBtn()
     {
         return $this->scopeConfig->isSetFlag(
-            'ajaxcart/success_popup/continue_button',
+            'magepow_ajaxcart/success_popup/continue_button',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
 
     /**
-     * Get countdown active for which button.
+     * Get countdown enabled for which button.
      *
      * @return string
      */
     public function getCountDownActive()
     {
         return $this->scopeConfig->getValue(
-            'ajaxcart/success_popup/active_countdown',
+            'magepow_ajaxcart/success_popup/enabled_countdown',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -137,7 +137,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getCountDownTime()
     {
         return $this->scopeConfig->getValue(
-            'ajaxcart/success_popup/countdown_time',
+            'magepow_ajaxcart/success_popup/countdown_time',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -150,7 +150,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function isShowCartInfo()
     {
         return $this->scopeConfig->isSetFlag(
-            'ajaxcart/success_popup/mini_cart',
+            'magepow_ajaxcart/success_popup/mini_cart',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -163,7 +163,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function isShowCheckoutLink()
     {
         return $this->scopeConfig->isSetFlag(
-            'ajaxcart/success_popup/mini_checkout',
+            'magepow_ajaxcart/success_popup/mini_checkout',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -176,7 +176,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function isShowSuggestBlock()
     {
         return $this->scopeConfig->isSetFlag(
-            'ajaxcart/success_popup/suggest_product',
+            'magepow_ajaxcart/success_popup/suggest_product',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -189,7 +189,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getSuggestTitle()
     {
         return $this->scopeConfig->getValue(
-            'ajaxcart/success_popup/suggest_title',
+            'magepow_ajaxcart/success_popup/suggest_title',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -202,7 +202,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getSuggestSource()
     {
         return $this->scopeConfig->getValue(
-            'ajaxcart/success_popup/suggest_source',
+            'magepow_ajaxcart/success_popup/suggest_source',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -215,7 +215,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getSuggestLimit()
     {
         return $this->scopeConfig->getValue(
-            'ajaxcart/success_popup/suggest_limit',
+            'magepow_ajaxcart/success_popup/suggest_limit',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -228,7 +228,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getBtnTextColor()
     {
         $color = $this->scopeConfig->getValue(
-            'ajaxcart/success_popup_design/button_text_color',
+            'magepow_ajaxcart/success_popup_design/button_text_color',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
 
@@ -244,7 +244,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getBtnContinueText()
     {
         return $this->scopeConfig->getValue(
-            'ajaxcart/success_popup_design/continue_text',
+            'magepow_ajaxcart/success_popup_design/continue_text',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -257,7 +257,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getBtnContinueBackground()
     {
         $backGround = $this->scopeConfig->getValue(
-            'ajaxcart/success_popup_design/continue',
+            'magepow_ajaxcart/success_popup_design/continue',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
 
@@ -273,7 +273,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getBtnContinueHover()
     {
         $hover = $this->scopeConfig->getValue(
-            'ajaxcart/success_popup_design/continue_hover',
+            'magepow_ajaxcart/success_popup_design/continue_hover',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
 
@@ -289,7 +289,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getBtnViewcartText()
     {
         return $this->scopeConfig->getValue(
-            'ajaxcart/success_popup_design/viewcart_text',
+            'magepow_ajaxcart/success_popup_design/viewcart_text',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -302,7 +302,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getBtnViewcartBackground()
     {
         $backGround = $this->scopeConfig->getValue(
-            'ajaxcart/success_popup_design/viewcart',
+            'magepow_ajaxcart/success_popup_design/viewcart',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
 
@@ -318,7 +318,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getBtnViewcartHover()
     {
         $hover = $this->scopeConfig->getValue(
-            'ajaxcart/success_popup_design/viewcart_hover',
+            'magepow_ajaxcart/success_popup_design/viewcart_hover',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
 
@@ -334,7 +334,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getFreeShippingMessageText()
     {
         return $this->scopeConfig->getValue(
-            'ajaxcart/success_popup_design/freeShipping_message',
+            'magepow_ajaxcart/success_popup_design/freeShipping_message',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -347,7 +347,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function getCongratulationMessageText()
     {
         return $this->scopeConfig->getValue(
-            'ajaxcart/success_popup_design/congratulation',
+            'magepow_ajaxcart/success_popup_design/congratulation',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -360,7 +360,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function isShowQuickviewGotoLink()
     {
         return $this->scopeConfig->isSetFlag(
-            'ajaxcart/quickview_popup/go_to_product',
+            'magepow_ajaxcart/quickview_popup/go_to_product',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
@@ -373,7 +373,7 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     public function isShowQuickviewAddData()
     {
         return $this->scopeConfig->isSetFlag(
-            'ajaxcart/quickview_popup/additional_data',
+            'magepow_ajaxcart/quickview_popup/additional_data',
             \Magento\Store\Model\ScopeInterface::SCOPE_STORE
         );
     }
diff --git a/app/code/Magepow/Ajaxcart/README.md b/app/code/Magepow/Ajaxcart/README.md
new file mode 100644
index 0000000..9448ae9
--- /dev/null
+++ b/app/code/Magepow/Ajaxcart/README.md
@@ -0,0 +1,93 @@
+# Magento2 Ajaxcart
+**Ajax Cart extension** for Magento 2 allows customers Add products to cart easily and quickly without reloading the page. Therefore, the extension not only enhances customer shopping experience but also reduce the bounce rate or leaving the cart.
+
+## 1. How to install Magento 2 Ajaxcart
+### ✓ Install Magepow Ajaxcart via composer (recommend)
+Run the following command in Magento 2 root folder:
+
+`composer require magepow/ajaxcart`
+
+`php bin/magento setup:upgrade`
+
+`php bin/magento setup:static-content:deploy -f`
+
+## 2. Look in Frontend
+![ajaxcontact_submit-img](https://github.com/magepow/magento2-ajaxcart/blob/master/media/ajaxcart_frontend.png)
+
+## 3. Magepow Ajaxcart user guide
+[Document](https://docs.alothemes.com/m2/theme/gecko/#sub72)
+
+To Config and Manage Ajax Cart, go to *Admin Panel > Magiccart > ALO themes > Configuration > MAGEPOW > Ajax Cart as the image below*
+![ajaxcontact_submit-img](https://github.com/magepow/magento2-ajaxcart/blob/master/media/ajaxcart_backend.png)
+
+- General Options: Allow you Enable/Disable Ajax Cart and change 'Add to Cart' Button Selector
+- Success Popup Setting: Allow you change configs for Ajax Cart such as: Show product image or not, Size of image (Width, Height), show buttons ('Continue' Button, Countdown time for Button, 'Go to Checkout' link/button, Show Cart Quantity and Cart Subtotal and allow you can show Suggested Products.
+- Success Popup Design: Allow you config style for Ajax Cart such as Color of Text on Buttons, buttons color, buttons when hover, other texts...
+Quick View Popup Setting: Allow you can show/ disable 'Go to Product' link/button and show Additional Data of that product
+- General Add To Cart Bottom
+Allow you can Enable/Disable General Add To Cart Bottom and Height Scroll (The height of screen from the top of the web page to the appearance 'add to cart bottom').
+
+**Free Extensions List**
+
+* [Magento 2 Recent Sales Notification](https://magepow.com/magento-2-recent-sales-notification.html)
+
+* [Magento Categories Extension](https://magepow.com/magento-categories-extension.html)
+
+* [Magento Sticky Cart](https://magepow.com/magento-sticky-cart.html)
+
+* [Magento Ajax Contact](https://magepow.com/magento-ajax-contact-form.html)
+
+* [Magento Lazy Load](https://magepow.com/magento-lazy-load.html)
+
+**Premium Extensions List**
+
+* [Magento Speed Optimizer](https://magepow.com/magento-speed-optimizer.html)
+
+* [Magento 2 Mutil Translate](https://magepow.com/magento-multi-translate.html)
+
+* [Magento 2 Instagram Integration](https://magepow.com/magento-2-instagram.html)
+
+* [Lookbook Pin Products](https://magepow.com/lookbook-pin-products.html)
+
+* [Magento Product Slider](https://magepow.com/magento-product-slider.html)
+
+* [Magento Product Banner](https://magepow.com/magento-banner-slider.html)
+
+**Featured Magento services**
+
+* [PSD to Magento 2 Theme Conversion](https://magepow.com/psd-to-magento-theme-conversion.html)
+
+* [Magento Speed Optimization Service](https://magepow.com/magento-speed-optimization-service.html)
+
+* [Magento Security Patch Installation](https://magepow.com/magento-security-patch-installation.html)
+
+* [Magento Website Maintenance Service](https://magepow.com/website-maintenance-service.html)
+
+* [Magento Professional Installation Service](https://magepow.com/professional-installation-service.html)
+
+* [Magento Upgrade Service](https://magepow.com/magento-upgrade-service.html)
+
+* [Customization Service](https://magepow.com/customization-service.html)
+
+* [Hire Magento Developer](https://magepow.com/hire-magento-developer.html)
+
+**Featured Magento Themes**
+
+* [Expert Multipurpose responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/expert-premium-responsive-magento-2-and-1-support-rtl-magento-2-/21667789)
+
+* [Gecko Premium responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/gecko-responsive-magento-2-theme-rtl-supported/24677410)
+
+* [Milano Fashion responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/milano-fashion-responsive-magento-1-2-theme/12141971)
+
+* [Electro responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/electro-responsive-magento-1-2-theme/17042067)
+
+* [Pizzaro food responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/pizzaro-food-responsive-magento-1-2-theme/19438157)
+
+* [Biolife organic responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/biolife-organic-food-magento-2-theme-rtl-supported/25712510)
+
+* [Market responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/market-responsive-magento-2-theme/22997928)
+
+* [Kuteshop responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/kuteshop-multipurpose-responsive-magento-1-2-theme/12985435)
+
+[![Latest Stable Version](https://poser.pugx.org/magepow/ajaxcart/v/stable)](https://packagist.org/packages/magepow/ajaxcart)
+[![Total Downloads](https://poser.pugx.org/magepow/ajaxcart/downloads)](https://packagist.org/packages/magepow/ajaxcart)
diff --git a/app/code/Magepow/Ajaxcart/composer.json b/app/code/Magepow/Ajaxcart/composer.json
index d76c15f..866656a 100644
--- a/app/code/Magepow/Ajaxcart/composer.json
+++ b/app/code/Magepow/Ajaxcart/composer.json
@@ -1,9 +1,6 @@
 {
     "name": "magepow/ajaxcart",
     "description": "Magepow Ajax Add To Cart",
-    "require": {
-        "php": "~5.5.0|~5.6.0|7.0.2|7.0.4|~7.0.6|~7.1.0"
-    },
     "suggest": {
         "magento/module-cookie": "100.1.*"
     },
@@ -13,6 +10,14 @@
         "OSL-3.0",
         "AFL-3.0"
     ],
+    "authors": [
+        {
+            "name": "Magepow",
+            "email": "support@magepow.com",
+            "homepage": "https://magepow.com",
+            "role": "Technical Support"
+        }
+    ],
     "autoload": {
         "files": [
             "registration.php"
diff --git a/app/code/Magepow/Ajaxcart/etc/adminhtml/system.xml b/app/code/Magepow/Ajaxcart/etc/adminhtml/system.xml
index f4f02d4..f6c1131 100644
--- a/app/code/Magepow/Ajaxcart/etc/adminhtml/system.xml
+++ b/app/code/Magepow/Ajaxcart/etc/adminhtml/system.xml
@@ -1,25 +1,25 @@
 <?xml version="1.0"?>
 <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
     <system>
-        <tab id="magepow" translate="label" sortOrder="300">
+        <tab id="magepow" translate="label" sortOrder="89">
              <label><![CDATA[Magepow]]></label>
         </tab>
-        <section id="ajaxcart" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1">
+        <section id="magepow_ajaxcart" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1">
             <label><![CDATA[Ajax Cart]]></label>
             <tab>magepow</tab>
             <resource>Magepow_Ajaxcart::config_ajaxcart</resource>
             <group id="general" translate="label" type="text" sortOrder="1" showInDefault="10" showInWebsite="1" showInStore="1">
                 <label><![CDATA[General Options]]></label>
-                <field id="active" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
+                <field id="enabled" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
                     <label><![CDATA[Enabled]]></label>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
-                    <comment><![CDATA[Choose 'yes' to enable module.<br />Version 1.1.4]]></comment>
+                    <comment><![CDATA[Choose 'Yes' to enable module.<br />]]></comment>
                 </field>
-                <field id="active_product_view" translate="label" type="select" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="1">
+                <!-- <field id="enabled_product_view" translate="label" type="select" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="1">
                     <label><![CDATA[Enabled Function in Product Page]]></label>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
-                    <comment><![CDATA[Choose 'yes' to enable module in product view.]]></comment>
-                </field>
+                    <comment><![CDATA[Choose 'Yes' to enable module in product view.]]></comment>
+                </field> -->
                 <field id="selector" translate="label" type="text" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
                     <label><![CDATA['Add to Cart' Button Selector]]></label>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
@@ -32,8 +32,13 @@
                     <label><![CDATA[Show Product Image]]></label>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                 </field>
-                <field id="product_image_size" translate="label" type="text" sortOrder="15" showInDefault="1" showInWebsite="1" showInStore="1">
-                    <label><![CDATA[Image Size (px)]]></label>
+                <field id="product_image_width" translate="label" type="text" sortOrder="15" showInDefault="1" showInWebsite="1" showInStore="1">
+                    <label><![CDATA[Image Width (px)]]></label>
+                    <backend_model>Magepow\Ajaxcart\Model\Config\Backend\Number\GreaterThanZero</backend_model>
+                    <validate>required-entry validate-greater-than-zero</validate>
+                </field>
+                <field id="product_image_height" translate="label" type="text" sortOrder="16" showInDefault="1" showInWebsite="1" showInStore="1">
+                    <label><![CDATA[Image Height (px)]]></label>
                     <backend_model>Magepow\Ajaxcart\Model\Config\Backend\Number\GreaterThanZero</backend_model>
                     <validate>required-entry validate-greater-than-zero</validate>
                 </field>
@@ -45,7 +50,7 @@
                     <label><![CDATA[Show 'Continue' Button]]></label>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                 </field>
-                <field id="active_countdown" translate="label" type="select" sortOrder="40" showInDefault="1" showInWebsite="1" showInStore="1">
+                <field id="enabled_countdown" translate="label" type="select" sortOrder="40" showInDefault="1" showInWebsite="1" showInStore="1">
                     <label><![CDATA[Countdown time for Button]]></label>
                     <source_model>Magepow\Ajaxcart\Model\Config\Source\Countdown</source_model>
                 </field>
@@ -92,29 +97,29 @@
                 <label><![CDATA[Success Popup Design]]></label>
                 <field id="button_text_color" translate="label" type="text" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
                     <label><![CDATA[Color of Text on Buttons]]></label>
-                    <validate>color</validate>
+                    <frontend_model>Magepow\Ajaxcart\Block\Color</frontend_model>
                 </field>
                 <field id="continue_text" translate="label" type="text" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="1">
                     <label><![CDATA[Text of 'Continue' Button]]></label>
                 </field>
                 <field id="continue" translate="label" type="text" sortOrder="30" showInDefault="1" showInWebsite="1" showInStore="1">
                     <label><![CDATA['Continue' Button Color]]></label>
-                    <validate>color</validate>
+                    <frontend_model>Magepow\Ajaxcart\Block\Color</frontend_model>
                 </field>
                 <field id="continue_hover" translate="label" type="text" sortOrder="40" showInDefault="1" showInWebsite="1" showInStore="1">
                     <label><![CDATA['Continue' Button Color on Hover]]></label>
-                    <validate>color</validate>
+                    <frontend_model>Magepow\Ajaxcart\Block\Color</frontend_model>
                 </field>
                 <field id="viewcart_text" translate="label" type="text" sortOrder="50" showInDefault="1" showInWebsite="1" showInStore="1">
                     <label><![CDATA[Text of 'View Cart' Button]]></label>
                 </field>
                 <field id="viewcart" translate="label" type="text" sortOrder="60" showInDefault="1" showInWebsite="1" showInStore="1">
                     <label><![CDATA['View Cart' Button Color]]></label>
-                    <validate>color</validate>
+                    <frontend_model>Magepow\Ajaxcart\Block\Color</frontend_model>
                 </field>
                 <field id="viewcart_hover" translate="label" type="text" sortOrder="70" showInDefault="1" showInWebsite="1" showInStore="1">
                     <label><![CDATA['View Cart' Button Color on Hover]]></label>
-                    <validate>color</validate>
+                     <frontend_model>Magepow\Ajaxcart\Block\Color</frontend_model>
                 </field>
 
                 <field id="freeShipping_message" translate="label" type="text" sortOrder="80" showInDefault="1" showInWebsite="1" showInStore="1">
diff --git a/app/code/Magepow/Ajaxcart/etc/config.xml b/app/code/Magepow/Ajaxcart/etc/config.xml
index e086573..eb804ea 100644
--- a/app/code/Magepow/Ajaxcart/etc/config.xml
+++ b/app/code/Magepow/Ajaxcart/etc/config.xml
@@ -1,18 +1,19 @@
 <?xml version="1.0"?>
 <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
     <default>
-        <ajaxcart>
+        <magepow_ajaxcart>
             <general>
-                <active>1</active>
-                <active_product_view>1</active_product_view>
+                <enabled>1</enabled>
+                <enabled_product_view>1</enabled_product_view>
                 <selector>.action.tocart</selector>
             </general>
             <success_popup>
             	<product_image>1</product_image>
-            	<product_image_size>100</product_image_size>
+            	<product_image_width>100</product_image_width>
+            	<product_image_height>150</product_image_height>
             	<product_price>0</product_price>
             	<continue_button>1</continue_button>
-            	<active_countdown>1</active_countdown>
+            	<enabled_countdown>1</enabled_countdown>
             	<countdown_time>5</countdown_time>
             	<mini_cart>1</mini_cart>
             	<mini_checkout>1</mini_checkout>
@@ -21,13 +22,13 @@
             	<suggest_limit>5</suggest_limit>
             </success_popup>
             <success_popup_design>
-            	<button_text_color>ffffff</button_text_color>
+            	<button_text_color>#ffffff</button_text_color>
             	<continue_text>Continue Shopping</continue_text>
-            	<continue>1979c3</continue>
-            	<continue_hover>006bb4</continue_hover>
+            	<continue>#b59677</continue>
+            	<continue_hover>#b59677</continue_hover>
             	<viewcart_text>View Cart</viewcart_text>
-            	<viewcart>1979c3</viewcart>
-            	<viewcart_hover>006bb4</viewcart_hover>
+            	<viewcart>#b59677</viewcart>
+            	<viewcart_hover>#b59677</viewcart_hover>
                 <freeShipping_message>Ajaxcart - module, you can put own text in configuration</freeShipping_message>
                 <congratulation>CONGRATULATIONS! YOU'VE GOT FREE SHIPPING!</congratulation>
             </success_popup_design>
@@ -35,6 +36,6 @@
                 <go_to_product>1</go_to_product>
                 <additional_data>0</additional_data>
             </quickview_popup>
-        </ajaxcart>
+        </magepow_ajaxcart>
     </default>
 </config>
diff --git a/app/code/Magepow/Ajaxcart/media/ajaxcart_backend.png b/app/code/Magepow/Ajaxcart/media/ajaxcart_backend.png
new file mode 100644
index 0000000..7b3dc5e
Binary files /dev/null and b/app/code/Magepow/Ajaxcart/media/ajaxcart_backend.png differ
diff --git a/app/code/Magepow/Ajaxcart/media/ajaxcart_frontend.png b/app/code/Magepow/Ajaxcart/media/ajaxcart_frontend.png
new file mode 100644
index 0000000..68df30d
Binary files /dev/null and b/app/code/Magepow/Ajaxcart/media/ajaxcart_frontend.png differ
diff --git a/app/code/Magepow/Ajaxcart/view/frontend/layout/ajaxcart_index_view.xml b/app/code/Magepow/Ajaxcart/view/frontend/layout/ajaxcart_index_view.xml
index 79b5139..f4b4b28 100644
--- a/app/code/Magepow/Ajaxcart/view/frontend/layout/ajaxcart_index_view.xml
+++ b/app/code/Magepow/Ajaxcart/view/frontend/layout/ajaxcart_index_view.xml
@@ -13,7 +13,7 @@
         <referenceContainer name="product.info.social" remove="true"/>
         
         <referenceContainer name="content">
-            <block class="Magento\Catalog\Block\Product\View\Type\Simple" ifconfig="ajaxcart/quickview_popup/go_to_product" name="magepow.ajaxcart.goto" template="Magepow_Ajaxcart::goto_product.phtml" before="-" />
+            <block class="Magento\Catalog\Block\Product\View\Type\Simple" ifconfig="magepow_ajaxcart/quickview_popup/go_to_product" name="magepow.ajaxcart.goto" template="Magepow_Ajaxcart::goto_product.phtml" before="-" />
         </referenceContainer>
     </body>
 </page>
\ No newline at end of file
diff --git a/app/code/Magepow/Ajaxcart/view/frontend/layout/default.xml b/app/code/Magepow/Ajaxcart/view/frontend/layout/default.xml
index 96f60d6..9412bdd 100644
--- a/app/code/Magepow/Ajaxcart/view/frontend/layout/default.xml
+++ b/app/code/Magepow/Ajaxcart/view/frontend/layout/default.xml
@@ -1,18 +1,9 @@
 <?xml version="1.0"?>
 <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
-	<head>
-    <css src="Magepow_Ajaxcart::css/owl.carousel.css"/>
-  </head>
   <body>
     <referenceContainer name="before.body.end">
-      <block class="Magepow\Ajaxcart\Block\Ajax\Template"
-       ifconfig="ajaxcart/general/active"
-       name="magepow.ajaxcart.config"
-       template="Magepow_Ajaxcart::config.phtml"/>
-      <block class="Magepow\Ajaxcart\Block\Ajax\Template"
-         ifconfig="ajaxcart/general/active"
-         name="magepow.ajaxcart"
-         template="Magepow_Ajaxcart::ajax.phtml"/>
+      <block class="Magepow\Ajaxcart\Block\Ajax\Template" ifconfig="magepow_ajaxcart/general/enabled" name="magepow.ajaxcart.config" template="Magepow_Ajaxcart::config.phtml"/>
+      <block class="Magepow\Ajaxcart\Block\Ajax\Template" ifconfig="magepow_ajaxcart/general/enabled" name="magepow.ajaxcart" template="Magepow_Ajaxcart::ajax.phtml"/>
     </referenceContainer>
     <referenceContainer name="minicart.addons">
       <block class="Magepow\Ajaxcart\Block\Cart\Sidebar" name="shipping_bar" template="Magepow_Ajaxcart::cart/minicart.phtml">
diff --git a/app/code/Magepow/Ajaxcart/view/frontend/requirejs-config.js b/app/code/Magepow/Ajaxcart/view/frontend/requirejs-config.js
index af6fa0e..dd63928 100644
--- a/app/code/Magepow/Ajaxcart/view/frontend/requirejs-config.js
+++ b/app/code/Magepow/Ajaxcart/view/frontend/requirejs-config.js
@@ -2,7 +2,6 @@ var config = {
 	map: {
         '*': {
             magepowAjaxcart: 'Magepow_Ajaxcart/js/ajax',
-            magepowOwl: 'Magepow_Ajaxcart/js/owl.carousel',
             magepowPopup: 'Magepow_Ajaxcart/js/popup',
             magepowGoto: 'Magepow_Ajaxcart/js/goto',
             magepowProductSuggest: 'Magepow_Ajaxcart/js/suggest'
diff --git a/app/code/Magepow/Ajaxcart/view/frontend/templates/config.phtml b/app/code/Magepow/Ajaxcart/view/frontend/templates/config.phtml
index 9705251..e8057c7 100644
--- a/app/code/Magepow/Ajaxcart/view/frontend/templates/config.phtml
+++ b/app/code/Magepow/Ajaxcart/view/frontend/templates/config.phtml
@@ -16,6 +16,7 @@ $btnContinueBackground = $helper->getBtnContinueBackground();
 $btnContinueHover = $helper->getBtnContinueHover();
 $btnViewcartBackground = $helper->getBtnViewcartBackground();
 $btnViewcartHover = $helper->getBtnViewcartHover();
+$countDown = ($helper->getCountDownTime() > 0) ? $helper->getCountDownTime() : 0;
 ?>
 <style>
     #magepow_ajaxcart_popup .btn-continue .continue {
@@ -36,3 +37,16 @@ $btnViewcartHover = $helper->getBtnViewcartHover();
         background: #<?php echo $block->escapeHtml($btnViewcartHover); ?>;
     }
 </style>
+
+<script type="text/javascript">
+    require(['jquery', 'magepowAjaxcart', 'domReady!'], function($, magepowAjaxcart){
+            $('body').on('contentUpdated', function () {
+                if($.magiccart) $('body').magiccart({
+                    "addUrl": "<?php echo $block->escapeUrl($block->getUrl('ajaxcart')); ?>",
+                    "quickViewUrl": "<?php echo $block->escapeUrl($block->getUrl('ajaxcart/product/view/')); ?>",
+                    "addToCartSelector": "<?php echo $block->escapeJsQuote($helper->getAddToCartSelector()); ?>",
+                    "countDown": "<?php echo $countDown; ?>"
+                });
+            });
+    });
+</script>
diff --git a/app/code/Magepow/Ajaxcart/view/frontend/web/css/owl.carousel.css b/app/code/Magepow/Ajaxcart/view/frontend/web/css/owl.carousel.css
deleted file mode 100644
index dafff47..0000000
--- a/app/code/Magepow/Ajaxcart/view/frontend/web/css/owl.carousel.css
+++ /dev/null
@@ -1,245 +0,0 @@
-.ajax-cart-owl-carousel {
-    display: none;
-    width: 98%;
-    margin: 0 auto;
-    -webkit-tap-highlight-color: transparent;
-    /* position relative and z-index fix webkit rendering fonts issue */
-    position: relative;
-    z-index: 1;
-}
-  
-.ajax-cart-owl-carousel .owl-stage {
-    position: relative;
-    -ms-touch-action: pan-Y;
-}
-
-.ajax-cart-owl-carousel .owl-stage:after {
-    content: ".";
-    display: block;
-    clear: both;
-    visibility: hidden;
-    line-height: 0;
-    height: 0;
-}
-
-.ajax-cart-owl-carousel .owl-stage-outer {
-    position: relative;
-    overflow: hidden;
-    /* fix for flashing background */
-    -webkit-transform: translate3d(0px, 0px, 0px);
-}
-  
-.ajax-cart-owl-carousel .owl-item {
-    position: relative;
-    min-height: 1px;
-    float: left;
-    -webkit-backface-visibility: hidden;
-    -webkit-tap-highlight-color: transparent;
-    -webkit-touch-callout: none;
-}
-  
-.ajax-cart-owl-carousel .owl-item img {
-    display: block;
-    width: 100%;
-    -webkit-transform-style: preserve-3d;
-}
-
-.ajax-cart-owl-carousel .owl-nav.disabled,
-.ajax-cart-owl-carousel .owl-dots.disabled {
-    display: none;
-}
-
-.ajax-cart-owl-carousel .owl-nav .owl-prev,
-.ajax-cart-owl-carousel .owl-nav .owl-next,
-.ajax-cart-owl-carousel .owl-dot {
-    cursor: pointer;
-    cursor: hand;
-    -webkit-user-select: none;
-    -khtml-user-select: none;
-    -moz-user-select: none;
-    -ms-user-select: none;
-    user-select: none;
-}
-
-.ajax-cart-owl-carousel .owl-nav {
-    position: absolute;
-    top: 50%;
-    width: 100%;
-}
-
-.ajax-cart-owl-carousel .owl-nav .owl-prev {
-    position: absolute;
-    left: -20px;
-    width: 35px;
-    background: url(../images/slider_left.png) no-repeat;
-    height: 35px;
-    background-size: 100%;
-    font-size: 0;
-}
-
-.ajax-cart-owl-carousel .owl-nav .owl-next {
-    position: absolute;
-    right: -25px;
-    width: 35px;
-    background: url(../images/slider_right.png) no-repeat;
-    height: 35px;
-    background-size: 100%;
-    font-size: 0;
-}
-
-.ajax-cart-owl-carousel.owl-loaded {
-    display: block;
-}
-
-.ajax-cart-owl-carousel.owl-loading {
-    opacity: 0;
-    display: block;
-}
-
-.ajax-cart-owl-carousel.owl-hidden {
-    opacity: 0;
-}
-
-.ajax-cart-owl-carousel.owl-refresh .owl-item {
-    visibility: hidden;
-}
-
-.ajax-cart-owl-carousel.owl-drag .owl-item {
-    -webkit-user-select: none;
-    -moz-user-select: none;
-    -ms-user-select: none;
-    user-select: none;
-}
-
-.ajax-cart-owl-carousel.owl-grab {
-    cursor: move;
-    cursor: grab;
-}
-
-.ajax-cart-owl-carousel.owl-rtl {
-    direction: rtl;
-}
-
-.ajax-cart-owl-carousel.owl-rtl .owl-item {
-    float: right;
-}
-
-/* No Js */
-.no-js .ajax-cart-owl-carousel {
-  display: block;
-}
-
-/*
- *  Owl Carousel - Animate Plugin
- */
-.ajax-cart-owl-carousel .animated {
-    -webkit-animation-duration: 1000ms;
-    animation-duration: 1000ms;
-    -webkit-animation-fill-mode: both;
-    animation-fill-mode: both;
-}
-
-.ajax-cart-owl-carousel .owl-animated-in {
-    z-index: 0;
-}
-
-.ajax-cart-owl-carousel .owl-animated-out {
-    z-index: 1;
-}
-
-.ajax-cart-owl-carousel .fadeOut {
-    -webkit-animation-name: fadeOut;
-    animation-name: fadeOut;
-}
-
-@-webkit-keyframes fadeOut {
-    0% {
-        opacity: 1;
-    }
-
-    100% {
-        opacity: 0;
-    }
-}
-
-@keyframes fadeOut {
-    0% {
-        opacity: 1;
-    }
-
-    100% {
-        opacity: 0;
-    }
-}
-
-/*
- *  Owl Carousel - Auto Height Plugin
- */
-.owl-height {
-    transition: height 500ms ease-in-out;
-}
-
-/*
- *  Owl Carousel - Lazy Load Plugin
- */
-.ajax-cart-owl-carousel .owl-item .owl-lazy {
-    opacity: 0;
-    transition: opacity 400ms ease;
-}
-
-.ajax-cart-owl-carousel .owl-item img.owl-lazy {
-    -webkit-transform-style: preserve-3d;
-    transform-style: preserve-3d;
-}
-
-/*
- *  Owl Carousel - Video Plugin
- */
-.ajax-cart-owl-carousel .owl-video-wrapper {
-    position: relative;
-    height: 100%;
-    background: #000;
-}
-
-.ajax-cart-owl-carousel .owl-video-play-icon {
-    position: absolute;
-    height: 80px;
-    width: 80px;
-    left: 50%;
-    top: 50%;
-    margin-left: -40px;
-    margin-top: -40px;
-    background: url("owl.video.play.png") no-repeat;
-    cursor: pointer;
-    z-index: 1;
-    -webkit-backface-visibility: hidden;
-    transition: -webkit-transform 100ms ease;
-    transition: transform 100ms ease;
-}
-
-.ajax-cart-owl-carousel .owl-video-play-icon:hover {
-    -webkit-transform: scale(1.3, 1.3);
-    -ms-transform: scale(1.3, 1.3);
-    transform: scale(1.3, 1.3);
-}
-
-.ajax-cart-owl-carousel .owl-video-playing .owl-video-tn,
-.ajax-cart-owl-carousel .owl-video-playing .owl-video-play-icon {
-    display: none;
-}
-
-.ajax-cart-owl-carousel .owl-video-tn {
-    opacity: 0;
-    height: 100%;
-    background-position: center center;
-    background-repeat: no-repeat;
-    background-size: contain;
-    transition: opacity 400ms ease;
-}
-
-.ajax-cart-owl-carousel .owl-video-frame {
-    position: relative;
-    z-index: 1;
-    height: 100%;
-    width: 100%;
-}
diff --git a/app/code/Magepow/Ajaxcart/view/frontend/web/js/owl.carousel.js b/app/code/Magepow/Ajaxcart/view/frontend/web/js/owl.carousel.js
deleted file mode 100644
index 199ae56..0000000
--- a/app/code/Magepow/Ajaxcart/view/frontend/web/js/owl.carousel.js
+++ /dev/null
@@ -1,3256 +0,0 @@
-;(function($, window, document, undefined) {
-
-	/**
-	 * Creates a carousel.
-	 * @class The Owl Carousel.
-	 * @public
-	 * @param {HTMLElement|jQuery} element - The element to create the carousel for.
-	 * @param {Object} [options] - The options
-	 */
-	function Owl(element, options) {
-
-		/**
-		 * Current settings for the carousel.
-		 * @public
-		 */
-		this.settings = null;
-
-		/**
-		 * Current options set by the caller including defaults.
-		 * @public
-		 */
-		this.options = $.extend({}, Owl.Defaults, options);
-
-		/**
-		 * Plugin element.
-		 * @public
-		 */
-		this.$element = $(element);
-
-		/**
-		 * Proxied event handlers.
-		 * @protected
-		 */
-		this._handlers = {};
-
-		/**
-		 * References to the running plugins of this carousel.
-		 * @protected
-		 */
-		this._plugins = {};
-
-		/**
-		 * Currently suppressed events to prevent them from beeing retriggered.
-		 * @protected
-		 */
-		this._supress = {};
-
-		/**
-		 * Absolute current position.
-		 * @protected
-		 */
-		this._current = null;
-
-		/**
-		 * Animation speed in milliseconds.
-		 * @protected
-		 */
-		this._speed = null;
-
-		/**
-		 * Coordinates of all items in pixel.
-		 * @todo The name of this member is missleading.
-		 * @protected
-		 */
-		this._coordinates = [];
-
-		/**
-		 * Current breakpoint.
-		 * @todo Real media queries would be nice.
-		 * @protected
-		 */
-		this._breakpoint = null;
-
-		/**
-		 * Current width of the plugin element.
-		 */
-		this._width = null;
-
-		/**
-		 * All real items.
-		 * @protected
-		 */
-		this._items = [];
-
-		/**
-		 * All cloned items.
-		 * @protected
-		 */
-		this._clones = [];
-
-		/**
-		 * Merge values of all items.
-		 * @todo Maybe this could be part of a plugin.
-		 * @protected
-		 */
-		this._mergers = [];
-
-		/**
-		 * Widths of all items.
-		 */
-		this._widths = [];
-
-		/**
-		 * Invalidated parts within the update process.
-		 * @protected
-		 */
-		this._invalidated = {};
-
-		/**
-		 * Ordered list of workers for the update process.
-		 * @protected
-		 */
-		this._pipe = [];
-
-		/**
-		 * Current state information for the drag operation.
-		 * @todo #261
-		 * @protected
-		 */
-		this._drag = {
-			time: null,
-			target: null,
-			pointer: null,
-			stage: {
-				start: null,
-				current: null
-			},
-			direction: null
-		};
-
-		/**
-		 * Current state information and their tags.
-		 * @type {Object}
-		 * @protected
-		 */
-		this._states = {
-			current: {},
-			tags: {
-				'initializing': [ 'busy' ],
-				'animating': [ 'busy' ],
-				'dragging': [ 'interacting' ]
-			}
-		};
-
-		$.each([ 'onResize', 'onThrottledResize' ], $.proxy(function(i, handler) {
-			this._handlers[handler] = $.proxy(this[handler], this);
-		}, this));
-
-		$.each(Owl.Plugins, $.proxy(function(key, plugin) {
-			this._plugins[key.charAt(0).toLowerCase() + key.slice(1)]
-				= new plugin(this);
-		}, this));
-
-		$.each(Owl.Workers, $.proxy(function(priority, worker) {
-			this._pipe.push({
-				'filter': worker.filter,
-				'run': $.proxy(worker.run, this)
-			});
-		}, this));
-
-		this.setup();
-		this.initialize();
-	}
-
-	/**
-	 * Default options for the carousel.
-	 * @public
-	 */
-	Owl.Defaults = {
-		items: 3,
-		loop: false,
-		center: false,
-		rewind: false,
-
-		mouseDrag: true,
-		touchDrag: true,
-		pullDrag: true,
-		freeDrag: false,
-
-		margin: 0,
-		stagePadding: 0,
-
-		merge: false,
-		mergeFit: true,
-		autoWidth: false,
-
-		startPosition: 0,
-		rtl: false,
-
-		smartSpeed: 250,
-		fluidSpeed: false,
-		dragEndSpeed: false,
-
-		responsive: {},
-		responsiveRefreshRate: 200,
-		responsiveBaseElement: window,
-
-		fallbackEasing: 'swing',
-
-		info: false,
-
-		nestedItemSelector: false,
-		itemElement: 'div',
-		stageElement: 'div',
-
-		refreshClass: 'owl-refresh',
-		loadedClass: 'owl-loaded',
-		loadingClass: 'owl-loading',
-		rtlClass: 'owl-rtl',
-		responsiveClass: 'owl-responsive',
-		dragClass: 'owl-drag',
-		itemClass: 'owl-item',
-		stageClass: 'owl-stage',
-		stageOuterClass: 'owl-stage-outer',
-		grabClass: 'owl-grab'
-	};
-
-	/**
-	 * Enumeration for width.
-	 * @public
-	 * @readonly
-	 * @enum {String}
-	 */
-	Owl.Width = {
-		Default: 'default',
-		Inner: 'inner',
-		Outer: 'outer'
-	};
-
-	/**
-	 * Enumeration for types.
-	 * @public
-	 * @readonly
-	 * @enum {String}
-	 */
-	Owl.Type = {
-		Event: 'event',
-		State: 'state'
-	};
-
-	/**
-	 * Contains all registered plugins.
-	 * @public
-	 */
-	Owl.Plugins = {};
-
-	/**
-	 * List of workers involved in the update process.
-	 */
-	Owl.Workers = [ {
-		filter: [ 'width', 'settings' ],
-		run: function() {
-			this._width = this.$element.width();
-		}
-	}, {
-		filter: [ 'width', 'items', 'settings' ],
-		run: function(cache) {
-			cache.current = this._items && this._items[this.relative(this._current)];
-		}
-	}, {
-		filter: [ 'items', 'settings' ],
-		run: function() {
-			this.$stage.children('.cloned').remove();
-		}
-	}, {
-		filter: [ 'width', 'items', 'settings' ],
-		run: function(cache) {
-			var margin = this.settings.margin || '',
-				grid = !this.settings.autoWidth,
-				rtl = this.settings.rtl,
-				css = {
-					'width': 'auto',
-					'margin-left': rtl ? margin : '',
-					'margin-right': rtl ? '' : margin
-				};
-
-			!grid && this.$stage.children().css(css);
-
-			cache.css = css;
-		}
-	}, {
-		filter: [ 'width', 'items', 'settings' ],
-		run: function(cache) {
-			var width = (this.width() / this.settings.items).toFixed(3) - this.settings.margin,
-				merge = null,
-				iterator = this._items.length,
-				grid = !this.settings.autoWidth,
-				widths = [];
-
-			cache.items = {
-				merge: false,
-				width: width
-			};
-
-			while (iterator--) {
-				merge = this._mergers[iterator];
-				merge = this.settings.mergeFit && Math.min(merge, this.settings.items) || merge;
-
-				cache.items.merge = merge > 1 || cache.items.merge;
-
-				widths[iterator] = !grid ? this._items[iterator].width() : width * merge;
-			}
-
-			this._widths = widths;
-		}
-	}, {
-		filter: [ 'items', 'settings' ],
-		run: function() {
-			var clones = [],
-				items = this._items,
-				settings = this.settings,
-				view = Math.max(settings.items * 2, 4),
-				size = Math.ceil(items.length / 2) * 2,
-				repeat = settings.loop && items.length ? settings.rewind ? view : Math.max(view, size) : 0,
-				append = '',
-				prepend = '';
-
-			repeat /= 2;
-
-			while (repeat--) {
-				clones.push(this.normalize(clones.length / 2, true));
-				append = append + items[clones[clones.length - 1]][0].outerHTML;
-				clones.push(this.normalize(items.length - 1 - (clones.length - 1) / 2, true));
-				prepend = items[clones[clones.length - 1]][0].outerHTML + prepend;
-			}
-
-			this._clones = clones;
-
-			$(append).addClass('cloned').appendTo(this.$stage);
-			$(prepend).addClass('cloned').prependTo(this.$stage);
-		}
-	}, {
-		filter: [ 'width', 'items', 'settings' ],
-		run: function() {
-			var rtl = this.settings.rtl ? 1 : -1,
-				size = this._clones.length + this._items.length,
-				iterator = -1,
-				previous = 0,
-				current = 0,
-				coordinates = [];
-
-			while (++iterator < size) {
-				previous = coordinates[iterator - 1] || 0;
-				current = this._widths[this.relative(iterator)] + this.settings.margin;
-				coordinates.push(previous + current * rtl);
-			}
-
-			this._coordinates = coordinates;
-		}
-	}, {
-		filter: [ 'width', 'items', 'settings' ],
-		run: function() {
-			var padding = this.settings.stagePadding,
-				coordinates = this._coordinates,
-				css = {
-					'width': Math.ceil(Math.abs(coordinates[coordinates.length - 1])) + padding * 2,
-					'padding-left': padding || '',
-					'padding-right': padding || ''
-				};
-
-			this.$stage.css(css);
-		}
-	}, {
-		filter: [ 'width', 'items', 'settings' ],
-		run: function(cache) {
-			var iterator = this._coordinates.length,
-				grid = !this.settings.autoWidth,
-				items = this.$stage.children();
-
-			if (grid && cache.items.merge) {
-				while (iterator--) {
-					cache.css.width = this._widths[this.relative(iterator)];
-					items.eq(iterator).css(cache.css);
-				}
-			} else if (grid) {
-				cache.css.width = cache.items.width;
-				items.css(cache.css);
-			}
-		}
-	}, {
-		filter: [ 'items' ],
-		run: function() {
-			this._coordinates.length < 1 && this.$stage.removeAttr('style');
-		}
-	}, {
-		filter: [ 'width', 'items', 'settings' ],
-		run: function(cache) {
-			cache.current = cache.current ? this.$stage.children().index(cache.current) : 0;
-			cache.current = Math.max(this.minimum(), Math.min(this.maximum(), cache.current));
-			this.reset(cache.current);
-		}
-	}, {
-		filter: [ 'position' ],
-		run: function() {
-			this.animate(this.coordinates(this._current));
-		}
-	}, {
-		filter: [ 'width', 'position', 'items', 'settings' ],
-		run: function() {
-			var rtl = this.settings.rtl ? 1 : -1,
-				padding = this.settings.stagePadding * 2,
-				begin = this.coordinates(this.current()) + padding,
-				end = begin + this.width() * rtl,
-				inner, outer, matches = [], i, n;
-
-			for (i = 0, n = this._coordinates.length; i < n; i++) {
-				inner = this._coordinates[i - 1] || 0;
-				outer = Math.abs(this._coordinates[i]) + padding * rtl;
-
-				if ((this.op(inner, '<=', begin) && (this.op(inner, '>', end)))
-					|| (this.op(outer, '<', begin) && this.op(outer, '>', end))) {
-					matches.push(i);
-				}
-			}
-
-			this.$stage.children('.active').removeClass('active');
-			this.$stage.children(':eq(' + matches.join('), :eq(') + ')').addClass('active');
-
-			if (this.settings.center) {
-				this.$stage.children('.center').removeClass('center');
-				this.$stage.children().eq(this.current()).addClass('center');
-			}
-		}
-	} ];
-
-	/**
-	 * Initializes the carousel.
-	 * @protected
-	 */
-	Owl.prototype.initialize = function() {
-		this.enter('initializing');
-		this.trigger('initialize');
-
-		this.$element.toggleClass(this.settings.rtlClass, this.settings.rtl);
-
-		if (this.settings.autoWidth && !this.is('pre-loading')) {
-			var imgs, nestedSelector, width;
-			imgs = this.$element.find('img');
-			nestedSelector = this.settings.nestedItemSelector ? '.' + this.settings.nestedItemSelector : undefined;
-			width = this.$element.children(nestedSelector).width();
-
-			if (imgs.length && width <= 0) {
-				this.preloadAutoWidthImages(imgs);
-			}
-		}
-
-		this.$element.addClass(this.options.loadingClass);
-
-		// create stage
-		this.$stage = $('<' + this.settings.stageElement + ' class="' + this.settings.stageClass + '"/>')
-			.wrap('<div class="' + this.settings.stageOuterClass + '"/>');
-
-		// append stage
-		this.$element.append(this.$stage.parent());
-
-		// append content
-		this.replace(this.$element.children().not(this.$stage.parent()));
-
-		// check visibility
-		if (this.$element.is(':visible')) {
-			// update view
-			this.refresh();
-		} else {
-			// invalidate width
-			this.invalidate('width');
-		}
-
-		this.$element
-			.removeClass(this.options.loadingClass)
-			.addClass(this.options.loadedClass);
-
-		// register event handlers
-		this.registerEventHandlers();
-
-		this.leave('initializing');
-		this.trigger('initialized');
-	};
-
-	/**
-	 * Setups the current settings.
-	 * @todo Remove responsive classes. Why should adaptive designs be brought into IE8?
-	 * @todo Support for media queries by using `matchMedia` would be nice.
-	 * @public
-	 */
-	Owl.prototype.setup = function() {
-		var viewport = this.viewport(),
-			overwrites = this.options.responsive,
-			match = -1,
-			settings = null;
-
-		if (!overwrites) {
-			settings = $.extend({}, this.options);
-		} else {
-			$.each(overwrites, function(breakpoint) {
-				if (breakpoint <= viewport && breakpoint > match) {
-					match = Number(breakpoint);
-				}
-			});
-
-			settings = $.extend({}, this.options, overwrites[match]);
-			if (typeof settings.stagePadding === 'function') {
-				settings.stagePadding = settings.stagePadding();
-			}
-			delete settings.responsive;
-
-			// responsive class
-			if (settings.responsiveClass) {
-				this.$element.attr('class',
-					this.$element.attr('class').replace(new RegExp('(' + this.options.responsiveClass + '-)\\S+\\s', 'g'), '$1' + match)
-				);
-			}
-		}
-
-		this.trigger('change', { property: { name: 'settings', value: settings } });
-		this._breakpoint = match;
-		this.settings = settings;
-		this.invalidate('settings');
-		this.trigger('changed', { property: { name: 'settings', value: this.settings } });
-	};
-
-	/**
-	 * Updates option logic if necessery.
-	 * @protected
-	 */
-	Owl.prototype.optionsLogic = function() {
-		if (this.settings.autoWidth) {
-			this.settings.stagePadding = false;
-			this.settings.merge = false;
-		}
-	};
-
-	/**
-	 * Prepares an item before add.
-	 * @todo Rename event parameter `content` to `item`.
-	 * @protected
-	 * @returns {jQuery|HTMLElement} - The item container.
-	 */
-	Owl.prototype.prepare = function(item) {
-		var event = this.trigger('prepare', { content: item });
-
-		if (!event.data) {
-			event.data = $('<' + this.settings.itemElement + '/>')
-				.addClass(this.options.itemClass).append(item)
-		}
-
-		this.trigger('prepared', { content: event.data });
-
-		return event.data;
-	};
-
-	/**
-	 * Updates the view.
-	 * @public
-	 */
-	Owl.prototype.update = function() {
-		var i = 0,
-			n = this._pipe.length,
-			filter = $.proxy(function(p) { return this[p] }, this._invalidated),
-			cache = {};
-
-		while (i < n) {
-			if (this._invalidated.all || $.grep(this._pipe[i].filter, filter).length > 0) {
-				this._pipe[i].run(cache);
-			}
-			i++;
-		}
-
-		this._invalidated = {};
-
-		!this.is('valid') && this.enter('valid');
-	};
-
-	/**
-	 * Gets the width of the view.
-	 * @public
-	 * @param {Owl.Width} [dimension=Owl.Width.Default] - The dimension to return.
-	 * @returns {Number} - The width of the view in pixel.
-	 */
-	Owl.prototype.width = function(dimension) {
-		dimension = dimension || Owl.Width.Default;
-		switch (dimension) {
-			case Owl.Width.Inner:
-			case Owl.Width.Outer:
-				return this._width;
-			default:
-				return this._width - this.settings.stagePadding * 2 + this.settings.margin;
-		}
-	};
-
-	/**
-	 * Refreshes the carousel primarily for adaptive purposes.
-	 * @public
-	 */
-	Owl.prototype.refresh = function() {
-		this.enter('refreshing');
-		this.trigger('refresh');
-
-		this.setup();
-
-		this.optionsLogic();
-
-		this.$element.addClass(this.options.refreshClass);
-
-		this.update();
-
-		this.$element.removeClass(this.options.refreshClass);
-
-		this.leave('refreshing');
-		this.trigger('refreshed');
-	};
-
-	/**
-	 * Checks window `resize` event.
-	 * @protected
-	 */
-	Owl.prototype.onThrottledResize = function() {
-		window.clearTimeout(this.resizeTimer);
-		this.resizeTimer = window.setTimeout(this._handlers.onResize, this.settings.responsiveRefreshRate);
-	};
-
-	/**
-	 * Checks window `resize` event.
-	 * @protected
-	 */
-	Owl.prototype.onResize = function() {
-		if (!this._items.length) {
-			return false;
-		}
-
-		if (this._width === this.$element.width()) {
-			return false;
-		}
-
-		if (!this.$element.is(':visible')) {
-			return false;
-		}
-
-		this.enter('resizing');
-
-		if (this.trigger('resize').isDefaultPrevented()) {
-			this.leave('resizing');
-			return false;
-		}
-
-		this.invalidate('width');
-
-		this.refresh();
-
-		this.leave('resizing');
-		this.trigger('resized');
-	};
-
-	/**
-	 * Registers event handlers.
-	 * @todo Check `msPointerEnabled`
-	 * @todo #261
-	 * @protected
-	 */
-	Owl.prototype.registerEventHandlers = function() {
-		if ($.support.transition) {
-			this.$stage.on($.support.transition.end + '.owl.core', $.proxy(this.onTransitionEnd, this));
-		}
-
-		if (this.settings.responsive !== false) {
-			this.on(window, 'resize', this._handlers.onThrottledResize);
-		}
-
-		if (this.settings.mouseDrag) {
-			this.$element.addClass(this.options.dragClass);
-			this.$stage.on('mousedown.owl.core', $.proxy(this.onDragStart, this));
-			this.$stage.on('dragstart.owl.core selectstart.owl.core', function() { return false });
-		}
-
-		if (this.settings.touchDrag){
-			this.$stage.on('touchstart.owl.core', $.proxy(this.onDragStart, this));
-			this.$stage.on('touchcancel.owl.core', $.proxy(this.onDragEnd, this));
-		}
-	};
-
-	/**
-	 * Handles `touchstart` and `mousedown` events.
-	 * @todo Horizontal swipe threshold as option
-	 * @todo #261
-	 * @protected
-	 * @param {Event} event - The event arguments.
-	 */
-	Owl.prototype.onDragStart = function(event) {
-		var stage = null;
-
-		if (event.which === 3) {
-			return;
-		}
-
-		if ($.support.transform) {
-			stage = this.$stage.css('transform').replace(/.*\(|\)| /g, '').split(',');
-			stage = {
-				x: stage[stage.length === 16 ? 12 : 4],
-				y: stage[stage.length === 16 ? 13 : 5]
-			};
-		} else {
-			stage = this.$stage.position();
-			stage = {
-				x: this.settings.rtl ?
-					stage.left + this.$stage.width() - this.width() + this.settings.margin :
-					stage.left,
-				y: stage.top
-			};
-		}
-
-		if (this.is('animating')) {
-			$.support.transform ? this.animate(stage.x) : this.$stage.stop()
-			this.invalidate('position');
-		}
-
-		this.$element.toggleClass(this.options.grabClass, event.type === 'mousedown');
-
-		this.speed(0);
-
-		this._drag.time = new Date().getTime();
-		this._drag.target = $(event.target);
-		this._drag.stage.start = stage;
-		this._drag.stage.current = stage;
-		this._drag.pointer = this.pointer(event);
-
-		$(document).on('mouseup.owl.core touchend.owl.core', $.proxy(this.onDragEnd, this));
-
-		$(document).one('mousemove.owl.core touchmove.owl.core', $.proxy(function(event) {
-			var delta = this.difference(this._drag.pointer, this.pointer(event));
-
-			$(document).on('mousemove.owl.core touchmove.owl.core', $.proxy(this.onDragMove, this));
-
-			if (Math.abs(delta.x) < Math.abs(delta.y) && this.is('valid')) {
-				return;
-			}
-
-			event.preventDefault();
-
-			this.enter('dragging');
-			this.trigger('drag');
-		}, this));
-	};
-
-	/**
-	 * Handles the `touchmove` and `mousemove` events.
-	 * @todo #261
-	 * @protected
-	 * @param {Event} event - The event arguments.
-	 */
-	Owl.prototype.onDragMove = function(event) {
-		var minimum = null,
-			maximum = null,
-			pull = null,
-			delta = this.difference(this._drag.pointer, this.pointer(event)),
-			stage = this.difference(this._drag.stage.start, delta);
-
-		if (!this.is('dragging')) {
-			return;
-		}
-
-		event.preventDefault();
-
-		if (this.settings.loop) {
-			minimum = this.coordinates(this.minimum());
-			maximum = this.coordinates(this.maximum() + 1) - minimum;
-			stage.x = (((stage.x - minimum) % maximum + maximum) % maximum) + minimum;
-		} else {
-			minimum = this.settings.rtl ? this.coordinates(this.maximum()) : this.coordinates(this.minimum());
-			maximum = this.settings.rtl ? this.coordinates(this.minimum()) : this.coordinates(this.maximum());
-			pull = this.settings.pullDrag ? -1 * delta.x / 5 : 0;
-			stage.x = Math.max(Math.min(stage.x, minimum + pull), maximum + pull);
-		}
-
-		this._drag.stage.current = stage;
-
-		this.animate(stage.x);
-	};
-
-	/**
-	 * Handles the `touchend` and `mouseup` events.
-	 * @todo #261
-	 * @todo Threshold for click event
-	 * @protected
-	 * @param {Event} event - The event arguments.
-	 */
-	Owl.prototype.onDragEnd = function(event) {
-		var delta = this.difference(this._drag.pointer, this.pointer(event)),
-			stage = this._drag.stage.current,
-			direction = delta.x > 0 ^ this.settings.rtl ? 'left' : 'right';
-
-		$(document).off('.owl.core');
-
-		this.$element.removeClass(this.options.grabClass);
-
-		if (delta.x !== 0 && this.is('dragging') || !this.is('valid')) {
-			this.speed(this.settings.dragEndSpeed || this.settings.smartSpeed);
-			this.current(this.closest(stage.x, delta.x !== 0 ? direction : this._drag.direction));
-			this.invalidate('position');
-			this.update();
-
-			this._drag.direction = direction;
-
-			if (Math.abs(delta.x) > 3 || new Date().getTime() - this._drag.time > 300) {
-				this._drag.target.one('click.owl.core', function() { return false; });
-			}
-		}
-
-		if (!this.is('dragging')) {
-			return;
-		}
-
-		this.leave('dragging');
-		this.trigger('dragged');
-	};
-
-	/**
-	 * Gets absolute position of the closest item for a coordinate.
-	 * @todo Setting `freeDrag` makes `closest` not reusable. See #165.
-	 * @protected
-	 * @param {Number} coordinate - The coordinate in pixel.
-	 * @param {String} direction - The direction to check for the closest item. Ether `left` or `right`.
-	 * @return {Number} - The absolute position of the closest item.
-	 */
-	Owl.prototype.closest = function(coordinate, direction) {
-		var position = -1,
-			pull = 30,
-			width = this.width(),
-			coordinates = this.coordinates();
-
-		if (!this.settings.freeDrag) {
-			// check closest item
-			$.each(coordinates, $.proxy(function(index, value) {
-				// on a left pull, check on current index
-				if (direction === 'left' && coordinate > value - pull && coordinate < value + pull) {
-					position = index;
-				// on a right pull, check on previous index
-				// to do so, subtract width from value and set position = index + 1
-				} else if (direction === 'right' && coordinate > value - width - pull && coordinate < value - width + pull) {
-					position = index + 1;
-				} else if (this.op(coordinate, '<', value)
-					&& this.op(coordinate, '>', coordinates[index + 1] || value - width)) {
-					position = direction === 'left' ? index + 1 : index;
-				}
-				return position === -1;
-			}, this));
-		}
-
-		if (!this.settings.loop) {
-			// non loop boundries
-			if (this.op(coordinate, '>', coordinates[this.minimum()])) {
-				position = coordinate = this.minimum();
-			} else if (this.op(coordinate, '<', coordinates[this.maximum()])) {
-				position = coordinate = this.maximum();
-			}
-		}
-
-		return position;
-	};
-
-	/**
-	 * Animates the stage.
-	 * @todo #270
-	 * @public
-	 * @param {Number} coordinate - The coordinate in pixels.
-	 */
-	Owl.prototype.animate = function(coordinate) {
-		var animate = this.speed() > 0;
-
-		this.is('animating') && this.onTransitionEnd();
-
-		if (animate) {
-			this.enter('animating');
-			this.trigger('translate');
-		}
-
-		if ($.support.transform3d && $.support.transition) {
-			this.$stage.css({
-				transform: 'translate3d(' + coordinate + 'px,0px,0px)',
-				transition: (this.speed() / 1000) + 's'
-			});
-		} else if (animate) {
-			this.$stage.animate({
-				left: coordinate + 'px'
-			}, this.speed(), this.settings.fallbackEasing, $.proxy(this.onTransitionEnd, this));
-		} else {
-			this.$stage.css({
-				left: coordinate + 'px'
-			});
-		}
-	};
-
-	/**
-	 * Checks whether the carousel is in a specific state or not.
-	 * @param {String} state - The state to check.
-	 * @returns {Boolean} - The flag which indicates if the carousel is busy.
-	 */
-	Owl.prototype.is = function(state) {
-		return this._states.current[state] && this._states.current[state] > 0;
-	};
-
-	/**
-	 * Sets the absolute position of the current item.
-	 * @public
-	 * @param {Number} [position] - The new absolute position or nothing to leave it unchanged.
-	 * @returns {Number} - The absolute position of the current item.
-	 */
-	Owl.prototype.current = function(position) {
-		if (position === undefined) {
-			return this._current;
-		}
-
-		if (this._items.length === 0) {
-			return undefined;
-		}
-
-		position = this.normalize(position);
-
-		if (this._current !== position) {
-			var event = this.trigger('change', { property: { name: 'position', value: position } });
-
-			if (event.data !== undefined) {
-				position = this.normalize(event.data);
-			}
-
-			this._current = position;
-
-			this.invalidate('position');
-
-			this.trigger('changed', { property: { name: 'position', value: this._current } });
-		}
-
-		return this._current;
-	};
-
-	/**
-	 * Invalidates the given part of the update routine.
-	 * @param {String} [part] - The part to invalidate.
-	 * @returns {Array.<String>} - The invalidated parts.
-	 */
-	Owl.prototype.invalidate = function(part) {
-		if ($.type(part) === 'string') {
-			this._invalidated[part] = true;
-			this.is('valid') && this.leave('valid');
-		}
-		return $.map(this._invalidated, function(v, i) { return i });
-	};
-
-	/**
-	 * Resets the absolute position of the current item.
-	 * @public
-	 * @param {Number} position - The absolute position of the new item.
-	 */
-	Owl.prototype.reset = function(position) {
-		position = this.normalize(position);
-
-		if (position === undefined) {
-			return;
-		}
-
-		this._speed = 0;
-		this._current = position;
-
-		this.suppress([ 'translate', 'translated' ]);
-
-		this.animate(this.coordinates(position));
-
-		this.release([ 'translate', 'translated' ]);
-	};
-
-	/**
-	 * Normalizes an absolute or a relative position of an item.
-	 * @public
-	 * @param {Number} position - The absolute or relative position to normalize.
-	 * @param {Boolean} [relative=false] - Whether the given position is relative or not.
-	 * @returns {Number} - The normalized position.
-	 */
-	Owl.prototype.normalize = function(position, relative) {
-		var n = this._items.length,
-			m = relative ? 0 : this._clones.length;
-
-		if (!this.isNumeric(position) || n < 1) {
-			position = undefined;
-		} else if (position < 0 || position >= n + m) {
-			position = ((position - m / 2) % n + n) % n + m / 2;
-		}
-
-		return position;
-	};
-
-	/**
-	 * Converts an absolute position of an item into a relative one.
-	 * @public
-	 * @param {Number} position - The absolute position to convert.
-	 * @returns {Number} - The converted position.
-	 */
-	Owl.prototype.relative = function(position) {
-		position -= this._clones.length / 2;
-		return this.normalize(position, true);
-	};
-
-	/**
-	 * Gets the maximum position for the current item.
-	 * @public
-	 * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position.
-	 * @returns {Number}
-	 */
-	Owl.prototype.maximum = function(relative) {
-		var settings = this.settings,
-			maximum = this._coordinates.length,
-			iterator,
-			reciprocalItemsWidth,
-			elementWidth;
-
-		if (settings.loop) {
-			maximum = this._clones.length / 2 + this._items.length - 1;
-		} else if (settings.autoWidth || settings.merge) {
-			iterator = this._items.length;
-			reciprocalItemsWidth = this._items[--iterator].width();
-			elementWidth = this.$element.width();
-			while (iterator--) {
-				reciprocalItemsWidth += this._items[iterator].width() + this.settings.margin;
-				if (reciprocalItemsWidth > elementWidth) {
-					break;
-				}
-			}
-			maximum = iterator + 1;
-		} else if (settings.center) {
-			maximum = this._items.length - 1;
-		} else {
-			maximum = this._items.length - settings.items;
-		}
-
-		if (relative) {
-			maximum -= this._clones.length / 2;
-		}
-
-		return Math.max(maximum, 0);
-	};
-
-	/**
-	 * Gets the minimum position for the current item.
-	 * @public
-	 * @param {Boolean} [relative=false] - Whether to return an absolute position or a relative position.
-	 * @returns {Number}
-	 */
-	Owl.prototype.minimum = function(relative) {
-		return relative ? 0 : this._clones.length / 2;
-	};
-
-	/**
-	 * Gets an item at the specified relative position.
-	 * @public
-	 * @param {Number} [position] - The relative position of the item.
-	 * @return {jQuery|Array.<jQuery>} - The item at the given position or all items if no position was given.
-	 */
-	Owl.prototype.items = function(position) {
-		if (position === undefined) {
-			return this._items.slice();
-		}
-
-		position = this.normalize(position, true);
-		return this._items[position];
-	};
-
-	/**
-	 * Gets an item at the specified relative position.
-	 * @public
-	 * @param {Number} [position] - The relative position of the item.
-	 * @return {jQuery|Array.<jQuery>} - The item at the given position or all items if no position was given.
-	 */
-	Owl.prototype.mergers = function(position) {
-		if (position === undefined) {
-			return this._mergers.slice();
-		}
-
-		position = this.normalize(position, true);
-		return this._mergers[position];
-	};
-
-	/**
-	 * Gets the absolute positions of clones for an item.
-	 * @public
-	 * @param {Number} [position] - The relative position of the item.
-	 * @returns {Array.<Number>} - The absolute positions of clones for the item or all if no position was given.
-	 */
-	Owl.prototype.clones = function(position) {
-		var odd = this._clones.length / 2,
-			even = odd + this._items.length,
-			map = function(index) { return index % 2 === 0 ? even + index / 2 : odd - (index + 1) / 2 };
-
-		if (position === undefined) {
-			return $.map(this._clones, function(v, i) { return map(i) });
-		}
-
-		return $.map(this._clones, function(v, i) { return v === position ? map(i) : null });
-	};
-
-	/**
-	 * Sets the current animation speed.
-	 * @public
-	 * @param {Number} [speed] - The animation speed in milliseconds or nothing to leave it unchanged.
-	 * @returns {Number} - The current animation speed in milliseconds.
-	 */
-	Owl.prototype.speed = function(speed) {
-		if (speed !== undefined) {
-			this._speed = speed;
-		}
-
-		return this._speed;
-	};
-
-	/**
-	 * Gets the coordinate of an item.
-	 * @todo The name of this method is missleanding.
-	 * @public
-	 * @param {Number} position - The absolute position of the item within `minimum()` and `maximum()`.
-	 * @returns {Number|Array.<Number>} - The coordinate of the item in pixel or all coordinates.
-	 */
-	Owl.prototype.coordinates = function(position) {
-		var multiplier = 1,
-			newPosition = position - 1,
-			coordinate;
-
-		if (position === undefined) {
-			return $.map(this._coordinates, $.proxy(function(coordinate, index) {
-				return this.coordinates(index);
-			}, this));
-		}
-
-		if (this.settings.center) {
-			if (this.settings.rtl) {
-				multiplier = -1;
-				newPosition = position + 1;
-			}
-
-			coordinate = this._coordinates[position];
-			coordinate += (this.width() - coordinate + (this._coordinates[newPosition] || 0)) / 2 * multiplier;
-		} else {
-			coordinate = this._coordinates[newPosition] || 0;
-		}
-
-		coordinate = Math.ceil(coordinate);
-
-		return coordinate;
-	};
-
-	/**
-	 * Calculates the speed for a translation.
-	 * @protected
-	 * @param {Number} from - The absolute position of the start item.
-	 * @param {Number} to - The absolute position of the target item.
-	 * @param {Number} [factor=undefined] - The time factor in milliseconds.
-	 * @returns {Number} - The time in milliseconds for the translation.
-	 */
-	Owl.prototype.duration = function(from, to, factor) {
-		if (factor === 0) {
-			return 0;
-		}
-
-		return Math.min(Math.max(Math.abs(to - from), 1), 6) * Math.abs((factor || this.settings.smartSpeed));
-	};
-
-	/**
-	 * Slides to the specified item.
-	 * @public
-	 * @param {Number} position - The position of the item.
-	 * @param {Number} [speed] - The time in milliseconds for the transition.
-	 */
-	Owl.prototype.to = function(position, speed) {
-		var current = this.current(),
-			revert = null,
-			distance = position - this.relative(current),
-			direction = (distance > 0) - (distance < 0),
-			items = this._items.length,
-			minimum = this.minimum(),
-			maximum = this.maximum();
-
-		if (this.settings.loop) {
-			if (!this.settings.rewind && Math.abs(distance) > items / 2) {
-				distance += direction * -1 * items;
-			}
-
-			position = current + distance;
-			revert = ((position - minimum) % items + items) % items + minimum;
-
-			if (revert !== position && revert - distance <= maximum && revert - distance > 0) {
-				current = revert - distance;
-				position = revert;
-				this.reset(current);
-			}
-		} else if (this.settings.rewind) {
-			maximum += 1;
-			position = (position % maximum + maximum) % maximum;
-		} else {
-			position = Math.max(minimum, Math.min(maximum, position));
-		}
-
-		this.speed(this.duration(current, position, speed));
-		this.current(position);
-
-		if (this.$element.is(':visible')) {
-			this.update();
-		}
-	};
-
-	/**
-	 * Slides to the next item.
-	 * @public
-	 * @param {Number} [speed] - The time in milliseconds for the transition.
-	 */
-	Owl.prototype.next = function(speed) {
-		speed = speed || false;
-		this.to(this.relative(this.current()) + 1, speed);
-	};
-
-	/**
-	 * Slides to the previous item.
-	 * @public
-	 * @param {Number} [speed] - The time in milliseconds for the transition.
-	 */
-	Owl.prototype.prev = function(speed) {
-		speed = speed || false;
-		this.to(this.relative(this.current()) - 1, speed);
-	};
-
-	/**
-	 * Handles the end of an animation.
-	 * @protected
-	 * @param {Event} event - The event arguments.
-	 */
-	Owl.prototype.onTransitionEnd = function(event) {
-
-		// if css2 animation then event object is undefined
-		if (event !== undefined) {
-			event.stopPropagation();
-
-			// Catch only owl-stage transitionEnd event
-			if ((event.target || event.srcElement || event.originalTarget) !== this.$stage.get(0)) {
-				return false;
-			}
-		}
-
-		this.leave('animating');
-		this.trigger('translated');
-	};
-
-	/**
-	 * Gets viewport width.
-	 * @protected
-	 * @return {Number} - The width in pixel.
-	 */
-	Owl.prototype.viewport = function() {
-		var width;
-		if (this.options.responsiveBaseElement !== window) {
-			width = $(this.options.responsiveBaseElement).width();
-		} else if (window.innerWidth) {
-			width = window.innerWidth;
-		} else if (document.documentElement && document.documentElement.clientWidth) {
-			width = document.documentElement.clientWidth;
-		} else {
-			throw 'Can not detect viewport width.';
-		}
-		return width;
-	};
-
-	/**
-	 * Replaces the current content.
-	 * @public
-	 * @param {HTMLElement|jQuery|String} content - The new content.
-	 */
-	Owl.prototype.replace = function(content) {
-		this.$stage.empty();
-		this._items = [];
-
-		if (content) {
-			content = (content instanceof jQuery) ? content : $(content);
-		}
-
-		if (this.settings.nestedItemSelector) {
-			content = content.find('.' + this.settings.nestedItemSelector);
-		}
-
-		content.filter(function() {
-			return this.nodeType === 1;
-		}).each($.proxy(function(index, item) {
-			item = this.prepare(item);
-			this.$stage.append(item);
-			this._items.push(item);
-			this._mergers.push(item.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1);
-		}, this));
-
-		this.reset(this.isNumeric(this.settings.startPosition) ? this.settings.startPosition : 0);
-
-		this.invalidate('items');
-	};
-
-	/**
-	 * Adds an item.
-	 * @todo Use `item` instead of `content` for the event arguments.
-	 * @public
-	 * @param {HTMLElement|jQuery|String} content - The item content to add.
-	 * @param {Number} [position] - The relative position at which to insert the item otherwise the item will be added to the end.
-	 */
-	Owl.prototype.add = function(content, position) {
-		var current = this.relative(this._current);
-
-		position = position === undefined ? this._items.length : this.normalize(position, true);
-		content = content instanceof jQuery ? content : $(content);
-
-		this.trigger('add', { content: content, position: position });
-
-		content = this.prepare(content);
-
-		if (this._items.length === 0 || position === this._items.length) {
-			this._items.length === 0 && this.$stage.append(content);
-			this._items.length !== 0 && this._items[position - 1].after(content);
-			this._items.push(content);
-			this._mergers.push(content.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1);
-		} else {
-			this._items[position].before(content);
-			this._items.splice(position, 0, content);
-			this._mergers.splice(position, 0, content.find('[data-merge]').addBack('[data-merge]').attr('data-merge') * 1 || 1);
-		}
-
-		this._items[current] && this.reset(this._items[current].index());
-
-		this.invalidate('items');
-
-		this.trigger('added', { content: content, position: position });
-	};
-
-	/**
-	 * Removes an item by its position.
-	 * @todo Use `item` instead of `content` for the event arguments.
-	 * @public
-	 * @param {Number} position - The relative position of the item to remove.
-	 */
-	Owl.prototype.remove = function(position) {
-		position = this.normalize(position, true);
-
-		if (position === undefined) {
-			return;
-		}
-
-		this.trigger('remove', { content: this._items[position], position: position });
-
-		this._items[position].remove();
-		this._items.splice(position, 1);
-		this._mergers.splice(position, 1);
-
-		this.invalidate('items');
-
-		this.trigger('removed', { content: null, position: position });
-	};
-
-	/**
-	 * Preloads images with auto width.
-	 * @todo Replace by a more generic approach
-	 * @protected
-	 */
-	Owl.prototype.preloadAutoWidthImages = function(images) {
-		images.each($.proxy(function(i, element) {
-			this.enter('pre-loading');
-			element = $(element);
-			$(new Image()).one('load', $.proxy(function(e) {
-				element.attr('src', e.target.src);
-				element.css('opacity', 1);
-				this.leave('pre-loading');
-				!this.is('pre-loading') && !this.is('initializing') && this.refresh();
-			}, this)).attr('src', element.attr('src') || element.attr('data-src') || element.attr('data-src-retina'));
-		}, this));
-	};
-
-	/**
-	 * Destroys the carousel.
-	 * @public
-	 */
-	Owl.prototype.destroy = function() {
-
-		this.$element.off('.owl.core');
-		this.$stage.off('.owl.core');
-		$(document).off('.owl.core');
-
-		if (this.settings.responsive !== false) {
-			window.clearTimeout(this.resizeTimer);
-			this.off(window, 'resize', this._handlers.onThrottledResize);
-		}
-
-		for (var i in this._plugins) {
-			this._plugins[i].destroy();
-		}
-
-		this.$stage.children('.cloned').remove();
-
-		this.$stage.unwrap();
-		this.$stage.children().contents().unwrap();
-		this.$stage.children().unwrap();
-
-		this.$element
-			.removeClass(this.options.refreshClass)
-			.removeClass(this.options.loadingClass)
-			.removeClass(this.options.loadedClass)
-			.removeClass(this.options.rtlClass)
-			.removeClass(this.options.dragClass)
-			.removeClass(this.options.grabClass)
-			.attr('class', this.$element.attr('class').replace(new RegExp(this.options.responsiveClass + '-\\S+\\s', 'g'), ''))
-			.removeData('owl.carousel');
-	};
-
-	/**
-	 * Operators to calculate right-to-left and left-to-right.
-	 * @protected
-	 * @param {Number} [a] - The left side operand.
-	 * @param {String} [o] - The operator.
-	 * @param {Number} [b] - The right side operand.
-	 */
-	Owl.prototype.op = function(a, o, b) {
-		var rtl = this.settings.rtl;
-		switch (o) {
-			case '<':
-				return rtl ? a > b : a < b;
-			case '>':
-				return rtl ? a < b : a > b;
-			case '>=':
-				return rtl ? a <= b : a >= b;
-			case '<=':
-				return rtl ? a >= b : a <= b;
-			default:
-				break;
-		}
-	};
-
-	/**
-	 * Attaches to an internal event.
-	 * @protected
-	 * @param {HTMLElement} element - The event source.
-	 * @param {String} event - The event name.
-	 * @param {Function} listener - The event handler to attach.
-	 * @param {Boolean} capture - Wether the event should be handled at the capturing phase or not.
-	 */
-	Owl.prototype.on = function(element, event, listener, capture) {
-		if (element.addEventListener) {
-			element.addEventListener(event, listener, capture);
-		} else if (element.attachEvent) {
-			element.attachEvent('on' + event, listener);
-		}
-	};
-
-	/**
-	 * Detaches from an internal event.
-	 * @protected
-	 * @param {HTMLElement} element - The event source.
-	 * @param {String} event - The event name.
-	 * @param {Function} listener - The attached event handler to detach.
-	 * @param {Boolean} capture - Wether the attached event handler was registered as a capturing listener or not.
-	 */
-	Owl.prototype.off = function(element, event, listener, capture) {
-		if (element.removeEventListener) {
-			element.removeEventListener(event, listener, capture);
-		} else if (element.detachEvent) {
-			element.detachEvent('on' + event, listener);
-		}
-	};
-
-	/**
-	 * Triggers a public event.
-	 * @todo Remove `status`, `relatedTarget` should be used instead.
-	 * @protected
-	 * @param {String} name - The event name.
-	 * @param {*} [data=null] - The event data.
-	 * @param {String} [namespace=carousel] - The event namespace.
-	 * @param {String} [state] - The state which is associated with the event.
-	 * @param {Boolean} [enter=false] - Indicates if the call enters the specified state or not.
-	 * @returns {Event} - The event arguments.
-	 */
-	Owl.prototype.trigger = function(name, data, namespace, state, enter) {
-		var status = {
-			item: { count: this._items.length, index: this.current() }
-		}, handler = $.camelCase(
-			$.grep([ 'on', name, namespace ], function(v) { return v })
-				.join('-').toLowerCase()
-		), event = $.Event(
-			[ name, 'owl', namespace || 'carousel' ].join('.').toLowerCase(),
-			$.extend({ relatedTarget: this }, status, data)
-		);
-
-		if (!this._supress[name]) {
-			$.each(this._plugins, function(name, plugin) {
-				if (plugin.onTrigger) {
-					plugin.onTrigger(event);
-				}
-			});
-
-			this.register({ type: Owl.Type.Event, name: name });
-			this.$element.trigger(event);
-
-			if (this.settings && typeof this.settings[handler] === 'function') {
-				this.settings[handler].call(this, event);
-			}
-		}
-
-		return event;
-	};
-
-	/**
-	 * Enters a state.
-	 * @param name - The state name.
-	 */
-	Owl.prototype.enter = function(name) {
-		$.each([ name ].concat(this._states.tags[name] || []), $.proxy(function(i, name) {
-			if (this._states.current[name] === undefined) {
-				this._states.current[name] = 0;
-			}
-
-			this._states.current[name]++;
-		}, this));
-	};
-
-	/**
-	 * Leaves a state.
-	 * @param name - The state name.
-	 */
-	Owl.prototype.leave = function(name) {
-		$.each([ name ].concat(this._states.tags[name] || []), $.proxy(function(i, name) {
-			this._states.current[name]--;
-		}, this));
-	};
-
-	/**
-	 * Registers an event or state.
-	 * @public
-	 * @param {Object} object - The event or state to register.
-	 */
-	Owl.prototype.register = function(object) {
-		if (object.type === Owl.Type.Event) {
-			if (!$.event.special[object.name]) {
-				$.event.special[object.name] = {};
-			}
-
-			if (!$.event.special[object.name].owl) {
-				var _default = $.event.special[object.name]._default;
-				$.event.special[object.name]._default = function(e) {
-					if (_default && _default.apply && (!e.namespace || e.namespace.indexOf('owl') === -1)) {
-						return _default.apply(this, arguments);
-					}
-					return e.namespace && e.namespace.indexOf('owl') > -1;
-				};
-				$.event.special[object.name].owl = true;
-			}
-		} else if (object.type === Owl.Type.State) {
-			if (!this._states.tags[object.name]) {
-				this._states.tags[object.name] = object.tags;
-			} else {
-				this._states.tags[object.name] = this._states.tags[object.name].concat(object.tags);
-			}
-
-			this._states.tags[object.name] = $.grep(this._states.tags[object.name], $.proxy(function(tag, i) {
-				return $.inArray(tag, this._states.tags[object.name]) === i;
-			}, this));
-		}
-	};
-
-	/**
-	 * Suppresses events.
-	 * @protected
-	 * @param {Array.<String>} events - The events to suppress.
-	 */
-	Owl.prototype.suppress = function(events) {
-		$.each(events, $.proxy(function(index, event) {
-			this._supress[event] = true;
-		}, this));
-	};
-
-	/**
-	 * Releases suppressed events.
-	 * @protected
-	 * @param {Array.<String>} events - The events to release.
-	 */
-	Owl.prototype.release = function(events) {
-		$.each(events, $.proxy(function(index, event) {
-			delete this._supress[event];
-		}, this));
-	};
-
-	/**
-	 * Gets unified pointer coordinates from event.
-	 * @todo #261
-	 * @protected
-	 * @param {Event} - The `mousedown` or `touchstart` event.
-	 * @returns {Object} - Contains `x` and `y` coordinates of current pointer position.
-	 */
-	Owl.prototype.pointer = function(event) {
-		var result = { x: null, y: null };
-
-		event = event.originalEvent || event || window.event;
-
-		event = event.touches && event.touches.length ?
-			event.touches[0] : event.changedTouches && event.changedTouches.length ?
-				event.changedTouches[0] : event;
-
-		if (event.pageX) {
-			result.x = event.pageX;
-			result.y = event.pageY;
-		} else {
-			result.x = event.clientX;
-			result.y = event.clientY;
-		}
-
-		return result;
-	};
-
-	/**
-	 * Determines if the input is a Number or something that can be coerced to a Number
-	 * @protected
-	 * @param {Number|String|Object|Array|Boolean|RegExp|Function|Symbol} - The input to be tested
-	 * @returns {Boolean} - An indication if the input is a Number or can be coerced to a Number
-	 */
-	Owl.prototype.isNumeric = function(number) {
-		return !isNaN(parseFloat(number));
-	};
-
-	/**
-	 * Gets the difference of two vectors.
-	 * @todo #261
-	 * @protected
-	 * @param {Object} - The first vector.
-	 * @param {Object} - The second vector.
-	 * @returns {Object} - The difference.
-	 */
-	Owl.prototype.difference = function(first, second) {
-		return {
-			x: first.x - second.x,
-			y: first.y - second.y
-		};
-	};
-
-	/**
-	 * The jQuery Plugin for the Owl Carousel
-	 * @todo Navigation plugin `next` and `prev`
-	 * @public
-	 */
-	$.fn.owlCarousel = function(option) {
-		var args = Array.prototype.slice.call(arguments, 1);
-
-		return this.each(function() {
-			var $this = $(this),
-				data = $this.data('owl.carousel');
-
-			if (!data) {
-				data = new Owl(this, typeof option == 'object' && option);
-				$this.data('owl.carousel', data);
-
-				$.each([
-					'next', 'prev', 'to', 'destroy', 'refresh', 'replace', 'add', 'remove'
-				], function(i, event) {
-					data.register({ type: Owl.Type.Event, name: event });
-					data.$element.on(event + '.owl.carousel.core', $.proxy(function(e) {
-						if (e.namespace && e.relatedTarget !== this) {
-							this.suppress([ event ]);
-							data[event].apply(this, [].slice.call(arguments, 1));
-							this.release([ event ]);
-						}
-					}, data));
-				});
-			}
-
-			if (typeof option == 'string' && option.charAt(0) !== '_') {
-				data[option].apply(data, args);
-			}
-		});
-	};
-
-	/**
-	 * The constructor for the jQuery Plugin
-	 * @public
-	 */
-	$.fn.owlCarousel.Constructor = Owl;
-
-})(window.Zepto || window.jQuery, window, document);
-
-/**
- * AutoRefresh Plugin
- * @version 2.1.0
- * @author Artus Kolanowski
- * @author David Deutsch
- * @license The MIT License (MIT)
- */
-;(function($, window, document, undefined) {
-
-	/**
-	 * Creates the auto refresh plugin.
-	 * @class The Auto Refresh Plugin
-	 * @param {Owl} carousel - The Owl Carousel
-	 */
-	var AutoRefresh = function(carousel) {
-		/**
-		 * Reference to the core.
-		 * @protected
-		 * @type {Owl}
-		 */
-		this._core = carousel;
-
-		/**
-		 * Refresh interval.
-		 * @protected
-		 * @type {number}
-		 */
-		this._interval = null;
-
-		/**
-		 * Whether the element is currently visible or not.
-		 * @protected
-		 * @type {Boolean}
-		 */
-		this._visible = null;
-
-		/**
-		 * All event handlers.
-		 * @protected
-		 * @type {Object}
-		 */
-		this._handlers = {
-			'initialized.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && this._core.settings.autoRefresh) {
-					this.watch();
-				}
-			}, this)
-		};
-
-		// set default options
-		this._core.options = $.extend({}, AutoRefresh.Defaults, this._core.options);
-
-		// register event handlers
-		this._core.$element.on(this._handlers);
-	};
-
-	/**
-	 * Default options.
-	 * @public
-	 */
-	AutoRefresh.Defaults = {
-		autoRefresh: true,
-		autoRefreshInterval: 500
-	};
-
-	/**
-	 * Watches the element.
-	 */
-	AutoRefresh.prototype.watch = function() {
-		if (this._interval) {
-			return;
-		}
-
-		this._visible = this._core.$element.is(':visible');
-		this._interval = window.setInterval($.proxy(this.refresh, this), this._core.settings.autoRefreshInterval);
-	};
-
-	/**
-	 * Refreshes the element.
-	 */
-	AutoRefresh.prototype.refresh = function() {
-		if (this._core.$element.is(':visible') === this._visible) {
-			return;
-		}
-
-		this._visible = !this._visible;
-
-		this._core.$element.toggleClass('owl-hidden', !this._visible);
-
-		this._visible && (this._core.invalidate('width') && this._core.refresh());
-	};
-
-	/**
-	 * Destroys the plugin.
-	 */
-	AutoRefresh.prototype.destroy = function() {
-		var handler, property;
-
-		window.clearInterval(this._interval);
-
-		for (handler in this._handlers) {
-			this._core.$element.off(handler, this._handlers[handler]);
-		}
-		for (property in Object.getOwnPropertyNames(this)) {
-			typeof this[property] != 'function' && (this[property] = null);
-		}
-	};
-
-	$.fn.owlCarousel.Constructor.Plugins.AutoRefresh = AutoRefresh;
-
-})(window.Zepto || window.jQuery, window, document);
-
-/**
- * Lazy Plugin
- * @version 2.1.0
- * @author Bartosz Wojciechowski
- * @author David Deutsch
- * @license The MIT License (MIT)
- */
-;(function($, window, document, undefined) {
-
-	/**
-	 * Creates the lazy plugin.
-	 * @class The Lazy Plugin
-	 * @param {Owl} carousel - The Owl Carousel
-	 */
-	var Lazy = function(carousel) {
-
-		/**
-		 * Reference to the core.
-		 * @protected
-		 * @type {Owl}
-		 */
-		this._core = carousel;
-
-		/**
-		 * Already loaded items.
-		 * @protected
-		 * @type {Array.<jQuery>}
-		 */
-		this._loaded = [];
-
-		/**
-		 * Event handlers.
-		 * @protected
-		 * @type {Object}
-		 */
-		this._handlers = {
-			'initialized.owl.carousel change.owl.carousel resized.owl.carousel': $.proxy(function(e) {
-				if (!e.namespace) {
-					return;
-				}
-
-				if (!this._core.settings || !this._core.settings.lazyLoad) {
-					return;
-				}
-
-				if ((e.property && e.property.name == 'position') || e.type == 'initialized') {
-					var settings = this._core.settings,
-						n = (settings.center && Math.ceil(settings.items / 2) || settings.items),
-						i = ((settings.center && n * -1) || 0),
-						position = (e.property && e.property.value !== undefined ? e.property.value : this._core.current()) + i,
-						clones = this._core.clones().length,
-						load = $.proxy(function(i, v) { this.load(v) }, this);
-
-					while (i++ < n) {
-						this.load(clones / 2 + this._core.relative(position));
-						clones && $.each(this._core.clones(this._core.relative(position)), load);
-						position++;
-					}
-				}
-			}, this)
-		};
-
-		// set the default options
-		this._core.options = $.extend({}, Lazy.Defaults, this._core.options);
-
-		// register event handler
-		this._core.$element.on(this._handlers);
-	};
-
-	/**
-	 * Default options.
-	 * @public
-	 */
-	Lazy.Defaults = {
-		lazyLoad: false
-	};
-
-	/**
-	 * Loads all resources of an item at the specified position.
-	 * @param {Number} position - The absolute position of the item.
-	 * @protected
-	 */
-	Lazy.prototype.load = function(position) {
-		var $item = this._core.$stage.children().eq(position),
-			$elements = $item && $item.find('.owl-lazy');
-
-		if (!$elements || $.inArray($item.get(0), this._loaded) > -1) {
-			return;
-		}
-
-		$elements.each($.proxy(function(index, element) {
-			var $element = $(element), image,
-				url = (window.devicePixelRatio > 1 && $element.attr('data-src-retina')) || $element.attr('data-src');
-
-			this._core.trigger('load', { element: $element, url: url }, 'lazy');
-
-			if ($element.is('img')) {
-				$element.one('load.owl.lazy', $.proxy(function() {
-					$element.css('opacity', 1);
-					this._core.trigger('loaded', { element: $element, url: url }, 'lazy');
-				}, this)).attr('src', url);
-			} else {
-				image = new Image();
-				image.onload = $.proxy(function() {
-					$element.css({
-						'background-image': 'url(' + url + ')',
-						'opacity': '1'
-					});
-					this._core.trigger('loaded', { element: $element, url: url }, 'lazy');
-				}, this);
-				image.src = url;
-			}
-		}, this));
-
-		this._loaded.push($item.get(0));
-	};
-
-	/**
-	 * Destroys the plugin.
-	 * @public
-	 */
-	Lazy.prototype.destroy = function() {
-		var handler, property;
-
-		for (handler in this.handlers) {
-			this._core.$element.off(handler, this.handlers[handler]);
-		}
-		for (property in Object.getOwnPropertyNames(this)) {
-			typeof this[property] != 'function' && (this[property] = null);
-		}
-	};
-
-	$.fn.owlCarousel.Constructor.Plugins.Lazy = Lazy;
-
-})(window.Zepto || window.jQuery, window, document);
-
-/**
- * AutoHeight Plugin
- * @version 2.1.0
- * @author Bartosz Wojciechowski
- * @author David Deutsch
- * @license The MIT License (MIT)
- */
-;(function($, window, document, undefined) {
-
-	/**
-	 * Creates the auto height plugin.
-	 * @class The Auto Height Plugin
-	 * @param {Owl} carousel - The Owl Carousel
-	 */
-	var AutoHeight = function(carousel) {
-		/**
-		 * Reference to the core.
-		 * @protected
-		 * @type {Owl}
-		 */
-		this._core = carousel;
-
-		/**
-		 * All event handlers.
-		 * @protected
-		 * @type {Object}
-		 */
-		this._handlers = {
-			'initialized.owl.carousel refreshed.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && this._core.settings.autoHeight) {
-					this.update();
-				}
-			}, this),
-			'changed.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && this._core.settings.autoHeight && e.property.name == 'position'){
-					this.update();
-				}
-			}, this),
-			'loaded.owl.lazy': $.proxy(function(e) {
-				if (e.namespace && this._core.settings.autoHeight
-					&& e.element.closest('.' + this._core.settings.itemClass).index() === this._core.current()) {
-					this.update();
-				}
-			}, this)
-		};
-
-		// set default options
-		this._core.options = $.extend({}, AutoHeight.Defaults, this._core.options);
-
-		// register event handlers
-		this._core.$element.on(this._handlers);
-	};
-
-	/**
-	 * Default options.
-	 * @public
-	 */
-	AutoHeight.Defaults = {
-		autoHeight: false,
-		autoHeightClass: 'owl-height'
-	};
-
-	/**
-	 * Updates the view.
-	 */
-	AutoHeight.prototype.update = function() {
-		var start = this._core._current,
-			end = start + this._core.settings.items,
-			visible = this._core.$stage.children().toArray().slice(start, end),
-			heights = [],
-			maxheight = 0;
-
-		$.each(visible, function(index, item) {
-			heights.push($(item).height());
-		});
-
-		maxheight = Math.max.apply(null, heights);
-
-		this._core.$stage.parent()
-			.height(maxheight)
-			.addClass(this._core.settings.autoHeightClass);
-	};
-
-	AutoHeight.prototype.destroy = function() {
-		var handler, property;
-
-		for (handler in this._handlers) {
-			this._core.$element.off(handler, this._handlers[handler]);
-		}
-		for (property in Object.getOwnPropertyNames(this)) {
-			typeof this[property] != 'function' && (this[property] = null);
-		}
-	};
-
-	$.fn.owlCarousel.Constructor.Plugins.AutoHeight = AutoHeight;
-
-})(window.Zepto || window.jQuery, window, document);
-
-/**
- * Video Plugin
- * @version 2.1.0
- * @author Bartosz Wojciechowski
- * @author David Deutsch
- * @license The MIT License (MIT)
- */
-;(function($, window, document, undefined) {
-
-	/**
-	 * Creates the video plugin.
-	 * @class The Video Plugin
-	 * @param {Owl} carousel - The Owl Carousel
-	 */
-	var Video = function(carousel) {
-		/**
-		 * Reference to the core.
-		 * @protected
-		 * @type {Owl}
-		 */
-		this._core = carousel;
-
-		/**
-		 * Cache all video URLs.
-		 * @protected
-		 * @type {Object}
-		 */
-		this._videos = {};
-
-		/**
-		 * Current playing item.
-		 * @protected
-		 * @type {jQuery}
-		 */
-		this._playing = null;
-
-		/**
-		 * All event handlers.
-		 * @todo The cloned content removale is too late
-		 * @protected
-		 * @type {Object}
-		 */
-		this._handlers = {
-			'initialized.owl.carousel': $.proxy(function(e) {
-				if (e.namespace) {
-					this._core.register({ type: 'state', name: 'playing', tags: [ 'interacting' ] });
-				}
-			}, this),
-			'resize.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && this._core.settings.video && this.isInFullScreen()) {
-					e.preventDefault();
-				}
-			}, this),
-			'refreshed.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && this._core.is('resizing')) {
-					this._core.$stage.find('.cloned .owl-video-frame').remove();
-				}
-			}, this),
-			'changed.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && e.property.name === 'position' && this._playing) {
-					this.stop();
-				}
-			}, this),
-			'prepared.owl.carousel': $.proxy(function(e) {
-				if (!e.namespace) {
-					return;
-				}
-
-				var $element = $(e.content).find('.owl-video');
-
-				if ($element.length) {
-					$element.css('display', 'none');
-					this.fetch($element, $(e.content));
-				}
-			}, this)
-		};
-
-		// set default options
-		this._core.options = $.extend({}, Video.Defaults, this._core.options);
-
-		// register event handlers
-		this._core.$element.on(this._handlers);
-
-		this._core.$element.on('click.owl.video', '.owl-video-play-icon', $.proxy(function(e) {
-			this.play(e);
-		}, this));
-	};
-
-	/**
-	 * Default options.
-	 * @public
-	 */
-	Video.Defaults = {
-		video: false,
-		videoHeight: false,
-		videoWidth: false
-	};
-
-	/**
-	 * Gets the video ID and the type (YouTube/Vimeo/vzaar only).
-	 * @protected
-	 * @param {jQuery} target - The target containing the video data.
-	 * @param {jQuery} item - The item containing the video.
-	 */
-	Video.prototype.fetch = function(target, item) {
-			var type = (function() {
-					if (target.attr('data-vimeo-id')) {
-						return 'vimeo';
-					} else if (target.attr('data-vzaar-id')) {
-						return 'vzaar'
-					} else {
-						return 'youtube';
-					}
-				})(),
-				id = target.attr('data-vimeo-id') || target.attr('data-youtube-id') || target.attr('data-vzaar-id'),
-				width = target.attr('data-width') || this._core.settings.videoWidth,
-				height = target.attr('data-height') || this._core.settings.videoHeight,
-				url = target.attr('href');
-
-		if (url) {
-
-			/*
-					Parses the id's out of the following urls (and probably more):
-					https://www.youtube.com/watch?v=:id
-					https://youtu.be/:id
-					https://vimeo.com/:id
-					https://vimeo.com/channels/:channel/:id
-					https://vimeo.com/groups/:group/videos/:id
-					https://app.vzaar.com/videos/:id
-
-					Visual example: https://regexper.com/#(http%3A%7Chttps%3A%7C)%5C%2F%5C%2F(player.%7Cwww.%7Capp.)%3F(vimeo%5C.com%7Cyoutu(be%5C.com%7C%5C.be%7Cbe%5C.googleapis%5C.com)%7Cvzaar%5C.com)%5C%2F(video%5C%2F%7Cvideos%5C%2F%7Cembed%5C%2F%7Cchannels%5C%2F.%2B%5C%2F%7Cgroups%5C%2F.%2B%5C%2F%7Cwatch%5C%3Fv%3D%7Cv%5C%2F)%3F(%5BA-Za-z0-9._%25-%5D*)(%5C%26%5CS%2B)%3F
-			*/
-
-			id = url.match(/(http:|https:|)\/\/(player.|www.|app.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com)|vzaar\.com)\/(video\/|videos\/|embed\/|channels\/.+\/|groups\/.+\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/);
-
-			if (id[3].indexOf('youtu') > -1) {
-				type = 'youtube';
-			} else if (id[3].indexOf('vimeo') > -1) {
-				type = 'vimeo';
-			} else if (id[3].indexOf('vzaar') > -1) {
-				type = 'vzaar';
-			} else {
-				throw new Error('Video URL not supported.');
-			}
-			id = id[6];
-		} else {
-			throw new Error('Missing video URL.');
-		}
-
-		this._videos[url] = {
-			type: type,
-			id: id,
-			width: width,
-			height: height
-		};
-
-		item.attr('data-video', url);
-
-		this.thumbnail(target, this._videos[url]);
-	};
-
-	/**
-	 * Creates video thumbnail.
-	 * @protected
-	 * @param {jQuery} target - The target containing the video data.
-	 * @param {Object} info - The video info object.
-	 * @see `fetch`
-	 */
-	Video.prototype.thumbnail = function(target, video) {
-		var tnLink,
-			icon,
-			path,
-			dimensions = video.width && video.height ? 'style="width:' + video.width + 'px;height:' + video.height + 'px;"' : '',
-			customTn = target.find('img'),
-			srcType = 'src',
-			lazyClass = '',
-			settings = this._core.settings,
-			create = function(path) {
-				icon = '<div class="owl-video-play-icon"></div>';
-
-				if (settings.lazyLoad) {
-					tnLink = '<div class="owl-video-tn ' + lazyClass + '" ' + srcType + '="' + path + '"></div>';
-				} else {
-					tnLink = '<div class="owl-video-tn" style="opacity:1;background-image:url(' + path + ')"></div>';
-				}
-				target.after(tnLink);
-				target.after(icon);
-			};
-
-		// wrap video content into owl-video-wrapper div
-		target.wrap('<div class="owl-video-wrapper"' + dimensions + '></div>');
-
-		if (this._core.settings.lazyLoad) {
-			srcType = 'data-src';
-			lazyClass = 'owl-lazy';
-		}
-
-		// custom thumbnail
-		if (customTn.length) {
-			create(customTn.attr(srcType));
-			customTn.remove();
-			return false;
-		}
-
-		if (video.type === 'youtube') {
-			path = "//img.youtube.com/vi/" + video.id + "/hqdefault.jpg";
-			create(path);
-		} else if (video.type === 'vimeo') {
-			$.ajax({
-				type: 'GET',
-				url: '//vimeo.com/api/v2/video/' + video.id + '.json',
-				jsonp: 'callback',
-				dataType: 'jsonp',
-				success: function(data) {
-					path = data[0].thumbnail_large;
-					create(path);
-				}
-			});
-		} else if (video.type === 'vzaar') {
-			$.ajax({
-				type: 'GET',
-				url: '//vzaar.com/api/videos/' + video.id + '.json',
-				jsonp: 'callback',
-				dataType: 'jsonp',
-				success: function(data) {
-					path = data.framegrab_url;
-					create(path);
-				}
-			});
-		}
-	};
-
-	/**
-	 * Stops the current video.
-	 * @public
-	 */
-	Video.prototype.stop = function() {
-		this._core.trigger('stop', null, 'video');
-		this._playing.find('.owl-video-frame').remove();
-		this._playing.removeClass('owl-video-playing');
-		this._playing = null;
-		this._core.leave('playing');
-		this._core.trigger('stopped', null, 'video');
-	};
-
-	/**
-	 * Starts the current video.
-	 * @public
-	 * @param {Event} event - The event arguments.
-	 */
-	Video.prototype.play = function(event) {
-		var target = $(event.target),
-			item = target.closest('.' + this._core.settings.itemClass),
-			video = this._videos[item.attr('data-video')],
-			width = video.width || '100%',
-			height = video.height || this._core.$stage.height(),
-			html;
-
-		if (this._playing) {
-			return;
-		}
-
-		this._core.enter('playing');
-		this._core.trigger('play', null, 'video');
-
-		item = this._core.items(this._core.relative(item.index()));
-
-		this._core.reset(item.index());
-
-		if (video.type === 'youtube') {
-			html = '<iframe width="' + width + '" height="' + height + '" src="//www.youtube.com/embed/' +
-				video.id + '?autoplay=1&v=' + video.id + '" frameborder="0" allowfullscreen></iframe>';
-		} else if (video.type === 'vimeo') {
-			html = '<iframe src="//player.vimeo.com/video/' + video.id +
-				'?autoplay=1" width="' + width + '" height="' + height +
-				'" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>';
-		} else if (video.type === 'vzaar') {
-			html = '<iframe frameborder="0"' + 'height="' + height + '"' + 'width="' + width +
-				'" allowfullscreen mozallowfullscreen webkitAllowFullScreen ' +
-				'src="//view.vzaar.com/' + video.id + '/player?autoplay=true"></iframe>';
-		}
-
-		$('<div class="owl-video-frame">' + html + '</div>').insertAfter(item.find('.owl-video'));
-
-		this._playing = item.addClass('owl-video-playing');
-	};
-
-	/**
-	 * Checks whether an video is currently in full screen mode or not.
-	 * @todo Bad style because looks like a readonly method but changes members.
-	 * @protected
-	 * @returns {Boolean}
-	 */
-	Video.prototype.isInFullScreen = function() {
-		var element = document.fullscreenElement || document.mozFullScreenElement ||
-				document.webkitFullscreenElement;
-
-		return element && $(element).parent().hasClass('owl-video-frame');
-	};
-
-	/**
-	 * Destroys the plugin.
-	 */
-	Video.prototype.destroy = function() {
-		var handler, property;
-
-		this._core.$element.off('click.owl.video');
-
-		for (handler in this._handlers) {
-			this._core.$element.off(handler, this._handlers[handler]);
-		}
-		for (property in Object.getOwnPropertyNames(this)) {
-			typeof this[property] != 'function' && (this[property] = null);
-		}
-	};
-
-	$.fn.owlCarousel.Constructor.Plugins.Video = Video;
-
-})(window.Zepto || window.jQuery, window, document);
-
-/**
- * Animate Plugin
- * @version 2.1.0
- * @author Bartosz Wojciechowski
- * @author David Deutsch
- * @license The MIT License (MIT)
- */
-;(function($, window, document, undefined) {
-
-	/**
-	 * Creates the animate plugin.
-	 * @class The Navigation Plugin
-	 * @param {Owl} scope - The Owl Carousel
-	 */
-	var Animate = function(scope) {
-		this.core = scope;
-		this.core.options = $.extend({}, Animate.Defaults, this.core.options);
-		this.swapping = true;
-		this.previous = undefined;
-		this.next = undefined;
-
-		this.handlers = {
-			'change.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && e.property.name == 'position') {
-					this.previous = this.core.current();
-					this.next = e.property.value;
-				}
-			}, this),
-			'drag.owl.carousel dragged.owl.carousel translated.owl.carousel': $.proxy(function(e) {
-				if (e.namespace) {
-					this.swapping = e.type == 'translated';
-				}
-			}, this),
-			'translate.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && this.swapping && (this.core.options.animateOut || this.core.options.animateIn)) {
-					this.swap();
-				}
-			}, this)
-		};
-
-		this.core.$element.on(this.handlers);
-	};
-
-	/**
-	 * Default options.
-	 * @public
-	 */
-	Animate.Defaults = {
-		animateOut: false,
-		animateIn: false
-	};
-
-	/**
-	 * Toggles the animation classes whenever an translations starts.
-	 * @protected
-	 * @returns {Boolean|undefined}
-	 */
-	Animate.prototype.swap = function() {
-
-		if (this.core.settings.items !== 1) {
-			return;
-		}
-
-		if (!$.support.animation || !$.support.transition) {
-			return;
-		}
-
-		this.core.speed(0);
-
-		var left,
-			clear = $.proxy(this.clear, this),
-			previous = this.core.$stage.children().eq(this.previous),
-			next = this.core.$stage.children().eq(this.next),
-			incoming = this.core.settings.animateIn,
-			outgoing = this.core.settings.animateOut;
-
-		if (this.core.current() === this.previous) {
-			return;
-		}
-
-		if (outgoing) {
-			left = this.core.coordinates(this.previous) - this.core.coordinates(this.next);
-			previous.one($.support.animation.end, clear)
-				.css( { 'left': left + 'px' } )
-				.addClass('animated owl-animated-out')
-				.addClass(outgoing);
-		}
-
-		if (incoming) {
-			next.one($.support.animation.end, clear)
-				.addClass('animated owl-animated-in')
-				.addClass(incoming);
-		}
-	};
-
-	Animate.prototype.clear = function(e) {
-		$(e.target).css( { 'left': '' } )
-			.removeClass('animated owl-animated-out owl-animated-in')
-			.removeClass(this.core.settings.animateIn)
-			.removeClass(this.core.settings.animateOut);
-		this.core.onTransitionEnd();
-	};
-
-	/**
-	 * Destroys the plugin.
-	 * @public
-	 */
-	Animate.prototype.destroy = function() {
-		var handler, property;
-
-		for (handler in this.handlers) {
-			this.core.$element.off(handler, this.handlers[handler]);
-		}
-		for (property in Object.getOwnPropertyNames(this)) {
-			typeof this[property] != 'function' && (this[property] = null);
-		}
-	};
-
-	$.fn.owlCarousel.Constructor.Plugins.Animate = Animate;
-
-})(window.Zepto || window.jQuery, window, document);
-
-/**
- * Autoplay Plugin
- * @version 2.1.0
- * @author Bartosz Wojciechowski
- * @author Artus Kolanowski
- * @author David Deutsch
- * @license The MIT License (MIT)
- */
-;(function($, window, document, undefined) {
-
-	/**
-	 * Creates the autoplay plugin.
-	 * @class The Autoplay Plugin
-	 * @param {Owl} scope - The Owl Carousel
-	 */
-	var Autoplay = function(carousel) {
-		/**
-		 * Reference to the core.
-		 * @protected
-		 * @type {Owl}
-		 */
-		this._core = carousel;
-
-		/**
-		 * The autoplay timeout.
-		 * @type {Timeout}
-		 */
-		this._timeout = null;
-
-		/**
-		 * Indicates whenever the autoplay is paused.
-		 * @type {Boolean}
-		 */
-		this._paused = false;
-
-		/**
-		 * All event handlers.
-		 * @protected
-		 * @type {Object}
-		 */
-		this._handlers = {
-			'changed.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && e.property.name === 'settings') {
-					if (this._core.settings.autoplay) {
-						this.play();
-					} else {
-						this.stop();
-					}
-				} else if (e.namespace && e.property.name === 'position') {
-					//console.log('play?', e);
-					if (this._core.settings.autoplay) {
-						this._setAutoPlayInterval();
-					}
-				}
-			}, this),
-			'initialized.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && this._core.settings.autoplay) {
-					this.play();
-				}
-			}, this),
-			'play.owl.autoplay': $.proxy(function(e, t, s) {
-				if (e.namespace) {
-					this.play(t, s);
-				}
-			}, this),
-			'stop.owl.autoplay': $.proxy(function(e) {
-				if (e.namespace) {
-					this.stop();
-				}
-			}, this),
-			'mouseover.owl.autoplay': $.proxy(function() {
-				if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) {
-					this.pause();
-				}
-			}, this),
-			'mouseleave.owl.autoplay': $.proxy(function() {
-				if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) {
-					this.play();
-				}
-			}, this),
-			'touchstart.owl.core': $.proxy(function() {
-				if (this._core.settings.autoplayHoverPause && this._core.is('rotating')) {
-					this.pause();
-				}
-			}, this),
-			'touchend.owl.core': $.proxy(function() {
-				if (this._core.settings.autoplayHoverPause) {
-					this.play();
-				}
-			}, this)
-		};
-
-		// register event handlers
-		this._core.$element.on(this._handlers);
-
-		// set default options
-		this._core.options = $.extend({}, Autoplay.Defaults, this._core.options);
-	};
-
-	/**
-	 * Default options.
-	 * @public
-	 */
-	Autoplay.Defaults = {
-		autoplay: false,
-		autoplayTimeout: 5000,
-		autoplayHoverPause: false,
-		autoplaySpeed: false
-	};
-
-	/**
-	 * Starts the autoplay.
-	 * @public
-	 * @param {Number} [timeout] - The interval before the next animation starts.
-	 * @param {Number} [speed] - The animation speed for the animations.
-	 */
-	Autoplay.prototype.play = function(timeout, speed) {
-		this._paused = false;
-
-		if (this._core.is('rotating')) {
-			return;
-		}
-
-		this._core.enter('rotating');
-
-		this._setAutoPlayInterval();
-	};
-
-	/**
-	 * Gets a new timeout
-	 * @private
-	 * @param {Number} [timeout] - The interval before the next animation starts.
-	 * @param {Number} [speed] - The animation speed for the animations.
-	 * @return {Timeout}
-	 */
-	Autoplay.prototype._getNextTimeout = function(timeout, speed) {
-		if ( this._timeout ) {
-			window.clearTimeout(this._timeout);
-		}
-		return window.setTimeout($.proxy(function() {
-			if (this._paused || this._core.is('busy') || this._core.is('interacting') || document.hidden) {
-				return;
-			}
-			this._core.next(speed || this._core.settings.autoplaySpeed);
-		}, this), timeout || this._core.settings.autoplayTimeout);
-	};
-
-	/**
-	 * Sets autoplay in motion.
-	 * @private
-	 */
-	Autoplay.prototype._setAutoPlayInterval = function() {
-		this._timeout = this._getNextTimeout();
-	};
-
-	/**
-	 * Stops the autoplay.
-	 * @public
-	 */
-	Autoplay.prototype.stop = function() {
-		if (!this._core.is('rotating')) {
-			return;
-		}
-
-		window.clearTimeout(this._timeout);
-		this._core.leave('rotating');
-	};
-
-	/**
-	 * Stops the autoplay.
-	 * @public
-	 */
-	Autoplay.prototype.pause = function() {
-		if (!this._core.is('rotating')) {
-			return;
-		}
-
-		this._paused = true;
-	};
-
-	/**
-	 * Destroys the plugin.
-	 */
-	Autoplay.prototype.destroy = function() {
-		var handler, property;
-
-		this.stop();
-
-		for (handler in this._handlers) {
-			this._core.$element.off(handler, this._handlers[handler]);
-		}
-		for (property in Object.getOwnPropertyNames(this)) {
-			typeof this[property] != 'function' && (this[property] = null);
-		}
-	};
-
-	$.fn.owlCarousel.Constructor.Plugins.autoplay = Autoplay;
-
-})(window.Zepto || window.jQuery, window, document);
-
-/**
- * Navigation Plugin
- * @version 2.1.0
- * @author Artus Kolanowski
- * @author David Deutsch
- * @license The MIT License (MIT)
- */
-;(function($, window, document, undefined) {
-	'use strict';
-
-	/**
-	 * Creates the navigation plugin.
-	 * @class The Navigation Plugin
-	 * @param {Owl} carousel - The Owl Carousel.
-	 */
-	var Navigation = function(carousel) {
-		/**
-		 * Reference to the core.
-		 * @protected
-		 * @type {Owl}
-		 */
-		this._core = carousel;
-
-		/**
-		 * Indicates whether the plugin is initialized or not.
-		 * @protected
-		 * @type {Boolean}
-		 */
-		this._initialized = false;
-
-		/**
-		 * The current paging indexes.
-		 * @protected
-		 * @type {Array}
-		 */
-		this._pages = [];
-
-		/**
-		 * All DOM elements of the user interface.
-		 * @protected
-		 * @type {Object}
-		 */
-		this._controls = {};
-
-		/**
-		 * Markup for an indicator.
-		 * @protected
-		 * @type {Array.<String>}
-		 */
-		this._templates = [];
-
-		/**
-		 * The carousel element.
-		 * @type {jQuery}
-		 */
-		this.$element = this._core.$element;
-
-		/**
-		 * Overridden methods of the carousel.
-		 * @protected
-		 * @type {Object}
-		 */
-		this._overrides = {
-			next: this._core.next,
-			prev: this._core.prev,
-			to: this._core.to
-		};
-
-		/**
-		 * All event handlers.
-		 * @protected
-		 * @type {Object}
-		 */
-		this._handlers = {
-			'prepared.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && this._core.settings.dotsData) {
-					this._templates.push('<div class="' + this._core.settings.dotClass + '">' +
-						$(e.content).find('[data-dot]').addBack('[data-dot]').attr('data-dot') + '</div>');
-				}
-			}, this),
-			'added.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && this._core.settings.dotsData) {
-					this._templates.splice(e.position, 0, this._templates.pop());
-				}
-			}, this),
-			'remove.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && this._core.settings.dotsData) {
-					this._templates.splice(e.position, 1);
-				}
-			}, this),
-			'changed.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && e.property.name == 'position') {
-					this.draw();
-				}
-			}, this),
-			'initialized.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && !this._initialized) {
-					this._core.trigger('initialize', null, 'navigation');
-					this.initialize();
-					this.update();
-					this.draw();
-					this._initialized = true;
-					this._core.trigger('initialized', null, 'navigation');
-				}
-			}, this),
-			'refreshed.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && this._initialized) {
-					this._core.trigger('refresh', null, 'navigation');
-					this.update();
-					this.draw();
-					this._core.trigger('refreshed', null, 'navigation');
-				}
-			}, this)
-		};
-
-		// set default options
-		this._core.options = $.extend({}, Navigation.Defaults, this._core.options);
-
-		// register event handlers
-		this.$element.on(this._handlers);
-	};
-
-	/**
-	 * Default options.
-	 * @public
-	 * @todo Rename `slideBy` to `navBy`
-	 */
-	Navigation.Defaults = {
-		nav: false,
-		navText: [ 'prev', 'next' ],
-		navSpeed: false,
-		navElement: 'div',
-		navContainer: false,
-		navContainerClass: 'owl-nav',
-		navClass: [ 'owl-prev', 'owl-next' ],
-		slideBy: 1,
-		dotClass: 'owl-dot',
-		dotsClass: 'owl-dots',
-		dots: true,
-		dotsEach: false,
-		dotsData: false,
-		dotsSpeed: false,
-		dotsContainer: false
-	};
-
-	/**
-	 * Initializes the layout of the plugin and extends the carousel.
-	 * @protected
-	 */
-	Navigation.prototype.initialize = function() {
-		var override,
-			settings = this._core.settings;
-
-		// create DOM structure for relative navigation
-		this._controls.$relative = (settings.navContainer ? $(settings.navContainer)
-			: $('<div>').addClass(settings.navContainerClass).appendTo(this.$element)).addClass('disabled');
-
-		this._controls.$previous = $('<' + settings.navElement + '>')
-			.addClass(settings.navClass[0])
-			.html(settings.navText[0])
-			.prependTo(this._controls.$relative)
-			.on('click', $.proxy(function(e) {
-				this.prev(settings.navSpeed);
-			}, this));
-		this._controls.$next = $('<' + settings.navElement + '>')
-			.addClass(settings.navClass[1])
-			.html(settings.navText[1])
-			.appendTo(this._controls.$relative)
-			.on('click', $.proxy(function(e) {
-				this.next(settings.navSpeed);
-			}, this));
-
-		// create DOM structure for absolute navigation
-		if (!settings.dotsData) {
-			this._templates = [ $('<div>')
-				.addClass(settings.dotClass)
-				.append($('<span>'))
-				.prop('outerHTML') ];
-		}
-
-		this._controls.$absolute = (settings.dotsContainer ? $(settings.dotsContainer)
-			: $('<div>').addClass(settings.dotsClass).appendTo(this.$element)).addClass('disabled');
-
-		this._controls.$absolute.on('click', 'div', $.proxy(function(e) {
-			var index = $(e.target).parent().is(this._controls.$absolute)
-				? $(e.target).index() : $(e.target).parent().index();
-
-			e.preventDefault();
-
-			this.to(index, settings.dotsSpeed);
-		}, this));
-
-		// override public methods of the carousel
-		for (override in this._overrides) {
-			this._core[override] = $.proxy(this[override], this);
-		}
-	};
-
-	/**
-	 * Destroys the plugin.
-	 * @protected
-	 */
-	Navigation.prototype.destroy = function() {
-		var handler, control, property, override;
-
-		for (handler in this._handlers) {
-			this.$element.off(handler, this._handlers[handler]);
-		}
-		for (control in this._controls) {
-			this._controls[control].remove();
-		}
-		for (override in this.overides) {
-			this._core[override] = this._overrides[override];
-		}
-		for (property in Object.getOwnPropertyNames(this)) {
-			typeof this[property] != 'function' && (this[property] = null);
-		}
-	};
-
-	/**
-	 * Updates the internal state.
-	 * @protected
-	 */
-	Navigation.prototype.update = function() {
-		var i, j, k,
-			lower = this._core.clones().length / 2,
-			upper = lower + this._core.items().length,
-			maximum = this._core.maximum(true),
-			settings = this._core.settings,
-			size = settings.center || settings.autoWidth || settings.dotsData
-				? 1 : settings.dotsEach || settings.items;
-
-		if (settings.slideBy !== 'page') {
-			settings.slideBy = Math.min(settings.slideBy, settings.items);
-		}
-
-		if (settings.dots || settings.slideBy == 'page') {
-			this._pages = [];
-
-			for (i = lower, j = 0, k = 0; i < upper; i++) {
-				if (j >= size || j === 0) {
-					this._pages.push({
-						start: Math.min(maximum, i - lower),
-						end: i - lower + size - 1
-					});
-					if (Math.min(maximum, i - lower) === maximum) {
-						break;
-					}
-					j = 0, ++k;
-				}
-				j += this._core.mergers(this._core.relative(i));
-			}
-		}
-	};
-
-	/**
-	 * Draws the user interface.
-	 * @todo The option `dotsData` wont work.
-	 * @protected
-	 */
-	Navigation.prototype.draw = function() {
-		var difference,
-			settings = this._core.settings,
-			disabled = this._core.items().length <= settings.items,
-			index = this._core.relative(this._core.current()),
-			loop = settings.loop || settings.rewind;
-
-		this._controls.$relative.toggleClass('disabled', !settings.nav || disabled);
-
-		if (settings.nav) {
-			this._controls.$previous.toggleClass('disabled', !loop && index <= this._core.minimum(true));
-			this._controls.$next.toggleClass('disabled', !loop && index >= this._core.maximum(true));
-		}
-
-		this._controls.$absolute.toggleClass('disabled', !settings.dots || disabled);
-
-		if (settings.dots) {
-			difference = this._pages.length - this._controls.$absolute.children().length;
-
-			if (settings.dotsData && difference !== 0) {
-				this._controls.$absolute.html(this._templates.join(''));
-			} else if (difference > 0) {
-				this._controls.$absolute.append(new Array(difference + 1).join(this._templates[0]));
-			} else if (difference < 0) {
-				this._controls.$absolute.children().slice(difference).remove();
-			}
-
-			this._controls.$absolute.find('.active').removeClass('active');
-			this._controls.$absolute.children().eq($.inArray(this.current(), this._pages)).addClass('active');
-		}
-	};
-
-	/**
-	 * Extends event data.
-	 * @protected
-	 * @param {Event} event - The event object which gets thrown.
-	 */
-	Navigation.prototype.onTrigger = function(event) {
-		var settings = this._core.settings;
-
-		event.page = {
-			index: $.inArray(this.current(), this._pages),
-			count: this._pages.length,
-			size: settings && (settings.center || settings.autoWidth || settings.dotsData
-				? 1 : settings.dotsEach || settings.items)
-		};
-	};
-
-	/**
-	 * Gets the current page position of the carousel.
-	 * @protected
-	 * @returns {Number}
-	 */
-	Navigation.prototype.current = function() {
-		var current = this._core.relative(this._core.current());
-		return $.grep(this._pages, $.proxy(function(page, index) {
-			return page.start <= current && page.end >= current;
-		}, this)).pop();
-	};
-
-	/**
-	 * Gets the current succesor/predecessor position.
-	 * @protected
-	 * @returns {Number}
-	 */
-	Navigation.prototype.getPosition = function(successor) {
-		var position, length,
-			settings = this._core.settings;
-
-		if (settings.slideBy == 'page') {
-			position = $.inArray(this.current(), this._pages);
-			length = this._pages.length;
-			successor ? ++position : --position;
-			position = this._pages[((position % length) + length) % length].start;
-		} else {
-			position = this._core.relative(this._core.current());
-			length = this._core.items().length;
-			successor ? position += settings.slideBy : position -= settings.slideBy;
-		}
-
-		return position;
-	};
-
-	/**
-	 * Slides to the next item or page.
-	 * @public
-	 * @param {Number} [speed=false] - The time in milliseconds for the transition.
-	 */
-	Navigation.prototype.next = function(speed) {
-		$.proxy(this._overrides.to, this._core)(this.getPosition(true), speed);
-	};
-
-	/**
-	 * Slides to the previous item or page.
-	 * @public
-	 * @param {Number} [speed=false] - The time in milliseconds for the transition.
-	 */
-	Navigation.prototype.prev = function(speed) {
-		$.proxy(this._overrides.to, this._core)(this.getPosition(false), speed);
-	};
-
-	/**
-	 * Slides to the specified item or page.
-	 * @public
-	 * @param {Number} position - The position of the item or page.
-	 * @param {Number} [speed] - The time in milliseconds for the transition.
-	 * @param {Boolean} [standard=false] - Whether to use the standard behaviour or not.
-	 */
-	Navigation.prototype.to = function(position, speed, standard) {
-		var length;
-
-		if (!standard && this._pages.length) {
-			length = this._pages.length;
-			$.proxy(this._overrides.to, this._core)(this._pages[((position % length) + length) % length].start, speed);
-		} else {
-			$.proxy(this._overrides.to, this._core)(position, speed);
-		}
-	};
-
-	$.fn.owlCarousel.Constructor.Plugins.Navigation = Navigation;
-
-})(window.Zepto || window.jQuery, window, document);
-
-/**
- * Hash Plugin
- * @version 2.1.0
- * @author Artus Kolanowski
- * @author David Deutsch
- * @license The MIT License (MIT)
- */
-;(function($, window, document, undefined) {
-	'use strict';
-
-	/**
-	 * Creates the hash plugin.
-	 * @class The Hash Plugin
-	 * @param {Owl} carousel - The Owl Carousel
-	 */
-	var Hash = function(carousel) {
-		/**
-		 * Reference to the core.
-		 * @protected
-		 * @type {Owl}
-		 */
-		this._core = carousel;
-
-		/**
-		 * Hash index for the items.
-		 * @protected
-		 * @type {Object}
-		 */
-		this._hashes = {};
-
-		/**
-		 * The carousel element.
-		 * @type {jQuery}
-		 */
-		this.$element = this._core.$element;
-
-		/**
-		 * All event handlers.
-		 * @protected
-		 * @type {Object}
-		 */
-		this._handlers = {
-			'initialized.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && this._core.settings.startPosition === 'URLHash') {
-					$(window).trigger('hashchange.owl.navigation');
-				}
-			}, this),
-			'prepared.owl.carousel': $.proxy(function(e) {
-				if (e.namespace) {
-					var hash = $(e.content).find('[data-hash]').addBack('[data-hash]').attr('data-hash');
-
-					if (!hash) {
-						return;
-					}
-
-					this._hashes[hash] = e.content;
-				}
-			}, this),
-			'changed.owl.carousel': $.proxy(function(e) {
-				if (e.namespace && e.property.name === 'position') {
-					var current = this._core.items(this._core.relative(this._core.current())),
-						hash = $.map(this._hashes, function(item, hash) {
-							return item === current ? hash : null;
-						}).join();
-
-					if (!hash || window.location.hash.slice(1) === hash) {
-						return;
-					}
-
-					window.location.hash = hash;
-				}
-			}, this)
-		};
-
-		// set default options
-		this._core.options = $.extend({}, Hash.Defaults, this._core.options);
-
-		// register the event handlers
-		this.$element.on(this._handlers);
-
-		// register event listener for hash navigation
-		$(window).on('hashchange.owl.navigation', $.proxy(function(e) {
-			var hash = window.location.hash.substring(1),
-				items = this._core.$stage.children(),
-				position = this._hashes[hash] && items.index(this._hashes[hash]);
-
-			if (position === undefined || position === this._core.current()) {
-				return;
-			}
-
-			this._core.to(this._core.relative(position), false, true);
-		}, this));
-	};
-
-	/**
-	 * Default options.
-	 * @public
-	 */
-	Hash.Defaults = {
-		URLhashListener: false
-	};
-
-	/**
-	 * Destroys the plugin.
-	 * @public
-	 */
-	Hash.prototype.destroy = function() {
-		var handler, property;
-
-		$(window).off('hashchange.owl.navigation');
-
-		for (handler in this._handlers) {
-			this._core.$element.off(handler, this._handlers[handler]);
-		}
-		for (property in Object.getOwnPropertyNames(this)) {
-			typeof this[property] != 'function' && (this[property] = null);
-		}
-	};
-
-	$.fn.owlCarousel.Constructor.Plugins.Hash = Hash;
-
-})(window.Zepto || window.jQuery, window, document);
-
-/**
- * Support Plugin
- *
- * @version 2.1.0
- * @author Vivid Planet Software GmbH
- * @author Artus Kolanowski
- * @author David Deutsch
- * @license The MIT License (MIT)
- */
-;(function($, window, document, undefined) {
-
-	var style = $('<support>').get(0).style,
-		prefixes = 'Webkit Moz O ms'.split(' '),
-		events = {
-			transition: {
-				end: {
-					WebkitTransition: 'webkitTransitionEnd',
-					MozTransition: 'transitionend',
-					OTransition: 'oTransitionEnd',
-					transition: 'transitionend'
-				}
-			},
-			animation: {
-				end: {
-					WebkitAnimation: 'webkitAnimationEnd',
-					MozAnimation: 'animationend',
-					OAnimation: 'oAnimationEnd',
-					animation: 'animationend'
-				}
-			}
-		},
-		tests = {
-			csstransforms: function() {
-				return !!test('transform');
-			},
-			csstransforms3d: function() {
-				return !!test('perspective');
-			},
-			csstransitions: function() {
-				return !!test('transition');
-			},
-			cssanimations: function() {
-				return !!test('animation');
-			}
-		};
-
-	function test(property, prefixed) {
-		var result = false,
-			upper = property.charAt(0).toUpperCase() + property.slice(1);
-
-		$.each((property + ' ' + prefixes.join(upper + ' ') + upper).split(' '), function(i, property) {
-			if (style[property] !== undefined) {
-				result = prefixed ? property : true;
-				return false;
-			}
-		});
-
-		return result;
-	}
-
-	function prefixed(property) {
-		return test(property, true);
-	}
-
-	if (tests.csstransitions()) {
-		/* jshint -W053 */
-		$.support.transition = new String(prefixed('transition'))
-		$.support.transition.end = events.transition.end[ $.support.transition ];
-	}
-
-	if (tests.cssanimations()) {
-		/* jshint -W053 */
-		$.support.animation = new String(prefixed('animation'))
-		$.support.animation.end = events.animation.end[ $.support.animation ];
-	}
-
-	if (tests.csstransforms()) {
-		/* jshint -W053 */
-		$.support.transform = new String(prefixed('transform'));
-		$.support.transform3d = tests.csstransforms3d();
-	}
-
-})(window.Zepto || window.jQuery, window, document);
diff --git a/app/code/Magepow/Gdpr/composer.json b/app/code/Magepow/Gdpr/composer.json
index 981dacc..e052c34 100644
--- a/app/code/Magepow/Gdpr/composer.json
+++ b/app/code/Magepow/Gdpr/composer.json
@@ -19,6 +19,14 @@
       ]
     ]
   },
+  "authors": [
+    {
+      "name": "Magepow",
+      "email": "support@magepow.com",
+      "homepage": "https://magepow.com",
+      "role": "Technical Support"
+    }
+  ],
   "autoload": {
         "files": [
             "registration.php"
diff --git a/app/code/Magepow/Gdpr/view/frontend/templates/html/notices.phtml b/app/code/Magepow/Gdpr/view/frontend/templates/html/notices.phtml
index b2882a4..3e076ef 100644
--- a/app/code/Magepow/Gdpr/view/frontend/templates/html/notices.phtml
+++ b/app/code/Magepow/Gdpr/view/frontend/templates/html/notices.phtml
@@ -77,8 +77,9 @@
 
 					require([
 						'jquery',
+						'jquery/jquery.cookie',
 						'Magento_Ui/js/modal/modal'
-					], function($, modal){
+					], function($, cookie, modal){
 						$("#privacyLink").click(function(event) {
 						  event.preventDefault();
 						  	if ($('#magepow-gdpr-popup').length) {
@@ -98,6 +99,13 @@
 								});
 							}
 						});
+
+						if ($.cookie('user_allowed_save_cookie') === null || $.cookie('user_allowed_save_cookie') === "" || $.cookie('user_allowed_save_cookie') === "null" || $.cookie('user_allowed_save_cookie') === undefined){
+							$('body').addClass('cookie-message')
+						}
+						$('#btn-cookie-allow').click(function(){
+							$('body').removeClass('cookie-message')
+						})
 				   });
 			</script>
 		<?php endif ?>
diff --git a/app/code/Magepow/Layerednav/composer.json b/app/code/Magepow/Layerednav/composer.json
index 6b649c6..70263eb 100644
--- a/app/code/Magepow/Layerednav/composer.json
+++ b/app/code/Magepow/Layerednav/composer.json
@@ -1,17 +1,21 @@
 {
   "name": "magepow/layerednav",
-  "description": "N/A",
-  "require": {
-    "php": "~5.5.0|~5.6.0|~7.0.0"
-  },
+  "description": "Magento 2 Advanced Layered Navigation Ajax",
   "type": "magento2-module",
-  "version": "1.0.0",
   "autoload": {
     "files": ["registration.php"],
     "psr-4": {
       "Magepow\\Layerednav\\": ""
     }
   },
+  "authors": [
+    {
+      "name": "Magepow",
+      "email": "support@magepow.com",
+      "homepage": "https://magepow.com",
+      "role": "Technical Support"
+    }
+  ],
   "license": [
     "OSL-3.0",
     "AFL-3.0"
diff --git a/app/code/Magepow/Layerednav/etc/adminhtml/system.xml b/app/code/Magepow/Layerednav/etc/adminhtml/system.xml
index 4bfc957..3eab1d2 100644
--- a/app/code/Magepow/Layerednav/etc/adminhtml/system.xml
+++ b/app/code/Magepow/Layerednav/etc/adminhtml/system.xml
@@ -2,7 +2,7 @@
 
 <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
     <system>
-        <tab id="magepow" translate="label" sortOrder="100">
+        <tab id="magepow" translate="label" sortOrder="89">
             <label>MagePow</label>
         </tab>
         <section id="layered_ajax" translate="label" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1">
diff --git a/app/code/Magepow/Layerednav/view/frontend/templates/layer/state.phtml b/app/code/Magepow/Layerednav/view/frontend/templates/layer/state.phtml
index cbb6dad..9e55ec7 100644
--- a/app/code/Magepow/Layerednav/view/frontend/templates/layer/state.phtml
+++ b/app/code/Magepow/Layerednav/view/frontend/templates/layer/state.phtml
@@ -7,7 +7,7 @@
  *  * @license     http://www.magepow.com/license-agreement.html
  *  * @Author: DavidDuong
  *  * @@Create Date: 4/16/19 3:12 PM
- *  * @@Modify Date: 4/16/19 3:12 PM
+ *  * @@Modify Date: 3/13/20 3:12 PM
  *
  *
  */
@@ -31,8 +31,8 @@
         <ol class="items">
             <?php foreach ($_filters as $_filter): ?>
                 <li class="item">
-                    <span class="filter-label"><?php echo $block->escapeHtml(__($_filter->getName())); ?></span>
-                    <span class="filter-value"><?php /* @escapeNotVerified */ echo $block->stripTags($_filter->getLabel()) ?></span>
+                    <span class="filter-label" attribute-code="<?php echo $_filter->getFilter()->getRequestVar() ?>" ><?php echo $block->escapeHtml(__($_filter->getName())); ?></span>
+                    <span class="filter-value" option-id='<?php echo is_array($_filter->getValue()) ? json_encode($_filter->getValue()) :$_filter->getValue() ?>'><?php /* @escapeNotVerified */ echo $block->stripTags($_filter->getLabel()) ?></span>
                     <?php
                     $clearLinkUrl = $_filter->getClearLinkUrl();
                     $currentFilterName = $block->escapeHtml(__($_filter->getName())) . " " . $block->stripTags($_filter->getLabel());
diff --git a/app/code/Magepow/Layerednav/view/frontend/web/js/layerednav.js b/app/code/Magepow/Layerednav/view/frontend/web/js/layerednav.js
index 47692eb..0610a44 100644
--- a/app/code/Magepow/Layerednav/view/frontend/web/js/layerednav.js
+++ b/app/code/Magepow/Layerednav/view/frontend/web/js/layerednav.js
@@ -6,7 +6,7 @@
  *  * @license     http://www.magepow.com/license-agreement.html
  *  * @Author: DavidDuong
  *  * @@Create Date: 4/16/19 3:15 PM
- *  * @@Modify Date: 6/2/19 3:14 PM
+ *  * @@Modify Date: 3/13/20 3:14 PM
  *
  *
  */
@@ -29,6 +29,7 @@ define([
             this.initObserve();
             this.initProductList();
             this.initClickShopBy();
+            this.filterActive();
         },
 
         initObserve: function () {
@@ -166,6 +167,7 @@ define([
                     $("html, body").animate({ scrollTop: 0 }, "slow");
 
                     $('.layered_overlay').hide();
+                    self.filterActive();
                 },
                 error: function () {
                     window.location.reload();
@@ -176,7 +178,17 @@ define([
             var regex = /(http|https):\/\/(\w+:{0,1}\w*)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%!\-\/]))?/; 
 
             return regex.test(url) ? url : null;
-        }
+        },
+        filterActive: function () {
+            var filterCurrent = $('.filter-current .items .item');
+            var filterOptions = $('.filter-options');
+            filterCurrent.each(function() {
+                var code = $(this).find('.filter-label').attr('attribute-code');
+                var value = $(this).find('.filter-value').attr('option-id');
+                var option = filterOptions.find( '.swatch-attribute[attribute-code="' + code + '"]' + " .swatch-option[option-id='" + value + "']" );
+                if(option.length) option.addClass('selected');
+            });
+        }        
     });
 
     return $.magepow.layerednav;
diff --git a/app/code/Magepow/Lazyload/Plugin/Minifier.php b/app/code/Magepow/Lazyload/Plugin/Minifier.php
deleted file mode 100644
index 7249c75..0000000
--- a/app/code/Magepow/Lazyload/Plugin/Minifier.php
+++ /dev/null
@@ -1,613 +0,0 @@
-<?php
-/*
- * This file is part of the JShrink package.
- *
- * (c) Robert Hafner <tedivm@tedivm.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-/**
- * JShrink
- *
- *
- * @package    JShrink
- * @author     Robert Hafner <tedivm@tedivm.com>
- */
-
-namespace Magepow\Lazyload\Plugin;
-
-/**
- * Minifier
- *
- * Usage - Minifier::minify($js);
- * Usage - Minifier::minify($js, $options);
- * Usage - Minifier::minify($js, array('flaggedComments' => false));
- *
- * @package JShrink
- * @author Robert Hafner <tedivm@tedivm.com>
- * @license http://www.opensource.org/licenses/bsd-license.php  BSD License
- */
-class Minifier
-{
-    /**
-     * The input javascript to be minified.
-     *
-     * @var string
-     */
-    protected $input;
-
-    /**
-     * Length of input javascript.
-     *
-     * @var int
-     */
-    protected $len = 0;
-
-    /**
-     * The location of the character (in the input string) that is next to be
-     * processed.
-     *
-     * @var int
-     */
-    protected $index = 0;
-
-    /**
-     * The first of the characters currently being looked at.
-     *
-     * @var string
-     */
-    protected $a = '';
-
-    /**
-     * The next character being looked at (after a);
-     *
-     * @var string
-     */
-    protected $b = '';
-
-    /**
-     * This character is only active when certain look ahead actions take place.
-     *
-     *  @var string
-     */
-    protected $c;
-
-    /**
-     * Contains the options for the current minification process.
-     *
-     * @var array
-     */
-    protected $options;
-
-    /**
-     * These characters are used to define strings.
-     */
-    protected $stringDelimiters = ['\'' => true, '"' => true, '`' => true];
-
-    /**
-     * Contains the default options for minification. This array is merged with
-     * the one passed in by the user to create the request specific set of
-     * options (stored in the $options attribute).
-     *
-     * @var array
-     */
-    protected static $defaultOptions = ['flaggedComments' => true];
-
-    /**
-     * Contains lock ids which are used to replace certain code patterns and
-     * prevent them from being minified
-     *
-     * @var array
-     */
-    protected $locks = [];
-
-    /**
-     * Takes a string containing javascript and removes unneeded characters in
-     * order to shrink the code without altering it's functionality.
-     *
-     * @param  string      $js      The raw javascript to be minified
-     * @param  array       $options Various runtime options in an associative array
-     * @throws \Exception
-     * @return bool|string
-     */
-    public static function minify($js, $options = [])
-    {
-        try {
-            ob_start();
-
-            $jshrink = new Minifier();
-            $js = $jshrink->lock($js);
-            $jshrink->minifyDirectToOutput($js, $options);
-
-            // Sometimes there's a leading new line, so we trim that out here.
-            $js = ltrim(ob_get_clean());
-            $js = $jshrink->unlock($js);
-            unset($jshrink);
-
-            return $js;
-        } catch (\Exception $e) {
-            if (isset($jshrink)) {
-                // Since the breakdownScript function probably wasn't finished
-                // we clean it out before discarding it.
-                $jshrink->clean();
-                unset($jshrink);
-            }
-
-            // without this call things get weird, with partially outputted js.
-            ob_end_clean();
-            throw $e;
-        }
-    }
-
-    /**
-     * Processes a javascript string and outputs only the required characters,
-     * stripping out all unneeded characters.
-     *
-     * @param string $js      The raw javascript to be minified
-     * @param array  $options Various runtime options in an associative array
-     */
-    protected function minifyDirectToOutput($js, $options)
-    {
-        $this->initialize($js, $options);
-        $this->loop();
-        $this->clean();
-    }
-
-    /**
-     *  Initializes internal variables, normalizes new lines,
-     *
-     * @param string $js      The raw javascript to be minified
-     * @param array  $options Various runtime options in an associative array
-     */
-    protected function initialize($js, $options)
-    {
-        $this->options = array_merge(static::$defaultOptions, $options);
-        $this->input = str_replace(["\r\n", '/**/', "\r"], ["\n", "", "\n"], $js);
-
-        // We add a newline to the end of the script to make it easier to deal
-        // with comments at the bottom of the script- this prevents the unclosed
-        // comment error that can otherwise occur.
-        $this->input .= PHP_EOL;
-
-        // save input length to skip calculation every time
-        $this->len = strlen($this->input);
-
-        // Populate "a" with a new line, "b" with the first character, before
-        // entering the loop
-        $this->a = "\n";
-        $this->b = $this->getReal();
-    }
-
-    /**
-     * Characters that can't stand alone preserve the newline.
-     *
-     * @var array
-     */
-    protected $noNewLineCharacters = [
-        '(' => true,
-        '-' => true,
-        '+' => true,
-        '[' => true,
-        '@' => true];
-
-    /**
-     * The primary action occurs here. This function loops through the input string,
-     * outputting anything that's relevant and discarding anything that is not.
-     */
-    protected function loop()
-    {
-        while ($this->a !== false && !is_null($this->a) && $this->a !== '') {
-            switch ($this->a) {
-                // new lines
-                case "\n":
-                    // if the next line is something that can't stand alone preserve the newline
-                    if ($this->b !== false && isset($this->noNewLineCharacters[$this->b])) {
-                        echo $this->a;
-                        $this->saveString();
-                        break;
-                    }
-
-                    // if B is a space we skip the rest of the switch block and go down to the
-                    // string/regex check below, resetting $this->b with getReal
-                    if ($this->b === ' ') {
-                        break;
-                    }
-
-                // otherwise we treat the newline like a space
-
-                // no break
-                case ' ':
-                    if (static::isAlphaNumeric($this->b)) {
-                        echo $this->a;
-                    }
-
-                    $this->saveString();
-                    break;
-
-                default:
-                    switch ($this->b) {
-                        case "\n":
-                            if (strpos('}])+-"\'', $this->a) !== false) {
-                                echo $this->a;
-                                $this->saveString();
-                                break;
-                            } else {
-                                if (static::isAlphaNumeric($this->a)) {
-                                    echo $this->a;
-                                    $this->saveString();
-                                }
-                            }
-                            break;
-
-                        case ' ':
-                            if (!static::isAlphaNumeric($this->a)) {
-                                break;
-                            }
-
-                        // no break
-                        default:
-                            // check for some regex that breaks stuff
-                            if ($this->a === '/' && ($this->b === '\'' || $this->b === '"')) {
-                                $this->saveRegex();
-                                continue 3;
-                            }
-
-                            echo $this->a;
-                            $this->saveString();
-                            break;
-                    }
-            }
-
-            // do reg check of doom
-            $this->b = $this->getReal();
-
-            if (($this->b == '/' && strpos('(,=:[!&|?', $this->a) !== false)) {
-                $this->saveRegex();
-            }
-        }
-    }
-
-    /**
-     * Resets attributes that do not need to be stored between requests so that
-     * the next request is ready to go. Another reason for this is to make sure
-     * the variables are cleared and are not taking up memory.
-     */
-    protected function clean()
-    {
-        unset($this->input);
-        $this->len = 0;
-        $this->index = 0;
-        $this->a = $this->b = '';
-        unset($this->c);
-        unset($this->options);
-    }
-
-    /**
-     * Returns the next string for processing based off of the current index.
-     *
-     * @return string
-     */
-    protected function getChar()
-    {
-        // Check to see if we had anything in the look ahead buffer and use that.
-        if (isset($this->c)) {
-            $char = $this->c;
-            unset($this->c);
-        } else {
-            // Otherwise we start pulling from the input.
-            $char = $this->index < $this->len ? $this->input[$this->index] : false;
-
-            // If the next character doesn't exist return false.
-            if (isset($char) && $char === false) {
-                return false;
-            }
-
-            // Otherwise increment the pointer and use this char.
-            $this->index++;
-        }
-
-        // Normalize all whitespace except for the newline character into a
-        // standard space.
-        if ($char !== "\n" && $char < "\x20") {
-            return ' ';
-        }
-
-        return $char;
-    }
-
-    /**
-     * This function gets the next "real" character. It is essentially a wrapper
-     * around the getChar function that skips comments. This has significant
-     * performance benefits as the skipping is done using native functions (ie,
-     * c code) rather than in script php.
-     *
-     *
-     * @return string            Next 'real' character to be processed.
-     * @throws \RuntimeException
-     */
-    protected function getReal()
-    {
-        $startIndex = $this->index;
-        $char = $this->getChar();
-
-        // Check to see if we're potentially in a comment
-        if ($char !== '/') {
-            return $char;
-        }
-
-        $this->c = $this->getChar();
-
-        if ($this->c === '/') {
-            $this->processOneLineComments($startIndex);
-
-            return $this->getReal();
-        } elseif ($this->c === '*') {
-            $this->processMultiLineComments($startIndex);
-
-            return $this->getReal();
-        }
-
-        return $char;
-    }
-
-    /**
-     * Removed one line comments, with the exception of some very specific types of
-     * conditional comments.
-     *
-     * @param  int  $startIndex The index point where "getReal" function started
-     * @return void
-     */
-    protected function processOneLineComments($startIndex)
-    {
-        $thirdCommentString = $this->index < $this->len ? $this->input[$this->index] : false;
-
-        // kill rest of line
-        $this->getNext("\n");
-
-        unset($this->c);
-
-        if ($thirdCommentString == '@') {
-            $endPoint = $this->index - $startIndex;
-            $this->c = "\n" . substr($this->input, $startIndex, $endPoint);
-        }
-    }
-
-    /**
-     * Skips multiline comments where appropriate, and includes them where needed.
-     * Conditional comments and "license" style blocks are preserved.
-     *
-     * @param  int               $startIndex The index point where "getReal" function started
-     * @return void
-     * @throws \RuntimeException Unclosed comments will throw an error
-     */
-    protected function processMultiLineComments($startIndex)
-    {
-        $this->getChar(); // current C
-        $thirdCommentString = $this->getChar();
-
-        // kill everything up to the next */ if it's there
-        if ($this->getNext('*/')) {
-            $this->getChar(); // get *
-            $this->getChar(); // get /
-            $char = $this->getChar(); // get next real character
-
-            // Now we reinsert conditional comments and YUI-style licensing comments
-            if (($this->options['flaggedComments'] && $thirdCommentString === '!')
-                || ($thirdCommentString === '@')) {
-
-                // If conditional comments or flagged comments are not the first thing in the script
-                // we need to echo a and fill it with a space before moving on.
-                if ($startIndex > 0) {
-                    echo $this->a;
-                    $this->a = " ";
-
-                    // If the comment started on a new line we let it stay on the new line
-                    if ($this->input[($startIndex - 1)] === "\n") {
-                        echo "\n";
-                    }
-                }
-
-                $endPoint = ($this->index - 1) - $startIndex;
-                echo substr($this->input, $startIndex, $endPoint);
-
-                $this->c = $char;
-
-                return;
-            }
-        } else {
-            $char = false;
-        }
-
-        if ($char === false) {
-            throw new \RuntimeException('Unclosed multiline comment at position: ' . ($this->index - 2));
-        }
-
-        // if we're here c is part of the comment and therefore tossed
-        $this->c = $char;
-    }
-
-    /**
-     * Pushes the index ahead to the next instance of the supplied string. If it
-     * is found the first character of the string is returned and the index is set
-     * to it's position.
-     *
-     * @param  string       $string
-     * @return string|false Returns the first character of the string or false.
-     */
-    protected function getNext($string)
-    {
-        // Find the next occurrence of "string" after the current position.
-        $pos = strpos($this->input, $string, $this->index);
-
-        // If it's not there return false.
-        if ($pos === false) {
-            return false;
-        }
-
-        // Adjust position of index to jump ahead to the asked for string
-        $this->index = $pos;
-
-        // Return the first character of that string.
-        return $this->index < $this->len ? $this->input[$this->index] : false;
-    }
-
-    /**
-     * When a javascript string is detected this function crawls for the end of
-     * it and saves the whole string.
-     *
-     * @throws \RuntimeException Unclosed strings will throw an error
-     */
-    protected function saveString()
-    {
-        $startpos = $this->index;
-
-        // saveString is always called after a gets cleared, so we push b into
-        // that spot.
-        $this->a = $this->b;
-
-        // If this isn't a string we don't need to do anything.
-        if (!isset($this->stringDelimiters[$this->a])) {
-            return;
-        }
-
-        // String type is the quote used, " or '
-        $stringType = $this->a;
-
-        // Echo out that starting quote
-        echo $this->a;
-
-        // Loop until the string is done
-        // Grab the very next character and load it into a
-        while (($this->a = $this->getChar()) !== false) {
-            switch ($this->a) {
-
-                // If the string opener (single or double quote) is used
-                // output it and break out of the while loop-
-                // The string is finished!
-                case $stringType:
-                    break 2;
-
-                // New lines in strings without line delimiters are bad- actual
-                // new lines will be represented by the string \n and not the actual
-                // character, so those will be treated just fine using the switch
-                // block below.
-                case "\n":
-                    if ($stringType === '`') {
-                        echo $this->a;
-                    } else {
-                        throw new \RuntimeException('Unclosed string at position: ' . $startpos);
-                    }
-                    break;
-
-                // Escaped characters get picked up here. If it's an escaped new line it's not really needed
-                case '\\':
-
-                    // a is a slash. We want to keep it, and the next character,
-                    // unless it's a new line. New lines as actual strings will be
-                    // preserved, but escaped new lines should be reduced.
-                    $this->b = $this->getChar();
-
-                    // If b is a new line we discard a and b and restart the loop.
-                    if ($this->b === "\n") {
-                        break;
-                    }
-
-                    // echo out the escaped character and restart the loop.
-                    echo $this->a . $this->b;
-                    break;
-
-
-                // Since we're not dealing with any special cases we simply
-                // output the character and continue our loop.
-                default:
-                    echo $this->a;
-            }
-        }
-    }
-
-    /**
-     * When a regular expression is detected this function crawls for the end of
-     * it and saves the whole regex.
-     *
-     * @throws \RuntimeException Unclosed regex will throw an error
-     */
-    protected function saveRegex()
-    {
-        echo $this->a . $this->b;
-
-        while (($this->a = $this->getChar()) !== false) {
-            if ($this->a === '/') {
-                break;
-            }
-
-            if ($this->a === '\\') {
-                echo $this->a;
-                $this->a = $this->getChar();
-            }
-
-            if ($this->a === "\n") {
-                throw new \RuntimeException('Unclosed regex pattern at position: ' . $this->index);
-            }
-
-            echo $this->a;
-        }
-        $this->b = $this->getReal();
-    }
-
-    /**
-     * Checks to see if a character is alphanumeric.
-     *
-     * @param  string $char Just one character
-     * @return bool
-     */
-    protected static function isAlphaNumeric($char)
-    {
-        return preg_match('/^[\w\$\pL]$/', $char) === 1 || $char == '/';
-    }
-
-    /**
-     * Replace patterns in the given string and store the replacement
-     *
-     * @param  string $js The string to lock
-     * @return bool
-     */
-    protected function lock($js)
-    {
-        /* lock things like <code>"asd" + ++x;</code> */
-        $lock = '"LOCK---' . crc32(time()) . '"';
-
-        $matches = [];
-        preg_match('/([+-])(\s+)([+-])/S', $js, $matches);
-        if (empty($matches)) {
-            return $js;
-        }
-
-        $this->locks[$lock] = $matches[2];
-
-        $js = preg_replace('/([+-])\s+([+-])/S', "$1{$lock}$2", $js);
-        /* -- */
-
-        return $js;
-    }
-
-    /**
-     * Replace "locks" with the original characters
-     *
-     * @param  string $js The string to unlock
-     * @return bool
-     */
-    protected function unlock($js)
-    {
-        if (empty($this->locks)) {
-            return $js;
-        }
-
-        foreach ($this->locks as $lock => $replacement) {
-            $js = str_replace($lock, $replacement, $js);
-        }
-
-        return $js;
-    }
-}
diff --git a/app/code/Magepow/Lazyload/composer.json b/app/code/Magepow/Lazyload/composer.json
deleted file mode 100644
index 4ac6c5e..0000000
--- a/app/code/Magepow/Lazyload/composer.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
-  "name": "magepow/lazyload",
-  "description": "Create lazy load image magento site.",
-  "type": "magento2-module",
-  "version": "1.0.0",
-  "license": [
-      "OSL-3.0",
-      "AFL-3.0"
-  ],
-  "autoload": {
-      "files": [
-          "registration.php"
-      ],
-      "psr-4": {
-          "Magepow\\Lazyload\\": ""
-      }
-  }
-}
\ No newline at end of file
diff --git a/app/code/Magepow/Lazyload/etc/module.xml b/app/code/Magepow/Lazyload/etc/module.xml
deleted file mode 100644
index bb0a6e4..0000000
--- a/app/code/Magepow/Lazyload/etc/module.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0"?>
-<!-- /**
- * @Author: nguyen
- * @Date:   2020-02-12 14:01:01
- * @Last Modified by:   nguyen
- * @Last Modified time: 2020-02-15 18:55:34
- */ -->
-<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
-    <module name="Magepow_Lazyload" setup_version="2.0"/>
-</config>
diff --git a/app/code/Magepow/Lazyload/registration.php b/app/code/Magepow/Lazyload/registration.php
deleted file mode 100644
index 7b9959e..0000000
--- a/app/code/Magepow/Lazyload/registration.php
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php
-
-/**
- * @Author: nguyen
- * @Date:   2020-02-17 13:58:49
- * @Last Modified by:   nguyen
- * @Last Modified time: 2020-02-17 13:59:10
- */
-
-\Magento\Framework\Component\ComponentRegistrar::register(
-    \Magento\Framework\Component\ComponentRegistrar::MODULE,
-    'Magepow_Lazyload',
-    __DIR__
-);
diff --git a/app/code/Magepow/Lazyload/view/frontend/web/css/source/_module.less b/app/code/Magepow/Lazyload/view/frontend/web/css/source/_module.less
deleted file mode 100644
index 4c5dded..0000000
--- a/app/code/Magepow/Lazyload/view/frontend/web/css/source/_module.less
+++ /dev/null
@@ -1,12 +0,0 @@
-& when (@media-common = true) {
-	.loading_img .lazyload{
-	  background-image: url("../Magepow_Lazyload/images/loader.svg");
-	  background-size: 30px auto;
-	  background-position: center center;
-	  background-repeat: no-repeat;
-	  overflow: hidden;
-	}
-	.loading_img img.loaded{
-	  background-image: none;
-	}
-}
\ No newline at end of file
diff --git a/app/code/Magepow/Lazyload/Helper/Data.php b/app/code/Magepow/SpeedOptimizer/Helper/Data.php
similarity index 94%
rename from app/code/Magepow/Lazyload/Helper/Data.php
rename to app/code/Magepow/SpeedOptimizer/Helper/Data.php
index f603968..be9d238 100644
--- a/app/code/Magepow/Lazyload/Helper/Data.php
+++ b/app/code/Magepow/SpeedOptimizer/Helper/Data.php
@@ -3,10 +3,10 @@
  * @Author: nguyen
  * @Date:   2020-02-12 14:01:01
  * @Last Modified by:   nguyen
- * @Last Modified time: 2020-03-15 18:51:36
+ * @Last Modified time: 2020-03-15 19:01:09
  */
 
-namespace Magepow\Lazyload\Helper;
+namespace Magepow\SpeedOptimizer\Helper;
 
 class Data extends \Magento\Framework\App\Helper\AbstractHelper
 {
diff --git a/app/code/Magepow/Lazyload/Plugin/LazyResponse.php b/app/code/Magepow/SpeedOptimizer/Plugin/SpeedOptimizer.php
similarity index 68%
rename from app/code/Magepow/Lazyload/Plugin/LazyResponse.php
rename to app/code/Magepow/SpeedOptimizer/Plugin/SpeedOptimizer.php
index e554ac7..8c4ffbb 100644
--- a/app/code/Magepow/Lazyload/Plugin/LazyResponse.php
+++ b/app/code/Magepow/SpeedOptimizer/Plugin/SpeedOptimizer.php
@@ -2,18 +2,20 @@
 /**
  * @Author: nguyen
  * @Date:   2020-02-12 14:01:01
- * @Last Modified by:   nguyen
- * @Last Modified time: 2020-03-15 21:49:24
+ * @Last Modified by:   Alex Dong
+ * @Last Modified time: 2020-03-19 17:50:53
  */
 
-namespace Magepow\Lazyload\Plugin;
+namespace Magepow\SpeedOptimizer\Plugin;
 
+use Magento\Store\Model\StoreManagerInterface;
 use Magento\Framework\App\RequestInterface;
+use Magento\Framework\App\Config\ScopeConfigInterface;
+use Magento\Framework\View\Design\Theme\ThemeProviderInterface;
 use Magento\Framework\App\Response\Http;
-use Magepow\Lazyload\Helper\Data;
-use Magepow\Lazyload\Plugin\Minifier as jsMinify;
+use Magepow\SpeedOptimizer\Helper\Data;
 
-class LazyResponse
+class SpeedOptimizer extends \Magento\Framework\View\Element\Template
 {
     public $request;
 
@@ -23,22 +25,28 @@ class LazyResponse
 
     public $isJson;
 
-    public $jsMinify;
-
     public $exclude = [];
 
+    protected $storeManager;
+
+    protected $themeProvider;
+
     public $placeholder = 'data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22' . '$width' . '%22%20height%3D%22' . '$height' . '%22%20viewBox%3D%220%200%20225%20265%22%3E%3C%2Fsvg%3E';
 
     public function __construct(
+        \Magento\Framework\View\Element\Template\Context $context,
         RequestInterface $request,
         Data $helper,
-        jsMinify $jsMinify,
+        StoreManagerInterface $storeManager,
+        ThemeProviderInterface $themeProvider,
         array $data = []
     ) 
     {    
+        parent::__construct($context, $data);
         $this->request  = $request;
         $this->helper   = $helper;
-        $this->jsMinify = $jsMinify;
+        $this->storeManager  = $storeManager;
+        $this->themeProvider =  $themeProvider;
 
     }
 
@@ -62,7 +70,7 @@ class LazyResponse
         }
 
         $body = $response->getBody();
-        
+        $body = $this->addLoading($body);
         $body_includes = $this->helper->getConfigModule('general/body_includes');
         if($body_includes) $body = $this->addToBottomBody($body, $body_includes);
 
@@ -74,7 +82,10 @@ class LazyResponse
 
         $bodyClass = 'loading_img';
         $loadingBody = $this->helper->getConfigModule('general/loading_body');
-        if($loadingBody)  $bodyClass .= ' loading_body';
+        if($loadingBody){
+            $bodyClass .= ' loading_body';
+            $body = $this->addToTopBody($body, '<div class="preloading"><div class="loading"></div></div>'); 
+        }  
 
         $body = $this->addBodyClass($body, $bodyClass);
 
@@ -174,7 +185,7 @@ class LazyResponse
             '/<img\s*.*?(?:class="(.*?)")?([^>]*)>/',
             function($match) use ($placeholder) {
 
-                if(strpos($match[0], ' data-src="')) return $match[0];
+                if(stripos($match[0], ' data-src="') !== false) return $match[0];
 
                 if($match[1]){
 
@@ -201,8 +212,7 @@ class LazyResponse
             '/<img\s*.*?(?:class=\\\"(.*?)\\\")?([^>]*)>/',
             function($match) use ($placeholder) {
                 
-                if(strpos($match[0], ' data-src=\"')) return $match[0];
-
+                if(stripos($match[0], ' data-src=\"') !== false) return $match[0];
                 if($match[1]){
 
                     if( $this->isExclude($match[1]) ) return $match[0];
@@ -255,35 +265,33 @@ class LazyResponse
     /* Add js to content */
     public function addLazyLoadJs( $content, $selector='img', $exclude='.loaded' )
     {
-        $exclude = '.' . implode(', .', $this->exclude);
+        if($this->exclude) $exclude = '.' . implode(', .', $this->exclude);
         $script = '<script type="text/javascript"> require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){$(' . $selector .').not("' . $exclude . '").lazyload();});</script>';
         return $this->addToBottomBody($content, $script);
     }
 
-    public function deferJavascripts( $content )
-    {
-        if (stripos($content, "</body>") === false) return $content;
-
-        preg_match_all('~<\s*\bscript\b[^>]*>(.*?)<\s*\/\s*script\s*>~is', $content, $scripts);
-        if ($scripts and isset($scripts[0]) and $scripts[0]) {
-            $content = preg_replace('~<\s*\bscript\b[^>]*>(.*?)<\s*\/\s*script\s*>~is', '', $content);
-            $scripts = implode(" ", $scripts[0]);
-            $scripts = $this->jsMinify::minify($scripts);
-            $content = str_ireplace("</body>", "$scripts</body>", $content);
-        }
-        return $content;
-    }
-
     public function minifyJs($content, $deferJs=false)
     {
-        $regex  = '~//?\s*\*[\s\S]*?\*\s*//?~'; // RegEx to remove /** */ and // ** **// php comments
-        if($deferJs){
-           return $this->deferJavascripts($content);
+        $regex   = '~//?\s*\*[\s\S]*?\*\s*//?~'; // RegEx to remove /** */ and // ** **// php comments
+        $pattern = '/(?:(?:\/\*(?:[^*]|(?:\*+[^*\/]))*\*+\/)|(?:(?<!\:|\\\|\')\/\/.*))/';
+        if( $deferJs && (stripos($content, "</body>") === false) ){
+            $scripts = '';
+            $content = preg_replace_callback(
+                '~<\s*\bscript\b[^>]*>(.*?)<\s*\/\s*script\s*>~is',
+                function($match) use($pattern, &$scripts){
+                    $scripts .= preg_replace($pattern, '', $match[0]);
+                    return '';
+                },
+                $content
+            );
+
+            return str_ireplace("</body>", "$scripts</body>", $content);
+
         } else {
             return preg_replace_callback(
                 '~<\s*\bscript\b[^>]*>(.*?)<\s*\/\s*script\s*>~is',
-                function($match) {
-                    return $this->jsMinify::minify($match[0]);
+                function($match) use($pattern){
+                    return preg_replace($pattern, '', $match[0]);
                 },
                 $content
             );
@@ -296,6 +304,7 @@ class LazyResponse
             '/\>[^\S ]+/s',     // strip whitespaces after tags, except space
             '/[^\S ]+\</s',     // strip whitespaces before tags, except space
             '/(\s)+/s',         // shorten multiple whitespace sequences
+            '/<!--((?! ko | \/ko )[\s\S])*?-->/' // remove comment exclude knockoutJS
             // '/<!--(.|\s)*?-->/' // Remove HTML comments this cause error knockoutJS
         );
 
@@ -303,10 +312,62 @@ class LazyResponse
             '>',
             '<',
             '\\1',
+            '',
             // ''
         );
 
         return preg_replace($search, $replace, $content);
     }
 
+    public function addLoading($content)
+    {
+        $style     = '';
+        $preload   = '';
+        $mediaUrl  = $this ->storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA );
+        $staticUrl =  $this->escapeUrl(
+                $this->getViewFileUrl('', [
+                    'area'  => 'frontend',
+                    'theme' => $this->getTheme()->getThemePath()
+                ])
+            );
+        $placeholder = $staticUrl . '/images/loader-1.gif';
+
+        $jsTranslation =  $staticUrl . '/js-translation.json';
+        $favicon = $staticUrl . '/favicon.ico';
+
+        // $preload .= '<link rel="preload" type="text/json" crossorigin="anonymous" href="' . $jsTranslation . '"></>';
+        $preload .= '<link rel="preload" as="icon" crossorigin="anonymous" href="' . $placeholder . '"></>';
+        $preload .= '<link rel="preload" as="icon" crossorigin="anonymous" href="' . $favicon . '"></>';
+        $loadingBody = $this->helper->getConfigModule('general/loading_body_placeholder');
+
+        $loadingBody = $loadingBody ? $mediaUrl . 'magepow/speedoptimizer/' . $loadingBody : $placeholder;
+        $style   .= 'body.loading_body .preloading .loading{background-image: url("' . $loadingBody . '")}';
+
+        $loadingImg = $this->helper->getConfigModule('general/loading_img_placeholder');
+        $loadingImg  = $loadingImg ?  $mediaUrl . 'magepow/speedoptimizer/' . $loadingImg : $placeholder;
+
+
+        $style .= 'body.loading_img .lazyload{background-image: url("' . $loadingImg . '")}';
+        $style .= 'body.loading_img img.loaded{background-image: none}';    
+
+        if($style){
+            $style = '<style type="text/css">' . $style . '</style>';
+            $content = str_ireplace('</head>', $style . $preload . '</head>', $content);
+        }
+
+        return $content;
+    }
+
+    public function getTheme()
+    {
+        $themeId = $this->_scopeConfig->getValue(
+            \Magento\Framework\View\DesignInterface::XML_PATH_THEME_ID,
+            \Magento\Store\Model\ScopeInterface::SCOPE_STORE,
+            $this->_storeManager->getStore()->getId()
+        );
+
+        /** @var $theme \Magento\Framework\View\Design\ThemeInterface */
+        return $this->themeProvider->getThemeById($themeId);
+    }
+
 }
diff --git a/app/code/Magepow/SpeedOptimizer/README.md b/app/code/Magepow/SpeedOptimizer/README.md
new file mode 100644
index 0000000..db5d8df
--- /dev/null
+++ b/app/code/Magepow/SpeedOptimizer/README.md
@@ -0,0 +1,114 @@
+# Magento2 SpeedOptimizer
+
+Website speed is one of the most important factors that significantly impact your online sales. In fact, many research resources show that websites with fast loading page speed give lower bounce rates, the online revenue also increases after optimized. No doubt, the faster speed can bring to you great shopping experience instead of slow page loading. Some store owners might find different ways to improve their page speed such as speed optimization Service, extensions to optimize, or using some features in Magento default to increase website speed.
+Speed Optimizer for Magento 2 is the extension that can help you improve your website speed significantly by using simple and quick configurations. No coding needed, the store owners also can enable, manage, configure in Admin Panel. For example, in the Admin Panel, you can easy to apply LazyLoad, minify HTML, defer JavaScripts,...to improve your website speed. Therefore, the extension will help you save much of time and cost.
+
+## How to install Magento 2 Speed Optimizer
+### ✓ Install Magepow Speed Optimizer via composer (recommend)
+Run the following command in Magento 2 root folder:
+
+`composer require magepow/speedoptimizer`
+
+`php bin/magento setup:upgrade`
+
+`php bin/magento setup:static-content:deploy -f`
+
+## Highlight Features
+### 1. Easy To Enable/Disable 
+- Disable and Enable the module whenever you want in Admin Panel.
+ 
+### 2. Preloading Body
+- Allow applying Preloading Body and upload Loading Body placeholder
+- Allow applying Preloading Images and upload Image placeholder
+ 
+### 3. Lazy Load
+- Ability to exclude Images that you don't want to apply lazy load and preloading based on Image classes (use comma to separate).
+- Support for placeholder images to keep the layout of the website not broken when the site isn't loaded completely.
+- Allow setting the place that you want to apply to lazyload from that to bottom by busing ID or class of the block.
+- This is ideal for those who don't want to apply lazy load to the page-top such as the header or top banner slider.
+ 
+### 4. Minify/Defer Files
+- Support minify javascript inline
+- Defer javascript: move Javascript to page bottom. A script that will not run until after the page has loaded
+- Support minify CSS inline
+ 
+### 5. Easy To Customize
+- Scripts and Style Sheets: This field is for who want to customize the lazy load, use particular scripts or style.
+
+## Result After using Speed Optimizer Extension
+
+### Speed Test On Gtmetrix.Com
+
+ ![speedoptimizer-img](https://github.com/magepow/magento2-SpeedOptimizer/blob/master/images/Speed%20test%201.png)
+
+### Speed Test On Google PageSpeed Insights
+
+ ![speedoptimizer-img](https://github.com/magepow/magento2-SpeedOptimizer/blob/master/images/speed%20test%202.jpg)
+
+## Detail User Guide
+* [Magento 2 Recent Order Document](https://docs.alothemes.com/m2/extension/speedoptimizer/)
+
+**Free Extensions List**
+
+* [Magento 2 Recent Sales Notification](https://magepow.com/magento-2-recent-sales-notification.html)
+
+* [Magento Categories Extension](https://magepow.com/magento-categories-extension.html)
+
+* [Magento Sticky Cart](https://magepow.com/magento-sticky-cart.html)
+
+* [Magento Ajax Contact](https://magepow.com/magento-ajax-contact-form.html)
+
+* [Magento Lazy Load](https://magepow.com/magento-lazy-load.html)
+
+**Premium Extensions List**
+
+* [Magento 2 Mutil Translate](https://magepow.com/magento-multi-translate.html)
+
+* [Magento 2 Instagram Integration](https://magepow.com/magento-2-instagram.html)
+
+* [Lookbook Pin Products](https://magepow.com/lookbook-pin-products.html)
+
+* [Magento Product Slider](https://magepow.com/magento-product-slider.html)
+
+* [Magento Product Banner](https://magepow.com/magento-banner-slider.html)
+
+**Featured Magento services**
+
+* [PSD to Magento 2 Theme Conversion](https://magepow.com/psd-to-magento-theme-conversion.html)
+
+* [Magento Speed Optimization Service](https://magepow.com/magento-speed-optimization-service.html)
+
+* [Magento Security Patch Installation](https://magepow.com/magento-security-patch-installation.html)
+
+* [Magento Website Maintenance Service](https://magepow.com/website-maintenance-service.html)
+
+* [Magento Professional Installation Service](https://magepow.com/professional-installation-service.html)
+
+* [Magento Upgrade Service](https://magepow.com/magento-upgrade-service.html)
+
+* [Customization Service](https://magepow.com/customization-service.html)
+
+* [Hire Magento Developer](https://magepow.com/hire-magento-developer.html)
+
+**Featured Magento Themes**
+
+* [Expert Multipurpose responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/expert-premium-responsive-magento-2-and-1-support-rtl-magento-2-/21667789)
+
+* [Gecko Premium responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/gecko-responsive-magento-2-theme-rtl-supported/24677410)
+
+* [Milano Fashion responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/milano-fashion-responsive-magento-1-2-theme/12141971)
+
+* [Electro responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/electro-responsive-magento-1-2-theme/17042067)
+
+* [Pizzaro food responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/pizzaro-food-responsive-magento-1-2-theme/19438157)
+
+* [Biolife organic responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/biolife-organic-food-magento-2-theme-rtl-supported/25712510)
+
+* [Market responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/market-responsive-magento-2-theme/22997928)
+
+* [Kuteshop responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/kuteshop-multipurpose-responsive-magento-1-2-theme/12985435)
+
+[![Latest Stable Version](https://poser.pugx.org/magepow/speedoptimizer/v/stable)](https://packagist.org/packages/magepow/speedoptimizer)
+[![Total Downloads](https://poser.pugx.org/magepow/speedoptimizer/downloads)](https://packagist.org/packages/magepow/speedoptimizer)
+
+
diff --git a/app/code/Magepow/SpeedOptimizer/composer.json b/app/code/Magepow/SpeedOptimizer/composer.json
new file mode 100644
index 0000000..75f1148
--- /dev/null
+++ b/app/code/Magepow/SpeedOptimizer/composer.json
@@ -0,0 +1,25 @@
+{
+    "name": "magepow/speedoptimizer",
+    "description": "Optimizer Speed magento2",
+    "type": "magento2-module",
+    "version": "1.0.0",
+    "license": [
+      "MIT"
+    ],
+    "authors": [
+      {
+        "name": "Magepow",
+        "email": "support@magepow.com",
+        "homepage": "https://www.magepow.com",
+        "role": "Technical Support"
+      }
+    ],
+    "autoload": {
+      "psr-4": {
+        "Magepow\\SpeedOptimizer\\": ""
+      },
+      "files": [
+        "registration.php"
+      ]
+    }
+  }
\ No newline at end of file
diff --git a/app/code/Magepow/Lazyload/etc/adminhtml/system.xml b/app/code/Magepow/SpeedOptimizer/etc/adminhtml/system.xml
similarity index 66%
rename from app/code/Magepow/Lazyload/etc/adminhtml/system.xml
rename to app/code/Magepow/SpeedOptimizer/etc/adminhtml/system.xml
index 0949e73..e20280d 100644
--- a/app/code/Magepow/Lazyload/etc/adminhtml/system.xml
+++ b/app/code/Magepow/SpeedOptimizer/etc/adminhtml/system.xml
@@ -11,11 +11,11 @@
         <tab id="magepow" translate="label" sortOrder="86">
             <label>Magepow</label>
         </tab>
-        <section id="magepow_lazyload" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1">
+        <section id="magepow_speedoptimizer" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1">
             <class>separator-top</class>
-            <label>Lazy Load</label>
+            <label>Speed Optimizer</label>
             <tab>magepow</tab>
-            <resource>Magepow_Lazyload::config_lazyload</resource>
+            <resource>Magepow_SpeedOptimizer::config_speedoptimizer</resource>
             <group id="general" translate="label" type="text" sortOrder="5" showInDefault="1" showInWebsite="1" showInStore="1">
                 <label>General</label>
                 <field id="enabled" translate="label comment" type="select" sortOrder="0"  showInDefault="1" showInWebsite="1" showInStore="1">
@@ -28,41 +28,55 @@
                     <comment>Preloading body site </comment>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                 </field>
-                <field id="loading_img" translate="label comment" type="select" sortOrder="15"  showInDefault="1" showInWebsite="1" showInStore="1">
+                <field id="loading_body_placeholder" translate="label comment" type="image" sortOrder="15"  showInDefault="1" showInWebsite="1" showInStore="1">
+                    <label>Loading Body placeholder :</label>
+                    <comment>Allowed file types: jpg, jpeg, gif, png.</comment>
+                    <backend_model>Magento\Config\Model\Config\Backend\Image</backend_model>
+                    <upload_dir config="system/filesystem/media" scope_info="1">magepow/speedoptimizer</upload_dir>
+                    <base_url type="media" scope_info="1">magepow/speedoptimizer</base_url>
+                </field>
+                <field id="loading_img" translate="label comment" type="select" sortOrder="20"  showInDefault="1" showInWebsite="1" showInStore="1">
                     <label>Preloading Images</label>
                     <comment>Preloading Images </comment>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                 </field>
-                <field id="exclude_img" translate="label comment" type="text" sortOrder="20"  showInDefault="1" showInWebsite="1" showInStore="1">
+                <field id="exclude_img" translate="label comment" type="text" sortOrder="22"  showInDefault="1" showInWebsite="1" showInStore="1">
                     <label>Exclude Image class</label>
                     <comment>Exclude Images exist class(comma separated)</comment>
                 </field>
-                <field id="placeholder" translate="label comment" type="select" sortOrder="25"  showInDefault="1" showInWebsite="1" showInStore="1">
+                <field id="loading_img_placeholder" translate="label comment" type="image" sortOrder="25"  showInDefault="1" showInWebsite="1" showInStore="1">
+                    <label>Loading Image placeholder :</label>
+                    <comment>Allowed file types: jpg, jpeg, gif, png.</comment>
+                    <backend_model>Magento\Config\Model\Config\Backend\Image</backend_model>
+                    <upload_dir config="system/filesystem/media" scope_info="1">magepow/speedoptimizer</upload_dir>
+                    <base_url type="media" scope_info="1">magepow/speedoptimizer</base_url>
+                </field>
+                <field id="placeholder" translate="label comment" type="select" sortOrder="30"  showInDefault="1" showInWebsite="1" showInStore="1">
                     <label>Placeholder Images</label>
                     <comment>Placeholder help keep layout original while loading</comment>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                 </field>
-                <field id="regex_block" translate="label comment" type="textarea" sortOrder="30"  showInDefault="1" showInWebsite="1" showInStore="1">
+                <field id="regex_block" translate="label comment" type="textarea" sortOrder="40"  showInDefault="1" showInWebsite="1" showInStore="1">
                     <label>Regex Block</label>
                     <comment>Regex Block HMTL you want add lazyload.</comment>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                 </field>
-                <field id="lazy_ajax" translate="label comment" type="select" sortOrder="35"  showInDefault="1" showInWebsite="1" showInStore="1">
+                <field id="lazy_ajax" translate="label comment" type="select" sortOrder="50"  showInDefault="1" showInWebsite="1" showInStore="1">
                     <label>Lazyload Images Response Ajax</label>
                     <comment>Apply lazyload for Response Ajax</comment>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                 </field>
-                <field id="minify_html" translate="label comment" type="select" sortOrder="40"  showInDefault="1" showInWebsite="1" showInStore="1">
+                <field id="minify_html" translate="label comment" type="select" sortOrder="60"  showInDefault="1" showInWebsite="1" showInStore="1">
                     <label>Minify Html</label>
                     <comment>Minify Html</comment>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                 </field>
-                <field id="defer_js" translate="label comment" type="select" sortOrder="45"  showInDefault="1" showInWebsite="1" showInStore="1">
+                <field id="defer_js" translate="label comment" type="select" sortOrder="70"  showInDefault="1" showInWebsite="1" showInStore="1">
                     <label>Defer Javascripts</label>
                     <comment>Defer Javascripts</comment>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                 </field>
-                <field id="body_includes" translate="label comment" type="textarea" sortOrder="50"  showInDefault="1" showInWebsite="1" showInStore="1">
+                <field id="body_includes" translate="label comment" type="textarea" sortOrder="80"  showInDefault="1" showInWebsite="1" showInStore="1">
                     <label>Scripts and Style Sheets</label>
                     <comment>This will be included before body closing tag in page HTML.</comment>
                     <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
diff --git a/app/code/Magepow/Lazyload/etc/config.xml b/app/code/Magepow/SpeedOptimizer/etc/config.xml
similarity index 91%
rename from app/code/Magepow/Lazyload/etc/config.xml
rename to app/code/Magepow/SpeedOptimizer/etc/config.xml
index 7ebfa8e..e57c67d 100644
--- a/app/code/Magepow/Lazyload/etc/config.xml
+++ b/app/code/Magepow/SpeedOptimizer/etc/config.xml
@@ -7,7 +7,7 @@
  */ -->
 <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
 	<default>
-	    <magepow_lazyload>
+	    <magepow_speedoptimizer>
             <general>
                 <enabled>1</enabled>
                 <loading_body>0</loading_body>
@@ -26,10 +26,11 @@
                         imgLazy.on('load',function(){$(this).addClass('loaded');
                         if($.equalheight) $.fn.equalheight();});
                         $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
                         }); 
                     </script>]]>
                 </body_includes>
             </general>
-        </magepow_lazyload>    
+        </magepow_speedoptimizer>    
 	</default>
 </config>
diff --git a/app/code/Magepow/Lazyload/etc/frontend/di.xml b/app/code/Magepow/SpeedOptimizer/etc/frontend/di.xml
similarity index 77%
rename from app/code/Magepow/Lazyload/etc/frontend/di.xml
rename to app/code/Magepow/SpeedOptimizer/etc/frontend/di.xml
index 04b7fa4..22a4343 100644
--- a/app/code/Magepow/Lazyload/etc/frontend/di.xml
+++ b/app/code/Magepow/SpeedOptimizer/etc/frontend/di.xml
@@ -8,6 +8,6 @@
 
 <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
     <type name="Magento\Framework\App\Response\Http">
-        <plugin name="lazy-response-http-process" type="Magepow\Lazyload\Plugin\LazyResponse"/>
+        <plugin name="speed-optimizer-response-http-process" type="Magepow\SpeedOptimizer\Plugin\SpeedOptimizer"/>
     </type>
 </config>
diff --git a/app/code/Magepow/SpeedOptimizer/etc/module.xml b/app/code/Magepow/SpeedOptimizer/etc/module.xml
new file mode 100644
index 0000000..0cd396d
--- /dev/null
+++ b/app/code/Magepow/SpeedOptimizer/etc/module.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0"?>
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
+    <module name="Magepow_SpeedOptimizer" setup_version="1.0.0" />
+</config>
diff --git a/app/code/Magepow/SpeedOptimizer/images/Speed test 1.png b/app/code/Magepow/SpeedOptimizer/images/Speed test 1.png
new file mode 100644
index 0000000..5396f01
Binary files /dev/null and b/app/code/Magepow/SpeedOptimizer/images/Speed test 1.png differ
diff --git a/app/code/Magepow/SpeedOptimizer/images/speed test 2.jpg b/app/code/Magepow/SpeedOptimizer/images/speed test 2.jpg
new file mode 100644
index 0000000..963be08
Binary files /dev/null and b/app/code/Magepow/SpeedOptimizer/images/speed test 2.jpg differ
diff --git a/app/code/Magepow/SpeedOptimizer/media b/app/code/Magepow/SpeedOptimizer/media
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/app/code/Magepow/SpeedOptimizer/media
@@ -0,0 +1 @@
+
diff --git a/app/code/Magepow/SpeedOptimizer/registration.php b/app/code/Magepow/SpeedOptimizer/registration.php
new file mode 100644
index 0000000..2e31d83
--- /dev/null
+++ b/app/code/Magepow/SpeedOptimizer/registration.php
@@ -0,0 +1,5 @@
+<?php
+
+use \Magento\Framework\Component\ComponentRegistrar;
+
+ComponentRegistrar::register(ComponentRegistrar::MODULE, 'Magepow_SpeedOptimizer', __DIR__);
\ No newline at end of file
diff --git a/app/code/Magepow/Lazyload/view/frontend/requirejs-config.js b/app/code/Magepow/SpeedOptimizer/view/frontend/requirejs-config.js
similarity index 55%
rename from app/code/Magepow/Lazyload/view/frontend/requirejs-config.js
rename to app/code/Magepow/SpeedOptimizer/view/frontend/requirejs-config.js
index a70ae15..9d1d62c 100644
--- a/app/code/Magepow/Lazyload/view/frontend/requirejs-config.js
+++ b/app/code/Magepow/SpeedOptimizer/view/frontend/requirejs-config.js
@@ -1,7 +1,7 @@
 var config = {
 
 	paths: {
-		'magepow/lazyload'			: 'Magepow_Lazyload/js/plugins/lazyload.min',
+		'magepow/lazyload'			: 'Magepow_SpeedOptimizer/js/plugins/lazyload.min',
 	},
 
 	shim: {
diff --git a/app/code/Magepow/SpeedOptimizer/view/frontend/web/css/source/_module.less b/app/code/Magepow/SpeedOptimizer/view/frontend/web/css/source/_module.less
new file mode 100644
index 0000000..c773597
--- /dev/null
+++ b/app/code/Magepow/SpeedOptimizer/view/frontend/web/css/source/_module.less
@@ -0,0 +1,43 @@
+& when (@media-common = true) {
+	.loading_body .preloading {
+	    display: block;
+	    position: fixed;
+	    top: 0;
+	    left: 0;
+	    width: 100%;
+	    height: 100%;
+	    overflow: hidden;
+	    background: #FFF;
+	    opacity: .8;
+	    z-index: 9999999;
+	    -webkit-transition: all .5s ease;
+	    -moz-transition: all .5s ease;
+	    transition: all .5s ease;
+	}
+
+	.loading_body .loading {
+		display: block;
+	    position: relative;
+	    left: 50%;
+	    top: 50%;
+	    width: 150px;
+	    height: 150px;
+	    margin: -75px 0 0 -75px;
+	    border-radius: 50%;
+	    -webkit-animation: spin 2s linear infinite;
+	    animation: spin 2s linear infinite;
+	    background-repeat: no-repeat;
+	    background-size: 100%;
+	}
+
+	.loading_img .lazyload{
+	  background-image: url("../Magepow_SpeedOptimizer/images/loader.svg");
+	  background-size: 30px auto;
+	  background-position: center center;
+	  background-repeat: no-repeat;
+	  overflow: hidden;
+	}
+	.loading_img img.loaded{
+	  background-image: none;
+	}
+}
\ No newline at end of file
diff --git a/app/code/Magepow/SpeedOptimizer/view/frontend/web/images/loader.gif b/app/code/Magepow/SpeedOptimizer/view/frontend/web/images/loader.gif
new file mode 100644
index 0000000..5679fb8
Binary files /dev/null and b/app/code/Magepow/SpeedOptimizer/view/frontend/web/images/loader.gif differ
diff --git a/app/code/Magepow/Lazyload/view/frontend/web/images/loader.svg b/app/code/Magepow/SpeedOptimizer/view/frontend/web/images/loader.svg
similarity index 100%
rename from app/code/Magepow/Lazyload/view/frontend/web/images/loader.svg
rename to app/code/Magepow/SpeedOptimizer/view/frontend/web/images/loader.svg
diff --git a/app/code/Magepow/Lazyload/view/frontend/web/js/plugins/lazyload.min.js b/app/code/Magepow/SpeedOptimizer/view/frontend/web/js/plugins/lazyload.min.js
similarity index 100%
rename from app/code/Magepow/Lazyload/view/frontend/web/js/plugins/lazyload.min.js
rename to app/code/Magepow/SpeedOptimizer/view/frontend/web/js/plugins/lazyload.min.js
diff --git a/app/code/Magepow/Stickycart/Helper/Data.php b/app/code/Magepow/Stickycart/Helper/Data.php
new file mode 100644
index 0000000..e681d7c
--- /dev/null
+++ b/app/code/Magepow/Stickycart/Helper/Data.php
@@ -0,0 +1,50 @@
+<?php
+/*
+ * @category: Magepow
+ * @copyright: Copyright (c) 2014 Magepow (http://www.magepow.com/)
+ * @licence: http://www.magepow.com/license-agreement
+ * @author: MichaelHa
+ * @create date: 2019-06-14 17:19:50
+ * @LastEditors: MichaelHa
+ * @LastEditTime: 2019-06-29 12:45:32
+ */
+namespace Magepow\Stickycart\Helper;
+
+class Data extends \Magento\Framework\App\Helper\AbstractHelper
+{
+    public function getConfig($cfg='')
+    {
+        return $this->scopeConfig->getValue(
+            $cfg,
+            \Magento\Store\Model\ScopeInterface::SCOPE_STORE
+        );
+    }
+    public function isEnabled()
+    {
+        return $this->scopeConfig->getValue(
+            'stickycart/general/enabled',
+            \Magento\Store\Model\ScopeInterface::SCOPE_STORE
+        );
+    }
+    public function getWidthImage()
+    {
+        return $this->scopeConfig->getValue(
+            'stickycart/general/width_image',
+            \Magento\Store\Model\ScopeInterface::SCOPE_STORE
+        );
+    }
+    public function getHeightImage()
+    {
+        return $this->scopeConfig->getValue(
+            'stickycart/general/height_image',
+            \Magento\Store\Model\ScopeInterface::SCOPE_STORE
+        );
+    }
+    public function getHeightScroll()
+    {
+        return $this->scopeConfig->getValue(
+            'stickycart/general/height_scroll',
+            \Magento\Store\Model\ScopeInterface::SCOPE_STORE
+        );
+    }
+}
\ No newline at end of file
diff --git a/app/code/Magepow/Stickycart/README.md b/app/code/Magepow/Stickycart/README.md
new file mode 100644
index 0000000..7d4d978
--- /dev/null
+++ b/app/code/Magepow/Stickycart/README.md
@@ -0,0 +1,103 @@
+# Magento 2 Extention Sticky Add To Cart
+
+This Sticky Add To Cart extension for Magento 2 helps store owners make the cart always visible for easier check out. When a customer scrolls down the page, the extension will help you show the "Add to cart" bar so your customers can quickly add the product to cart or view brief of product detail such as images, price or choose the quantity, no longer need to scroll back to the top, the cart bar is always on visible. Therefore, this extension not only provides customers an extremely convenient shopping experience but also can help you increase sales, and reduce the customer ratio leaving the product or miss their checkout after reading lots of detail (remind and "call to action").
+
+The extension is very easy to use and configure. In the admin panel using configuration options, the admin can enable/disable sticky bar features at any time. Besides, the extension allows you to set the height from header util the Sticky Add To Cart appears. No coding needed and easy to custom style as well. 
+
+## Highlight features for sticky add to cart
+ * When scrolling down quickly view any particular details like a product image, product name, etc.
+ * This extension will increase conversion rate by encouraging customers to add products to cart or buy now button.
+## 1. How to install Magento 2 sticky add to cart
+### ✓ Install sticky add to cart via composer (recommend)
+Run the following command in Magento 2 root folder:
+
+`composer require magepow/stickycart`
+
+`php bin/magento setup:upgrade`
+
+`php bin/magento setup:static-content:deploy -f`
+## 2. Sticky add to cart user guide
+**Magepow sticky add to cart** provides the customer with a hassle-free shopping experience. The product's function allows the customer to quickly add the product to the cart without scrolling. So your customer can get information about the product quickly. Using configuration options admin can enable/disable sticky bar features at any time. Admin can custom height from header until sticky add to cart appears.
+### General Configuration
+#### Enable Sticky add to cart
+Go to `Admin Panel > Stores > Settings > Configuration > Magepow > Stickycart`
+![enable-module-img](https://github.com/magepow/stickycart/blob/master/media/enable.PNG)
+
+Select `Yes` to enable module.
+#### Setting Sticky add to cart
+Go to `Admin Panel > Stores > Settings > Configuration > Magepow > Stickycart`
+![config-module-img](https://github.com/magepow/stickycart/blob/master/media/config.PNG)
+
+You can customize the position of the sticky add to cart appears in the height from the header to the footer.
+### This Is Result In Frontend
+![result-module-img](https://github.com/magepow/stickycart/blob/master/media/ezgif-2-a64cab6485a1.gif)
+
+## Detail User Guide
+* [Magento 2 Sticky Add To Cart Document](https://docs.alothemes.com/m2/extension/stickycart/)
+
+**Free Extensions List**
+
+* [Magento 2 Recent Sales Notification](https://magepow.com/magento-2-recent-sales-notification.html)
+
+* [Magento Categories Extension](https://magepow.com/magento-categories-extension.html)
+
+* [Magento Sticky Cart](https://magepow.com/magento-sticky-cart.html)
+
+* [Magento Ajax Contact](https://magepow.com/magento-ajax-contact-form.html)
+
+* [Magento Lazy Load](https://magepow.com/magento-lazy-load.html)
+
+**Premium Extensions List**
+
+* [Magento Speed Optimizer](https://magepow.com/magento-speed-optimizer.html)
+
+* [Magento 2 Mutil Translate](https://magepow.com/magento-multi-translate.html)
+
+* [Magento 2 Instagram Integration](https://magepow.com/magento-2-instagram.html)
+
+* [Lookbook Pin Products](https://magepow.com/lookbook-pin-products.html)
+
+* [Magento Product Slider](https://magepow.com/magento-product-slider.html)
+
+* [Magento Product Banner](https://magepow.com/magento-banner-slider.html)
+
+**Featured Magento services**
+
+* [PSD to Magento 2 Theme Conversion](https://magepow.com/psd-to-magento-theme-conversion.html)
+
+* [Magento Speed Optimization Service](https://magepow.com/magento-speed-optimization-service.html)
+
+* [Magento Security Patch Installation](https://magepow.com/magento-security-patch-installation.html)
+
+* [Magento Website Maintenance Service](https://magepow.com/website-maintenance-service.html)
+
+* [Magento Professional Installation Service](https://magepow.com/professional-installation-service.html)
+
+* [Magento Upgrade Service](https://magepow.com/magento-upgrade-service.html)
+
+* [Customization Service](https://magepow.com/customization-service.html)
+
+* [Hire Magento Developer](https://magepow.com/hire-magento-developer.html)
+
+**Featured Magento Themes**
+
+* [Expert Multipurpose responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/expert-premium-responsive-magento-2-and-1-support-rtl-magento-2-/21667789)
+
+* [Gecko Premium responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/gecko-responsive-magento-2-theme-rtl-supported/24677410)
+
+* [Milano Fashion responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/milano-fashion-responsive-magento-1-2-theme/12141971)
+
+* [Electro responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/electro-responsive-magento-1-2-theme/17042067)
+
+* [Pizzaro food responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/pizzaro-food-responsive-magento-1-2-theme/19438157)
+
+* [Biolife organic responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/biolife-organic-food-magento-2-theme-rtl-supported/25712510)
+
+* [Market responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/market-responsive-magento-2-theme/22997928)
+
+* [Kuteshop responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/kuteshop-multipurpose-responsive-magento-1-2-theme/12985435)
+
+[![Latest Stable Version](https://poser.pugx.org/magepow/stickycart/v/stable)](https://packagist.org/packages/magepow/stickycart)
+[![Total Downloads](https://poser.pugx.org/magepow/stickycart/downloads)](https://packagist.org/packages/magepow/stickycart)
+
+
diff --git a/app/code/Magepow/Stickycart/composer.json b/app/code/Magepow/Stickycart/composer.json
new file mode 100644
index 0000000..b617d68
--- /dev/null
+++ b/app/code/Magepow/Stickycart/composer.json
@@ -0,0 +1,25 @@
+{
+    "name": "magepow/stickycart",
+    "description": "Magepow Sticky Cart",
+    "type": "magento2-module",
+    "license": [
+        "OSL-3.0",
+        "AFL-3.0"
+    ],
+    "authors": [
+        {
+            "name": "Magepow",
+            "email": "support@magepow.com",
+            "homepage": "https://www.magepow.com",
+            "role": "Technical Support"
+        }
+    ],
+    "autoload": {
+        "files": [
+            "registration.php"
+        ],
+        "psr-4": {
+            "Magepow\\Stickycart\\": ""
+        }
+    }
+}
diff --git a/app/code/Magepow/Stickycart/etc/adminhtml/system.xml b/app/code/Magepow/Stickycart/etc/adminhtml/system.xml
new file mode 100644
index 0000000..ee9451b
--- /dev/null
+++ b/app/code/Magepow/Stickycart/etc/adminhtml/system.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0"?>
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
+    <system>
+        <tab id="magepow" translate="label" sortOrder="89">
+             <label><![CDATA[Magepow]]></label>
+        </tab>
+        <section id="stickycart" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1">
+            <label><![CDATA[Sticky Cart]]></label>
+            <tab>magepow</tab>
+            <resource>Magepow_Stickycart::config_stickycart</resource>
+            <group id="general" translate="label" type="text" sortOrder="50" showInDefault="10" showInWebsite="1" showInStore="1">
+                <label><![CDATA[General]]></label>
+                <field id="enabled" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
+                    <label><![CDATA[Enabled]]></label>
+                    <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
+                </field>
+                <field id="height_scroll" translate="label comment" type="text" showInDefault="1" showInWebsite="1" showInStore="1" sortOrder="10">
+                    <label>Height Scroll</label>
+                    <comment><![CDATA[Height from the top of the web page to the appearance 'add to cart bottom' default value 0 will auto]]></comment>
+                    <validate>validate-number</validate>
+                </field>
+                <field id="width_image" translate="label comment" type="text" showInDefault="1" showInWebsite="1" showInStore="1" sortOrder="20">
+                    <label>Width Image</label>
+                    <comment><![CDATA[Width image product]]></comment>
+                    <validate>validate-number</validate>
+                </field>
+                <field id="height_image" translate="label comment" type="text" showInDefault="1" showInWebsite="1" showInStore="1" sortOrder="30">
+                    <label>Height Image</label>
+                    <comment><![CDATA[Height image product]]></comment>
+                    <validate>validate-number</validate>
+                </field>
+            </group>
+
+        </section>
+    </system>
+</config>
diff --git a/app/code/Magepow/Stickycart/etc/config.xml b/app/code/Magepow/Stickycart/etc/config.xml
new file mode 100644
index 0000000..2ad1ad8
--- /dev/null
+++ b/app/code/Magepow/Stickycart/etc/config.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0"?>
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
+    <default>
+        <stickycart>
+            <general>
+                <enabled>1</enabled>
+                <width_image>80</width_image>
+                <height_image>80</height_image>
+                <height_scroll>0</height_scroll>
+            </general>
+        </stickycart>
+    </default>
+</config>
diff --git a/app/code/Magepow/Stickycart/etc/module.xml b/app/code/Magepow/Stickycart/etc/module.xml
new file mode 100644
index 0000000..2843b21
--- /dev/null
+++ b/app/code/Magepow/Stickycart/etc/module.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0"?>
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
+	<module name="Magepow_Stickycart" setup_version="1.0.0">
+	</module>
+</config>
diff --git a/app/code/Magepow/Stickycart/media/config.PNG b/app/code/Magepow/Stickycart/media/config.PNG
new file mode 100644
index 0000000..960e73e
Binary files /dev/null and b/app/code/Magepow/Stickycart/media/config.PNG differ
diff --git a/app/code/Magepow/Stickycart/media/enable.PNG b/app/code/Magepow/Stickycart/media/enable.PNG
new file mode 100644
index 0000000..f78ff0c
Binary files /dev/null and b/app/code/Magepow/Stickycart/media/enable.PNG differ
diff --git a/app/code/Magepow/Stickycart/media/ezgif-2-a64cab6485a1.gif b/app/code/Magepow/Stickycart/media/ezgif-2-a64cab6485a1.gif
new file mode 100644
index 0000000..d84fdd2
Binary files /dev/null and b/app/code/Magepow/Stickycart/media/ezgif-2-a64cab6485a1.gif differ
diff --git a/app/code/Magepow/Stickycart/registration.php b/app/code/Magepow/Stickycart/registration.php
new file mode 100644
index 0000000..5ce9264
--- /dev/null
+++ b/app/code/Magepow/Stickycart/registration.php
@@ -0,0 +1,6 @@
+<?php
+\Magento\Framework\Component\ComponentRegistrar::register(
+    \Magento\Framework\Component\ComponentRegistrar::MODULE,
+    'Magepow_Stickycart',
+    __DIR__
+);
diff --git a/app/code/Magepow/Stickycart/view/frontend/layout/catalog_product_view.xml b/app/code/Magepow/Stickycart/view/frontend/layout/catalog_product_view.xml
new file mode 100644
index 0000000..2c874a8
--- /dev/null
+++ b/app/code/Magepow/Stickycart/view/frontend/layout/catalog_product_view.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0"?>
+<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
+    <body>
+        <referenceBlock name="before.body.end">
+            <block class="Magento\Catalog\Block\Product\View" name="stickycart" group="detailed_info"
+            		template="Magepow_Stickycart::stickycart.phtml"
+                   	ifconfig="stickycart/general/enabled"
+                   >
+            </block>
+        </referenceBlock>
+    </body>
+</page>
\ No newline at end of file
diff --git a/app/code/Magepow/Stickycart/view/frontend/requirejs-config.js b/app/code/Magepow/Stickycart/view/frontend/requirejs-config.js
new file mode 100644
index 0000000..56e21a4
--- /dev/null
+++ b/app/code/Magepow/Stickycart/view/frontend/requirejs-config.js
@@ -0,0 +1,7 @@
+var config = {
+	map: {
+        '*': {
+            magepowStickycart: 'Magepow_Stickycart/js/stickycart'
+        }
+    }
+};
\ No newline at end of file
diff --git a/app/code/Magepow/Stickycart/view/frontend/templates/stickycart.phtml b/app/code/Magepow/Stickycart/view/frontend/templates/stickycart.phtml
new file mode 100644
index 0000000..c814247
--- /dev/null
+++ b/app/code/Magepow/Stickycart/view/frontend/templates/stickycart.phtml
@@ -0,0 +1,100 @@
+
+<?php
+/*
+ * @category: Magepow
+ * @copyright: Copyright (c) 2014 Magepow (http://www.magepow.com/)
+ * @licence: http://www.magepow.com/license-agreement
+ * @author: MichaelHa
+ * @create date: 2019-07-15 17:19:50
+ * @LastEditors: MichaelHa
+ * @LastEditTime: 2020-03-12 21:18:27
+ */
+
+/** @var $block \Magento\Catalog\Block\Product\View */
+
+$_product = $block->getProduct();
+if ( !$_product->isSaleable() ){
+  return;
+}
+$buttonTitle = __('Add to Cart');
+if ($_product->getTypeId() == 'bundle'){
+  $buttonTitle = __('Customize and Add to Cart');
+}
+$helper        = $this->helper('Magepow\Stickycart\Helper\Data');
+$_imageHelper  = $this->helper('Magento\Catalog\Helper\Image');
+$heightScroll  = $helper->getHeightScroll();
+$widthtImage   = $helper->getWidthImage();
+$heightImage   = $helper->getHeightImage();
+$imageUrl      = $_imageHelper->init($_product, 'product_base_image')
+                ->constrainOnly(TRUE)
+                ->keepAspectRatio(TRUE)
+                ->keepTransparency(TRUE)
+                ->keepFrame(FALSE)
+                ->resize($widthtImage, $widthtImage)->getUrl();
+?>
+<div class="stickyCart">
+  <div class="stickyChild">
+    <div class="contentHide">
+      <div class="clSticky" id="timerSticky">
+        <div class="stickyProductName"><?php echo $block->escapeHtml($_product->getName()) ?></div>
+      </div>
+    </div>
+    <div class="contentHide">
+      <div class="clSticky">
+        <div class="imgBorder">
+          <div class="borderImg">
+            <img class="stickyImg" src="<?php echo $imageUrl; ?>">
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="contentHide">
+      <div class="clSticky" id="parentQtySticky">
+          <div class="quantity">
+            <input  name="qty"
+                    type="number" 
+                    min="1" 
+                    value="<?= $block->getProductDefaultQty() * 1 ?>"
+                    title="<?= $block->escapeHtmlAttr(__('Qty')) ?>"
+                    data-validate="<?= $block->escapeHtml(json_encode($block->getQuantityValidators())) ?>"
+                    id="qtySticky"
+                    class="qty"
+            >
+            <div class="btn-plus">
+              <button  type="button" class="increase items" onclick="var result = document.getElementById('qtySticky'); var qtySticky = result.value; if( !isNaN( qtySticky )) result.value++;return false;">
+                <i class="fa fa-angle-up"></i>
+              </button>
+              <button  type="button" class="reduced items" onclick="var result = document.getElementById('qtySticky'); var qtySticky = result.value; if( !isNaN( qtySticky ) && qtySticky > 1 ) result.value--;return false;">
+                <i class="fa fa-angle-down"></i>
+              </button>  
+            </div>
+          </div>
+      </div>
+    </div>
+    <div class="contentShow">
+      <div class="clSticky">
+        <button id="btnSticky" class="action button" title="<?= $block->escapeHtmlAttr($buttonTitle) ?>"><span><?= $block->escapeHtml($buttonTitle) ?></span></button>
+      </div>
+    </div>
+  </div>
+</div>
+<?php
+$formData = [
+    'stickyCart'                =>  '.stickyCart',
+    'qtySticky'                 =>  '#qtySticky',
+    'quantity'                  =>  '.quantity',
+    'btnSticky'                 =>  '#btnSticky'
+];
+$stickyData = $this->helper('Magento\Framework\Json\Helper\Data')->jsonEncode($formData);
+?>
+<script type="text/x-magento-init">
+    {
+        "*": {
+            "magepowStickycart": {
+            "jsonData":<?php /* @noEscape */ echo $stickyData; ?>,
+            "typeProduct": "<?php /* @noEscape */ echo $_product->getTypeId(); ?>",
+            "scrollHeight": <?php   echo $heightScroll; ?>
+            }
+        }
+    }
+</script>
\ No newline at end of file
diff --git a/app/code/Magepow/Stickycart/view/frontend/web/css/source/_module.less b/app/code/Magepow/Stickycart/view/frontend/web/css/source/_module.less
new file mode 100644
index 0000000..c06044a
--- /dev/null
+++ b/app/code/Magepow/Stickycart/view/frontend/web/css/source/_module.less
@@ -0,0 +1,81 @@
+& when (@media-common = true) {
+  .stickyCart {
+    position: fixed;
+    background-color: #000000;
+    width:100%;
+    bottom:0;
+    height: 90px;
+    z-index: 99;
+    display: none;
+    align-items: center;
+    justify-content: center;
+    .stickyChild{
+        display: flex;
+        align-items: center;
+        justify-content: center;
+        height: 90px;
+          #parentQtySticky{
+            height:43px;
+          }
+          #timerSticky{
+              position: relative;
+          }
+          .clSticky{
+            padding: 10px;
+            #btnSticky:hover{
+              background-color: #b59677;
+              color:#fff;
+            }
+            .stickyProductName{
+              color: #eee;
+            }
+            #btnSticky{
+              background-color: transparent;
+              height: 42px;
+              border-color: #fff;
+            }
+            .imgBorder{
+              width: 68px;
+              height: 68px;
+              border-radius: 50%;
+              border: solid 1px #eee;
+              display: flex;
+              justify-content: center;
+              align-items: center;
+                .borderImg{
+                  width:60px;
+                  height: 60px;
+                  display: inline-block;
+                  vertical-align: middle;
+                  border-radius: 50%;
+                  overflow: hidden;
+                    .stickyImg{
+                      width:100%;
+                      max-width: 100%;
+                    }
+                }
+            }
+        }
+      }
+
+  }
+
+  @media only screen and (max-width: 767px) {
+    .contentHide{
+      display: none;
+    }
+    .contentShow #btnSticky{
+      width: 100%;
+    }
+  }
+  .quantity input {
+    background-color: transparent;
+    color: #eee;
+    height: 42px;
+    float: left;
+    width: 5em;
+  }
+  .quantity input:focus {
+    outline: 0;
+  }
+}
diff --git a/app/code/Magepow/Stickycart/view/frontend/web/js/stickycart.js b/app/code/Magepow/Stickycart/view/frontend/web/js/stickycart.js
new file mode 100644
index 0000000..27d3187
--- /dev/null
+++ b/app/code/Magepow/Stickycart/view/frontend/web/js/stickycart.js
@@ -0,0 +1,100 @@
+define([
+  "jquery",
+  "jquery/ui",
+  ], function ($) {
+    'use strict';
+    $.widget('mage.magepowStickycart', {
+        options: {
+            scrollHeight 	: 0,
+            typeProduct 	: 'simple'
+        },
+	    _create: function () {
+	        var options = this.options;
+	        var buttonAddToCart = $('#product-addtocart-button');
+	        var buttonBundle 	= $('#bundle-slide');
+	        var buttonSticky 	= $('#btnSticky');
+	        if( buttonBundle.length ){
+	        	var buttonAction = buttonBundle;
+	        	buttonSticky.addClass('customize');
+	        } else {
+	        	var buttonAction = buttonAddToCart;
+	        }
+	        if(!buttonAction.length) return;
+	        var scrollHeight 	= options.scrollHeight ? options.scrollHeight : buttonAction.position().top;
+	        var stickyCart      = $(".stickyCart");
+	        var body 			= $('body');
+	        $(document).scroll(function() {
+				var y = $(this).scrollTop();
+				if (y > scrollHeight) {
+					body.addClass('show-add-cart-bottom');
+					stickyCart.fadeIn("fast");
+				} else {
+					body.removeClass('show-add-cart-bottom');
+					stickyCart.fadeOut("fast");
+				}
+	        });
+
+	        var qtySticky 	= $('#qtySticky');
+	        var groupQty 	= $('.grouped .qty input[type="number"]');
+	        var qty 		= $('#qty');
+	        qty.change(function(){
+	        	qtySticky.val(this.value);
+	        });	
+	        qtySticky.change(function(){
+	        	if(groupQty.length){
+	        		groupQty.val(this.value);
+	        	}
+	        	qty.val(this.value);
+	        });        
+	        groupQty.change(function() {
+	        	qtySticky.val(this.value);
+	        });
+
+	        buttonSticky.click(function() {
+	        	var $this = $(this);
+	        	$this.text(buttonAddToCart.text());
+	        	$this.attr("disabled", "disabled");
+	        	setTimeout(function() {
+	        		$this.removeAttr("disabled");
+	          	}, 1500);
+	          	if($this.hasClass('customize')){
+	          		buttonBundle.click();
+	          		buttonSticky.removeClass('customize');
+	          	}else {
+	            	buttonAddToCart.click();
+	          	}
+	        });
+
+	        $('.stickyCart .quantity').each(function() {
+				var spinner = $(this),
+				input = spinner.find('input[type="number"]'),
+				btnUp = spinner.find('.quantity-up'),
+				btnDown = spinner.find('.quantity-down'),
+				min = input.attr('min'),
+				max = input.attr('max');
+	          	btnUp.click(function() {
+	            var oldValue = parseFloat(input.val());
+	            if (oldValue >= max) {
+	              var newVal = oldValue;
+	            } else {
+	              var newVal = oldValue + 1;
+	            }
+	            spinner.find("input").val(newVal);
+	            spinner.find("input").trigger("change");
+	          });
+
+	          btnDown.click(function() {
+	            var oldValue = parseFloat(input.val());
+	            if (oldValue <= min) {
+	              var newVal = oldValue;
+	            } else {
+	              var newVal = oldValue - 1;
+	            }
+	            spinner.find("input").val(newVal);
+	            spinner.find("input").trigger("change");
+	          });
+	        });
+      }
+    });
+  return $.mage.magepowStickycart;
+});
\ No newline at end of file
diff --git a/app/code/Magiccart/Alothemes/Helper/Data.php b/app/code/Magiccart/Alothemes/Helper/Data.php
index 707e1c2..eac9a66 100644
--- a/app/code/Magiccart/Alothemes/Helper/Data.php
+++ b/app/code/Magiccart/Alothemes/Helper/Data.php
@@ -25,16 +25,12 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
      */
     protected $pageConfig;
 
-    protected $configurable;
-
     public function __construct(
         \Magento\Framework\App\Helper\Context $context,
-        \Magento\Framework\View\Page\Config $pageConfig,
-        \Magento\ConfigurableProduct\Model\Product\Type\Configurable $configurable
+        \Magento\Framework\View\Page\Config $pageConfig
     )
     {
         $this->pageConfig   = $pageConfig;
-        $this->configurable = $configurable;
         parent::__construct($context);
     }
     public function getConfig($cfg='')
@@ -61,21 +57,23 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
         if(!$this->_timer['enabled']) return;
 
         if($_product->getTypeId() == 'configurable'){
-                $products = $this->configurable->getUsedProducts($_product);
+                $products = $_product->getTypeInstance()->getUsedProducts($_product, null);
                 $date = 0;
                 foreach ($products as $child) {
-                    $toDate     = $child->getSpecialToDate();
-                    if(!$toDate) continue;
-                    if ($date) {
-                        if (strtotime($date) < strtotime($toDate)) {
+                    if ($child->isSaleable()) {
+                        $toDate     = $child->getSpecialToDate();
+                        if(!$toDate) continue;
+                        if ($date) {
+                            if (strtotime($date) < strtotime($toDate)) {
+                                $_product = $child;
+                                $date = $toDate;
+                            }
+                        } else {
                             $_product = $child;
                             $date = $toDate;
                         }
-                    } else {
-                        $_product = $child;
-                        $date = $toDate;
                     }
-                }         
+                }        
         }
 
         $toDate = $_product->getSpecialToDate();
@@ -91,18 +89,18 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
         return '<div class="alo-count-down"><span class="countdown" data-d="' .$left->format('%a'). '" data-h="' .$left->format('%h'). '" data-i="' .$left->format('%h'). '" data-s="' .$left->format('%s'). '"></span></div>';
     }
 
-    public function getLabels($product)
+    public function getLabels($_product)
     {
         if($this->_labels==null) $this->_labels = $this->getThemeCfg('labels');
         $html  = '';
         $newText = isset($this->_labels['newText']) ? $this->_labels['newText'] : ''; // get in Cfg;
-        if($newText && $this->isNew($product)) $html .= '<span class="sticker top-left"><span class="labelnew">' . __($newText) . '</span></span>';
+        if($newText && $this->isNew($_product)) $html .= '<span class="sticker top-left"><span class="labelnew">' . __($newText) . '</span></span>';
         $percent = isset($this->_labels['salePercent']) ? $this->_labels['salePercent'] : false; // get in Cfg;
         $saleLabel = '';
-        if( $product->getTypeId() == 'configurable' ){
-            // $special_price = $product->getPriceInfo()->getPrice('special_price')->getAmount()->getBaseAmount();
-            $final_price = $product->getPriceInfo()->getPrice('final_price')->getAmount()->getBaseAmount();
-            $regular_price = $product->getPriceInfo()->getPrice('regular_price')->getAmount()->getBaseAmount();
+        if( $_product->getTypeId() == 'configurable' ){
+            // $special_price = $_product->getPriceInfo()->getPrice('special_price')->getAmount()->getBaseAmount();
+            $final_price   = $_product->getPriceInfo()->getPrice('final_price')->getAmount()->getBaseAmount();
+            $regular_price = $_product->getPriceInfo()->getPrice('regular_price')->getAmount()->getBaseAmount();
             if($final_price < $regular_price){
                 if($percent){
                      $saleLabel = (int)$regular_price ? floor(($final_price/$regular_price)*100 - 100).'%' : ''; 
@@ -110,24 +108,32 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
                     $saleLabel = isset($this->_labels['saleText']) ? $this->_labels['saleText'] : '';
                 }
             }
-
-            // $specialPrice = $product->getPriceInfo()->getPrice('special_price')->getAmount()->__toString();
-            // if($specialPrice){
-            //     $final_price    = $product->getPriceInfo()->getPrice('final_price')->getAmount()->__toString();
-            //     $regular_price  = $product->getPriceInfo()->getPrice('regular_price')->getAmount()->__toString();
-            //     if($final_price < $regular_price){
-            //         if($percent){
-            //              $saleLabel = (int)$regular_price ? floor(($final_price/$regular_price)*100 - 100).'%' : ''; 
-            //         } else {
-            //             $saleLabel = isset($this->_labels['saleText']) ? $this->_labels['saleText'] : '';
-            //         }
-            //         $saleLabel = (int)$regular_price ? floor(($final_price/$regular_price)*100 - 100).'%' : ''; 
-            //     }
-            // }
-        } else if($this->isOnSale($product)) {
+            if(!$saleLabel){
+                $products = $_product->getTypeInstance()->getUsedProducts($_product, null);
+                $discount = 0;
+                foreach ($products as $child) {
+                    if ($child->isSaleable()) {
+                        if($this->isOnSale($child)) {
+                            if($percent){
+                                $price = $child->getPrice();
+                                $finalPrice = $child->getFinalPrice();
+                                $saleOff = floor( ($finalPrice/$price)*100 - 100 );
+                                if((int)$price && ($saleOff < $discount)){
+                                    $discount   = $saleOff;
+                                    $saleLabel = $saleOff .'%';          
+                                }      
+                            }else {
+                                $saleLabel = isset($this->_labels['saleText']) ? $this->_labels['saleText'] : '';
+                                break;
+                            }
+                        }
+                    }
+                }
+            }
+        } else if($this->isOnSale($_product)) {
             if($percent){
-                $price = $product->getPrice();
-                $finalPrice = $product->getFinalPrice();
+                $price = $_product->getPrice();
+                $finalPrice = $_product->getFinalPrice();
                 $saleLabel = (int)$price ? floor(($finalPrice/$price)*100 - 100).'%' : '';                
             }else {
                 $saleLabel = isset($this->_labels['saleText']) ? $this->_labels['saleText'] : '';
@@ -139,17 +145,17 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
         return $html;
     }
 
-    protected function isNew($product)
+    protected function isNew($_product)
     {
-        return $this->_nowIsBetween($product->getData('news_from_date'), $product->getData('news_to_date'));
+        return $this->_nowIsBetween($_product->getData('news_from_date'), $_product->getData('news_to_date'));
     }
 
-    protected function isOnSale($product)
+    protected function isOnSale($_product)
     {
-        $specialPrice = number_format($product->getFinalPrice(), 2);
-        $regularPrice = number_format($product->getPrice(), 2);
+        $specialPrice = number_format($_product->getFinalPrice(), 2);
+        $regularPrice = number_format($_product->getPrice(), 2);
 
-        if ($specialPrice != $regularPrice) return $this->_nowIsBetween($product->getData('special_from_date'), $product->getData('special_to_date'));
+        if ($specialPrice != $regularPrice) return $this->_nowIsBetween($_product->getData('special_from_date'), $_product->getData('special_to_date'));
         else return false;
     }
     
diff --git a/app/code/Magiccart/Alothemes/etc/acl.xml b/app/code/Magiccart/Alothemes/etc/acl.xml
index 5a82e32..68837f8 100755
--- a/app/code/Magiccart/Alothemes/etc/acl.xml
+++ b/app/code/Magiccart/Alothemes/etc/acl.xml
@@ -16,7 +16,7 @@
 	        <resource id="Magento_Backend::admin">
 	        	<resource id="Magiccart_Alothemes::magiccart" title="Magiccart" sortOrder="10">
 	        	    <resource id="Magiccart_Alothemes::alothemes" title="ALO Themes" sortOrder="10">
-	        	    	<resource id="Magiccart_Alothemes::alothemes_config" title="Configuration" sortOrder="10" />
+	        	    	<resource id="Magiccart_Alothemes::configuration" title="Configuration" sortOrder="10" />
 	        	        <resource id="Magiccart_Alothemes::alothemes_import" title="Import" sortOrder="20" />
 	        	    </resource>
 	        	    <resource id="Magiccart_Alothemes::tools" title="ALO Tools" sortOrder="10">
diff --git a/app/code/Magiccart/Alothemes/etc/adminhtml/menu.xml b/app/code/Magiccart/Alothemes/etc/adminhtml/menu.xml
index e46635e..eefb16a 100755
--- a/app/code/Magiccart/Alothemes/etc/adminhtml/menu.xml
+++ b/app/code/Magiccart/Alothemes/etc/adminhtml/menu.xml
@@ -15,7 +15,7 @@
 
 	        <add id="Magiccart_Alothemes::alothemes" title="ALO Themes" module="Magiccart_Alothemes" sortOrder="10" parent="magiccart" resource="Magiccart_Alothemes::alothemes"/>
 
-				<add id="Magiccart_Alothemes::alothemes_config" title="Configuration" module="Magiccart_Alothemes" sortOrder="10" parent="Magiccart_Alothemes::alothemes" action="adminhtml/system_config/edit/section/alothemes" resource="Magiccart_Alothemes::configuration"/>
+				<add id="Magiccart_Alothemes::configuration" title="Configuration" module="Magiccart_Alothemes" sortOrder="10" parent="Magiccart_Alothemes::alothemes" action="adminhtml/system_config/edit/section/alothemes" resource="Magiccart_Alothemes::configuration"/>
 
 				<add id="Magiccart_Alothemes::alothemes_import" title="Import" module="Magiccart_Alothemes" sortOrder="10" parent="Magiccart_Alothemes::alothemes" action="alothemes/import/index" resource="Magiccart_Alothemes::alothemes_import"/>
 
diff --git a/app/code/Magiccart/Alothemes/etc/adminhtml/system.xml b/app/code/Magiccart/Alothemes/etc/adminhtml/system.xml
index 690de82..85bb212 100755
--- a/app/code/Magiccart/Alothemes/etc/adminhtml/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/adminhtml/system.xml
@@ -614,9 +614,21 @@
                     <validate>validate-greater-than-zero</validate>
                     <depends><field id="enabled" separator=",">1</field></depends>
                 </field>
-                <field id="speed" translate="label comment" type="text" sortOrder="55"  showInDefault="1" showInWebsite="1" showInStore="1">
+                <field id="autoplay" translate="label comment" type="select" sortOrder="60"  showInDefault="1" showInWebsite="1" showInStore="1">
+                    <label>Autoplay</label>
+                    <comment>Autoplay</comment>
+                    <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
+                    <depends><field id="enabled" separator=",">1</field></depends>
+                </field>
+                <field id="firsttime" translate="label comment" type="text" sortOrder="65"  showInDefault="1" showInWebsite="1" showInStore="1">
+                    <label>First Time Show Notify</label>
+                    <comment>First Time Show wait notify when start</comment>
+                    <validate>validate-greater-than-zero</validate>
+                    <depends><field id="enabled" separator=",">1</field></depends>
+                </field>
+                <field id="speed" translate="label comment" type="text" sortOrder="50"  showInDefault="1" showInWebsite="1" showInStore="1">
                     <label>Speed</label>
-                    <comment>Speed</comment>
+                    <comment>Speed Next time</comment>
                     <validate>validate-greater-than-zero</validate>
                     <depends><field id="enabled" separator=",">1</field></depends>
                 </field>
@@ -842,6 +854,14 @@
             <label>Social Profile</label>
             <tab>Magiccart</tab>
             <resource>Magiccart_Alothemes::config_alosocial</resource>
+            <group id="general" translate="label" type="text" sortOrder="0" showInDefault="1" showInWebsite="1" showInStore="1">
+                <label>General</label>
+                <field id="enabled" translate="label comment" type="select" sortOrder="0"  showInDefault="1" showInWebsite="1" showInStore="1">
+                    <label>Enabled</label>
+                    <comment>Enabled</comment>
+                    <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
+                </field>
+            </group>
             <group id="twitter" translate="label" type="text" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="1">
                 <label>Twitter</label>
                <field id="twitterid" translate="label comment" type="text" sortOrder="10"  showInDefault="1" showInWebsite="1" showInStore="1">
diff --git a/app/code/Magiccart/Alothemes/etc/config.xml b/app/code/Magiccart/Alothemes/etc/config.xml
index e560d7d..869f8db 100755
--- a/app/code/Magiccart/Alothemes/etc/config.xml
+++ b/app/code/Magiccart/Alothemes/etc/config.xml
@@ -125,7 +125,9 @@
                 <faketime>a few minutes ago, 5 minutes ago, 15 minutes ago</faketime>
                 <fakeaddress>Hanoi - VN, New York - US, Sydney - Australia</fakeaddress>
                 <limit>10</limit>
-                <speed>10000</speed>
+                <autoplay>1</autoplay>
+                <firsttime>3000</firsttime>
+                <speed>9000</speed>
             </recentorder>
             <labels>
             	<newText>New</newText>
@@ -217,8 +219,8 @@
                 <showfollow>0</showfollow>      
             </twitter>
             <instagram>
-                <username>tonyle989</username>
-                <accessToken>4454832774.ba4c844.b47d335774f94418aaab6f317f92d9aa</accessToken>
+                <username>mikutas</username>
+                <accessToken></accessToken>
                 <limit>6</limit>
             </instagram>
             <pinterest>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano/system.xml
index f73a124..b1f839e 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[5,75,24]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -149,6 +207,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#ff5555","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#ff7171","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#aaaaaa","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#ff5555","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#ff5555","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#ff5555"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#ff5555","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#000000","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#aaaaaa","background":"","border":""}}]]></value>
@@ -179,12 +241,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/system.xml
index d1e1c57..66f5354 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano10/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[5,75,24]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -149,6 +207,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#ff5555","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#ff7171","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#aaaaaa","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#ff5555","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#ff5555","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#ff5555"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#ff5555","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#fff","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#aaaaaa","background":"","border":""}}]]></value>
@@ -179,12 +241,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/system.xml
index d38d19a..7c92b99 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano11/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[5,75,24]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -149,6 +207,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#ff5555","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#ff7171","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#aaaaaa","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#ff5555","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#ff5555","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#ff5555"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#ff5555","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#000000","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#aaaaaa","background":"","border":""}}]]></value>
@@ -179,12 +241,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/system.xml
index e040865..367061c 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano12/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[5,75,24]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -149,6 +207,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#ff5555","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#ff7171","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#aaaaaa","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#ff5555","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#ff5555","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#ff5555"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#ff5555","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#000000","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#aaaaaa","background":"","border":""}}]]></value>
@@ -179,12 +241,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/system.xml
index f4f4cef..bcbe91c 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano13/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[92,81,85]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -179,12 +237,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/system.xml
index 3ecfaa1..6d26556 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano14/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[109,108,103]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -153,6 +211,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#b47fae","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#7ac1f7","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#b8b8b8","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#b47fae","border":"#b47fae"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#b47fae","border":"#b47fae"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#b47fae","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#b47fae","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#b47fae"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#b47fae","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#000000","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#aaaaaa","background":"","border":""},"_1576123327054_54":{"title":"button next, prev hover","selector":".slick-prev.slick-arrow:hover, .slick-next.slick-arrow:hover","color":"#ffffff","background":"#b47fae","border":"#b47fae"},"_1576123376871_871":{"title":"read more hover","selector":".post-info .post-read-more:hover","color":"#b47fae","background":"","border":""},"_1576124874561_561":{"title":"filter","selector":"#layerednav_price_slider .ui-slider-handle","color":"","background":"#b47fae","border":""},"_1576125066866_866":{"title":"pages hover, active","selector":".pages li.current, .pages li:hover, .pages li a:hover","color":"#ffffff","background":"#b47fae","border":"#b47fae"},"_1577955408185_185":{"title":"cart popup button ","selector":".modals-ajaxcart .modal-content .actions .action","color":"#ffffff","background":"#b47fae","border":"#b47fae"},"_1577955408436_436":{"title":"cart popup button hover","selector":".modals-ajaxcart .modal-content .actions .action:hover","color":"#333333","background":"rgba(0, 0, 0, 0)","border":"#b47fae"}}]]></value>
@@ -183,12 +245,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/system.xml
index e70b739..c2e6753 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano15/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[125,110,113]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -153,6 +211,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#5cace2","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#7ac1f7","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#b8b8b8","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#5cace2","border":"#5cace2"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#5cace2","border":"#5cace2"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#5cace2","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#5cace2","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#5cace2"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#5cace2","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#000000","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#aaaaaa","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#000000","background":"","border":""},"_1576222402859_859":{"title":"read more hover","selector":".post-info .post-read-more:hover","color":"#5cace2","background":"","border":""},"_1577949988536_536":{"title":"filter","selector":"#layerednav_price_slider .ui-slider-handle","color":"","background":"#5cace2","border":""},"_1577949989194_194":{"title":"pages hover, active","selector":".pages li.current, .pages li:hover, .pages li a:hover","color":"#ffffff","background":"#5cace2","border":"#5cace2"},"_1577954629073_73":{"title":"cart popup button ","selector":".modals-ajaxcart .modal-content .actions .action","color":"#ffffff","background":"#5cace2","border":"#5cace2"},"_1577954629365_365":{"title":"cart popup button hover","selector":".modals-ajaxcart .modal-content .actions .action:hover","color":"#333","background":"rgba(0,0,0,0)","border":"#ffffff"}}]]></value>
@@ -183,12 +245,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/system.xml
index 762931d..0b7791c 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano16/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[138,128,134]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -153,6 +211,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#ff00aa","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#7ac1f7","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#b8b8b8","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#ff00aa","border":"#ff00aa"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#ff00aa","border":"#ff00aa"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#ff00aa","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#ff00aa","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#ff00aa"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#ff00aa","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#888888","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#000000","background":"","border":""},"_1577950110823_823":{"title":"read more hover","selector":".post-info .post-read-more:hover","color":"#ff00aa","background":"","border":""},"_1577950111036_36":{"title":"filter","selector":"#layerednav_price_slider .ui-slider-handle","color":"","background":"#ff00aa","border":""},"_1577950111979_979":{"title":"pages hover, active","selector":".pages li.current, .pages li:hover, .pages li a:hover","color":"#ffffff","background":"#ff00aa","border":"#ff00aa"},"_1577953441324_324":{"title":"cart popup button ","selector":".modals-ajaxcart .modal-content .actions .action","color":"#ffffff","background":"#ff00aa","border":"#ff00aa"},"_1577953445398_398":{"title":"cart popup button hover","selector":".modals-ajaxcart .modal-content .actions .action:hover","color":"#333","background":"rgba(0, 0, 0, 0)","border":"#ff00aa"}}]]></value>
@@ -183,12 +245,16 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[sugarkidsandtoughkidsshoes]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>alosocial/instagram/username</path>
+      <value><![CDATA[sugarkidsandtoughkidsshoes]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/system.xml
index d279f4f..12f6f8c 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano2/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[5,75,24]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -149,6 +207,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#ff5555","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#ff7171","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#aaaaaa","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#ff5555","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#ff5555","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#ff5555"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#ff5555","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#000000","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#aaaaaa","background":"","border":""}}]]></value>
@@ -179,12 +241,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/system.xml
index 5e338cd..9960af2 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano3/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[5,75,24]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -149,6 +207,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#ff5555","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#ff7171","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#aaaaaa","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#ff5555","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#ff5555","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#ff5555"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#ff5555","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#000000","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#aaaaaa","background":"","border":""}}]]></value>
@@ -179,12 +241,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/system.xml
index c9c1c99..a8b8295 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano4/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[5,75,24]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -149,6 +207,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#ff5555","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#ff7171","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#aaaaaa","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#ff5555","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#ff5555","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#ff5555"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#ff5555","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#000000","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#aaaaaa","background":"","border":""}}]]></value>
@@ -179,12 +241,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/system.xml
index 12b76e4..1e6b511 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano5/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[5,75,24]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -149,6 +207,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#ff5555","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#ff7171","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#aaaaaa","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#ff5555","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#ff5555","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#ff5555"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#ff5555","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#000000","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#aaaaaa","background":"","border":""}}]]></value>
@@ -179,12 +241,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/system.xml
index f0fdb64..d97345c 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano6/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[5,75,24]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -149,6 +207,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#ff5555","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#ff7171","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#aaaaaa","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#ff5555","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#ff5555","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#ff5555"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#ff5555","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#000000","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#aaaaaa","background":"","border":""}}]]></value>
@@ -179,12 +241,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/system.xml
index f9168d0..b413678 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano7/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[5,75,24]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -149,6 +207,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#ff5555","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#ff7171","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#aaaaaa","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#ff5555","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#ff5555","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#ff5555"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#ff5555","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#000000","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#aaaaaa","background":"","border":""}}]]></value>
@@ -179,12 +241,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/lookbook.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/lookbook.xml
deleted file mode 100644
index 25d2d0f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/lookbook.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <lookbook>
-    <item>
-      <title><![CDATA[Lookbok]]></title>
-      <identifier><![CDATA[lookbok]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider1_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Cras sem sapien(#59)","undefined":"Save pin","product_id":"59","coords":{"lat":"1135.75","long":"386.65"}},"1":{"content":"Wave Ripped Straight(#3)","undefined":"Save pin","product_id":"3","coords":{"lat":"1206.75","long":"675.65"}},"2":{"content":"Primo Court Mid Suede(#1)","undefined":"Save pin","product_id":"1","coords":{"lat":"379.75","long":"313"}},"3":{"content":"The Net Bag in Navy(#2)","undefined":"Save pin","product_id":"2","coords":{"lat":"660.75","long":"480.65"}},"4":{"content":"Fusce nec facilisi(#61)","undefined":"Save pin","product_id":"61","coords":{"lat":"630.75","long":"723.65"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider1_03.jpg","width":1720,"height":975}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Lookbok 2]]></title>
-      <identifier><![CDATA[lookbok2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <link><![CDATA[#]]></link>
-      <image><![CDATA[magiccart/lookbook/s/l/slider2_03.jpg]]></image>
-      <options><![CDATA[{"magic_pin":{"0":{"content":"Quisque neque(#60)","undefined":"Save pin","product_id":"60","coords":{"lat":"916.75","long":"533.65"}},"2":{"content":"Donec sem tellus(#7)","undefined":"Save pin","product_id":"7","coords":{"lat":"1163.75","long":"695"}},"canvas":{"src":"http://tuyen.wp2cart.com/milano/pub/media/magiccart/lookbook/s/l/slider2_03.jpg","width":"1720","height":"975"}}}]]></options>
-      <stores><![CDATA[0]]></stores>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </lookbook>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/magicmenu.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/magicmenu.xml
deleted file mode 100644
index 650499c..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/magicmenu.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicmenu>
-    <item>
-      <name><![CDATA[Contact]]></name>
-      <extra><![CDATA[1]]></extra>
-      <magic_label><![CDATA[]]></magic_label>
-      <link><![CDATA[contact]]></link>
-      <ext_content><![CDATA[]]></ext_content>
-      <order><![CDATA[0]]></order>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicmenu>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/magicproduct.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/magicproduct.xml
deleted file mode 100644
index 1b752a3..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/magicproduct.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicproduct>
-    <item>
-      <title><![CDATA[Main Products]]></title>
-      <identifier><![CDATA[main-product-01]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"1";s:9:"countdown";s:0:"";s:5:"title";s:13:"Main Products";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"1";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products 2]]></title>
-      <identifier><![CDATA[main-product-02]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"2";s:9:"countdown";s:0:"";s:5:"title";s:15:"Main Products 2";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:6:"latest";i:1;s:6:"random";i:2;s:4:"sale";}s:9:"activated";s:6:"random";s:5:"limit";s:2:"12";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"2";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page1]]></title>
-      <identifier><![CDATA[custom-product-1]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"3";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page1";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:10:"bestseller";}s:9:"activated";s:10:"bestseller";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page2]]></title>
-      <identifier><![CDATA[custom-product-2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"4";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"random";}s:9:"activated";s:6:"random";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Custom Product Home Page3]]></title>
-      <identifier><![CDATA[custom-product-3]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"5";s:9:"countdown";s:0:"";s:5:"title";s:25:"Custom Product Home Page3";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"2";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:5:"false";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"2";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Main Products demo7]]></title>
-      <identifier><![CDATA[main-product-03]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"6";s:9:"countdown";s:0:"";s:5:"title";s:19:"Main Products demo7";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:3:"new";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"4";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Latest Products Left Demo2]]></title>
-      <identifier><![CDATA[latest-product-demo2]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"HDFMm99RYQDRpy8A";s:15:"magicproduct_id";s:1:"7";s:9:"countdown";s:0:"";s:5:"title";s:26:"Latest Products Left Demo2";s:4:"ajax";s:1:"0";s:5:"types";a:1:{i:0;s:6:"latest";}s:9:"activated";s:6:"latest";s:5:"limit";s:1:"4";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"0";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:1:"0";s:4:"cart";s:1:"1";s:7:"compare";s:1:"0";s:8:"wishlist";s:1:"0";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-4]]></title>
-      <identifier><![CDATA[feature-product-4]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"8";s:9:"countdown";s:0:"";s:5:"title";s:17:"feature-product-4";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:1:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 15]]></title>
-      <identifier><![CDATA[hot-deal-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:1:"9";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 15";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:5:"false";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-16]]></title>
-      <identifier><![CDATA[feature-product-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"10";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-16";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[hot deal 16]]></title>
-      <identifier><![CDATA[hot-deal-16]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:11:"hot deal 16";s:10:"identifier";s:11:"hot-deal-16";s:4:"ajax";s:1:"1";s:5:"types";a:1:{i:0;s:4:"sale";}s:9:"activated";s:4:"sale";s:5:"limit";s:1:"1";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"13";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"1";s:9:"landscape";s:1:"1";s:6:"tablet";s:1:"1";s:8:"notebook";s:1:"1";s:6:"laptop";s:1:"1";s:7:"desktop";s:1:"1";s:10:"widescreen";s:1:"1";s:7:"visible";s:1:"1";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:5:"false";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"10";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-15]]></title>
-      <identifier><![CDATA[feature-product-15]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:15:"magicproduct_id";s:2:"12";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-15";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"12";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[feature-product-14]]></title>
-      <identifier><![CDATA[feature-product-14]]></identifier>
-      <type_id><![CDATA[1]]></type_id>
-      <config><![CDATA[a:34:{s:8:"form_key";s:16:"wP6Kvdt2G3DNqYMV";s:9:"countdown";s:0:"";s:5:"title";s:18:"feature-product-14";s:10:"identifier";s:18:"feature-product-14";s:4:"ajax";s:1:"1";s:5:"types";a:3:{i:0;s:8:"featured";i:1;s:3:"new";i:2;s:4:"sale";}s:9:"activated";s:8:"featured";s:5:"limit";s:1:"8";s:6:"status";s:1:"1";s:10:"parameters";a:1:{s:10:"conditions";a:2:{i:1;a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Combine";s:10:"aggregator";s:3:"all";s:5:"value";s:1:"1";s:9:"new_child";s:0:"";}s:4:"1--1";a:4:{s:4:"type";s:50:"Magento\CatalogWidget\Model\Rule\Condition\Product";s:9:"attribute";s:16:"attribute_set_id";s:8:"operator";s:2:"==";s:5:"value";s:2:"11";}}}s:6:"mobile";s:1:"1";s:8:"portrait";s:1:"2";s:9:"landscape";s:1:"2";s:6:"tablet";s:1:"3";s:8:"notebook";s:1:"3";s:6:"laptop";s:1:"4";s:7:"desktop";s:1:"4";s:10:"widescreen";s:1:"4";s:7:"visible";s:1:"4";s:5:"timer";s:1:"0";s:5:"slide";s:1:"1";s:8:"vertical";s:5:"false";s:8:"infinite";s:4:"true";s:8:"autoplay";s:4:"true";s:6:"arrows";s:4:"true";s:4:"dots";s:5:"false";s:4:"rows";s:1:"1";s:5:"speed";s:3:"300";s:14:"autoplay-Speed";s:4:"3000";s:7:"padding";s:2:"15";s:4:"cart";s:1:"1";s:7:"compare";s:1:"1";s:8:"wishlist";s:1:"1";s:6:"review";s:1:"1";}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicproduct>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/magicslider.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/magicslider.xml
deleted file mode 100644
index ae4488f..0000000
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/magicslider.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-  <magicslider>
-    <item>
-      <title><![CDATA[Slide Demo 1]]></title>
-      <identifier><![CDATA[slide1]]></identifier>
-      <config><![CDATA[{"magicslider_id":"1","title":"Slide Demo 1","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wfhghcefmt5":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"1j4g0ukibbh":{"position":"1","media_type":"external-video","video_provider":"","file":"\/s\/l\/slide3_2_1.jpg","value_id":"","label":"","link":"","caption":"","disabled":"0","removed":"","video_url":"https:\/\/vimeo.com\/18433850","video_title":"Fashion is","video_description":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE","video_metadata":"","role":"NON PROFIT - FASHION VIDEO\r\n\r\nDirection:\r\nMIMI ANTOLOVI\u0106 and DEN BARUCA\r\n\r\nCamera and light:\r\nURO\u0160\u00a0 VOVK (MUVA)\r\n\r\nStyling:\r\nDANAJA VEGELJ\r\n\r\nMake up:\r\nTINA FABJAN (Head of make up artists Max Factor Slovenia)\r\n\r\nHair:\r\nMATJA\u017d\u00a0\u0160I\u0160KA and BORUT NOVAK (Mi\u010d\u008d styling)\r\n\r\nEditing and postproduction:\r\nDEN BARUCA (Thenvision)\r\n\r\nMusic:\r\nMr You're On Fire Mr\r\nYEAH YEAH YEAHS\r\n\r\nModels (MG - model group):\r\nBRINA\r\nJASMINA\r\nAJDA\r\nANELA\r\nSARA\r\n\r\nmade by ZVEREENE"},"d7m9fn96ot7":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slide2_1.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"rns4rfb05er":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide3_2.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 2]]></title>
-      <identifier><![CDATA[slide2]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 2","identifier":"slide2","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"7rkfi353sp3r7i53t9":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d5it1nedgfbjqd32l2":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/homev2_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 3]]></title>
-      <identifier><![CDATA[slide3]]></identifier>
-      <config><![CDATA[{"magicslider_id":"3","title":"Slide Demo 3","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dj73alkdbld":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"hqi28n9uqoo":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d3npsgdpl1j":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev3_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 4]]></title>
-      <identifier><![CDATA[slide4]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 4","identifier":"slide4","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"bv375l5a30nfokc5p7":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide\">\r\n\t\t\t    <h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d9pds784bhn9whvbl9":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"8gsqwaoc2nhw0t93gp":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slidev4_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 6]]></title>
-      <identifier><![CDATA[slide6]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 6","identifier":"slide6","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"gbptfgo6svu9lw530d":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"59cbvvh2kc5njbn8sn":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev6_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slide Demo 5]]></title>
-      <identifier><![CDATA[slide5]]></identifier>
-      <config><![CDATA[{"title":"Slide Demo 5","identifier":"slide5","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"true","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"dpqinn6pcpbs030dml":{"position":"1","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_01.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption3\"><strong>&amp;<\/strong>style<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"9dup7b509ca00dl6bj":{"position":"2","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_02.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"0km3ac39rga5duf89s":{"position":"3","media_type":"image","video_provider":"","file":"\/h\/o\/home-slidev5_03.jpg","value_id":"","label":"Alothemes","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container-none figcaption\">\r\n\t\t\t\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[Slider Demo 12]]></title>
-      <identifier><![CDATA[slider12]]></identifier>
-      <config><![CDATA[{"magicslider_id":"7","title":"Slider Demo 12","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"400","autoplay-Speed":"6000","padding":"0","media_gallery":{"images":{"wsv7hk24sm":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider1_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t<div class=\"text-slide text-slide3\">\r\n\t\t<h3 class=\"caption1\">new<\/h3>\r\n\t\t<h3 class=\"caption2\">fashion<\/h3>\r\n\t\t<h3 class=\"caption3\"><strong>&<\/strong>style<\/h3>\r\n\t<\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mc6dq17f38o":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider2_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">Lookbook<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">real man<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"wmewcrmkmie":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slider3_12.jpg","value_id":"","label":"Alothemes Milano","link":"http:\/\/alothemes.com\/","caption":"<div class=\"container figcaption\">\r\n\t\t\t<div class=\"text-slide text-slide2\">\r\n\t\t\t\t<h3 class=\"caption1\">spring<\/h3>\r\n\t\t\t\t<h3 class=\"caption2\">collection<\/h3>\r\n\t\t\t<\/div>\r\n\t\t<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide13]]></title>
-      <identifier><![CDATA[slide13]]></identifier>
-      <config><![CDATA[{"magicslider_id":"8","title":"slide13","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"1okd5tr4njke":{"position":"0","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Fashion 2019<\/h3>\r\n        <h3 class=\"caption2\">The new of women <br> collection<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"mw503ww9p2":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slide13-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">      \r\n        <h3 class=\"caption2\">Shopping with us<\/h3>\r\n        <h3 class=\"caption1\">ENJOY WITH <span>25%<\/span> OFF<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"d297alq0p7f":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/sldie13-3.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide3\">\r\n        <h3 class=\"caption1\">Welcome to the<\/h3>\r\n        <h3 class=\"caption2\">allure<span class=\"dot\"><i class=\"fa fa-circle\"><\/i><\/span> fashion brands<\/h3>\r\n        <h3 class=\"caption1\">www.alothemes.com\/<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide15]]></title>
-      <identifier><![CDATA[slide15]]></identifier>
-      <config><![CDATA[{"magicslider_id":"9","title":"slide15","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"15","media_gallery":{"images":{"rks2tfisof":{"position":"1","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>\r\n","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"fcpd9e704va":{"position":"2","media_type":"image","video_provider":"","file":"\/s\/l\/slider15-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">New Pet Collection<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-    <item>
-      <title><![CDATA[slide16]]></title>
-      <identifier><![CDATA[slide16]]></identifier>
-      <config><![CDATA[{"magicslider_id":"10","title":"slide16","status":"1","mobile":"1","portrait":"1","landscape":"1","tablet":"1","notebook":"1","desktop":"1","visible":"1","vertical":"false","infinite":"true","autoplay":"false","arrows":"false","dots":"true","rows":"1","speed":"300","autoplay-Speed":"3000","padding":"0","media_gallery":{"images":{"ha4dftiar5":{"position":"3","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-1.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide1\">\r\n        <h3 class=\"caption1\"><span class=\"letter first\">The<\/span><span class=\"letter second\">Spring<\/span><span class=\"letter third\">Report<\/span><\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""},"544cndkmp91":{"position":"4","media_type":"image","video_provider":"","file":"\/s\/l\/slide16-2.jpg","value_id":"","label":"","link":"#","caption":"<div class=\"container figcaption\">\r\n    <div class=\"text-slide text-slide2\">\r\n        <h3 class=\"caption1\">The Spring Report<\/h3>\r\n        <h3 class=\"caption2\">Enjoy with <span class=\"color\">25%<\/span> off<\/h3>\r\n        <h3 class=\"caption3\"><a class=\"show-now\" href=\"#\">Show now<\/a><\/h3>\r\n    <\/div>\r\n<\/div>","disabled":"0","removed":"","video_url":"","video_title":"","video_description":"","video_metadata":"","role":""}}}}]]></config>
-      <status><![CDATA[1]]></status>
-    </item>
-  </magicslider>
-</root>
diff --git a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/system.xml b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/system.xml
index 5c4603b..4a8c4a7 100644
--- a/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/system.xml
+++ b/app/code/Magiccart/Alothemes/etc/import/Alothemes/milano8/system.xml
@@ -2,21 +2,75 @@
 <root>
   <system>
     <config>
-      <path>alothemes/grid/portrait</path>
-      <value><![CDATA[2]]></value>
+      <path>magepow_ajaxcart/success_popup/continue_button</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
-      <path>alothemes/grid/tablet</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup/product_image_size</path>
+      <value><![CDATA[100]]></value>
     </config>
     <config>
-      <path>alothemes/grid/notebook</path>
-      <value><![CDATA[3]]></value>
+      <path>magepow_ajaxcart/success_popup_design/button_text_color</path>
+      <value><![CDATA[FFFFFF]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/continue_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart</path>
+      <value><![CDATA[1979C3]]></value>
+    </config>
+    <config>
+      <path>magepow_ajaxcart/success_popup_design/viewcart_hover</path>
+      <value><![CDATA[006BB4]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/content</path>
+      <value><![CDATA[We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/button_text</path>
+      <value><![CDATA[Got it!]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/width</path>
+      <value><![CDATA[full-width]]></value>
     </config>
     <config>
-      <path>alothemes/grid/desktop</path>
+      <path>gdpr/cookie_restriction/margin_bottom</path>
+      <value><![CDATA[0]]></value>
+    </config>
+    <config>
+      <path>gdpr/cookie_restriction/text_align</path>
+      <value><![CDATA[left]]></value>
+    </config>
+    <config>
+      <path>magepow_speedoptimizer/general/body_includes</path>
+      <value><![CDATA[
+                    <script type="text/javascript"> 
+                        require(["jquery", "magepow/lazyload", "domReady!"], function($, lazyload){
+                        var imgLazy = $('img.lazyload').not(".loaded"); 
+                        imgLazy.lazyload(); 
+                        imgLazy.on('load',function(){$(this).addClass('loaded');
+                        if($.equalheight) $.fn.equalheight();});
+                        $('body').on('contentUpdated', function () {$(this).find("img.lazyload").not(".loaded").lazyload();});
+                        $('body').removeClass('loading_body');
+                        }); 
+                    </script>]]></value>
+    </config>
+    <config>
+      <path>alothemes/grid/portrait</path>
       <value><![CDATA[2]]></value>
     </config>
+    <config>
+      <path>alothemes/grid/notebook</path>
+      <value><![CDATA[3]]></value>
+    </config>
     <config>
       <path>alothemes/grid_widget/notebook</path>
       <value><![CDATA[3]]></value>
@@ -101,6 +155,10 @@
       <path>alothemes/recentorder/product_ids</path>
       <value><![CDATA[5,75,24]]></value>
     </config>
+    <config>
+      <path>alothemes/recentorder/speed</path>
+      <value><![CDATA[10000]]></value>
+    </config>
     <config>
       <path>alothemes/labels/salePercent</path>
       <value><![CDATA[0]]></value>
@@ -149,6 +207,10 @@
       <path>alothemes/list/padding</path>
       <value><![CDATA[15]]></value>
     </config>
+    <config>
+      <path>alodesign/general/developer</path>
+      <value><![CDATA[0]]></value>
+    </config>
     <config>
       <path>alodesign/base/color</path>
       <value><![CDATA[{"_1460970308665_665":{"title":"Text body","selector":"body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6","color":"#333333","background":"","border":""},"_1460973866805_805":{"title":"Link body","selector":"body.page-layout-1column a,body.page-layout-2columns-left a,body.page-layout-2columns-right a,.block-collapsible-nav .item a","color":"#333333","background":"","border":""},"_1460970355783_783":{"title":"Link body hover","selector":"body a:hover,body a:focus","color":"#ff5555","background":"","border":""},"_1460973917197_197":{"title":"Background body","selector":"body","color":"","background":"#ffffff","border":""},"_1460973918132_132":{"title":"Label New","selector":".labelnew","color":"#ffffff","background":"#ff7171","border":""},"_1460973919478_478":{"title":"Label Sale","selector":".labelsale","color":"#ffffff","background":"#aaaaaa","border":""},"_1460973920300_300":{"title":"Button","selector":"button.button, button, .cart .continue, .actions-toolbar .primary a.action,button:focus,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart","color":"#666666","background":"#ffffff","border":"#aaaaaa"},"_1460973921109_109":{"title":"Button hover","selector":"button.button:hover, button:hover, .cart .continue:hover, .actions-toolbar .primary a.action:hover,.block-wishlist .product-item .product-item-actions .actions-primary .action.tocart:hover","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974143044_44":{"title":"Button checkout","selector":".cart-container .checkout-methods-items .action.primary","color":"#ffffff","background":"#ff5555","border":"#ff5555"},"_1460974161636_636":{"title":"Button checkout hover","selector":".cart-container .checkout-methods-items .action.primary:hover","color":"#242628","background":"#ffffff","border":""},"_1487749465584_584":{"title":"opc-progress-bar","selector":".opc-progress-bar-item:before","color":"","background":"#e4e4e4","border":""},"_1487749465391_391":{"title":"opc-progress-bar after","selector":".opc-progress-bar-item > span:after","color":"#333333","background":"#ffffff","border":""},"_1487749464737_737":{"title":"opc-progress-bar before after","selector":".opc-progress-bar-item > span:before","color":"","background":"#e4e4e4","border":""},"_1487749538580_580":{"title":"opc-progress-bar active","selector":".opc-progress-bar-item._active:before","color":"","background":"#ff5555","border":""},"_1487749537959_959":{"title":"opc-progress-bar active before","selector":".opc-progress-bar-item._active > span:before","color":"","background":"#ff5555","border":""},"_1487750604787_787":{"title":"shipping-address active","selector":".opc-wrapper .shipping-address-item.selected-item","color":"","background":"","border":"#ff5555"},"_1487750605425_425":{"title":"shipping-address active after","selector":".opc-wrapper .shipping-address-item.selected-item:after","color":"#ffffff","background":"#ff5555","border":""},"_1462359190350_350":{"title":"Slide caption1","selector":".home-slider .slick-slide.slick-active .figcaption .caption1","color":"#aaaaaa","background":"","border":""},"_1462359194278_278":{"title":"Slide caption2","selector":".home-slider .slick-slide.slick-active .figcaption .caption2","color":"#000000","background":"","border":""},"_1462359195592_592":{"title":"Slide caption3","selector":".home-slider .slick-slide.slick-active .figcaption .caption3,.caption3 strong","color":"#ffffff","background":"","border":""},"_1462359677068_68":{"title":"Slide2 caption1","selector":".home-slider .slick-slide.slick-active .figcaption .text-slide2 .caption1","color":"#aaaaaa","background":"","border":""}}]]></value>
@@ -179,12 +241,12 @@
 .vmagicmenu .level-top a:hover{color: #ff5555}]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/username</path>
-      <value><![CDATA[mikutas]]></value>
+      <path>alosocial/social/effect</path>
+      <value><![CDATA[swing]]></value>
     </config>
     <config>
-      <path>alosocial/instagram/accessToken</path>
-      <value><![CDATA[]]></value>
+      <path>alosocial/messenger/enabled</path>
+      <value><![CDATA[0]]></value>
     </config>
     <config>
       <path>alosocial/instagram/limit</path>
diff --git a/app/code/Magiccart/Alothemes/view/frontend/layout/alothemes_product_view.xml b/app/code/Magiccart/Alothemes/view/frontend/layout/alothemes_product_view.xml
new file mode 100644
index 0000000..49f244e
--- /dev/null
+++ b/app/code/Magiccart/Alothemes/view/frontend/layout/alothemes_product_view.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0"?>
+<!--
+/**
+ * Copyright © 2015 Magento. All rights reserved.
+ * See COPYING.txt for license details.
+ */
+-->
+<page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
+    <update handle="catalog_product_view" />
+	<body>
+		<referenceContainer name="div.sidebar.additional" remove="true"/>
+        <referenceContainer name="header.container" remove="true"/>
+        <referenceContainer name="footer-container" remove="true"/>
+        <referenceContainer name="sections.page.bottom" remove="true"/>
+        <referenceBlock name="breadcrumbs" remove="true"/>
+        <referenceBlock name="alothemes_header" remove="true"/>
+        <referenceBlock name="product.info.upsell" remove="true"/>
+        <referenceBlock name="catalog.product.related" remove="true"/>
+        <referenceBlock name="product.info.details" remove="true"/>
+        <referenceBlock name="cookie_notices" remove="true"/>
+        <referenceBlock name="product.info.blog.relatedposts" remove="true"/>
+	</body>
+</page>
diff --git a/app/code/Magiccart/Alothemes/view/frontend/layout/default.xml b/app/code/Magiccart/Alothemes/view/frontend/layout/default.xml
index 3014df3..5877e41 100755
--- a/app/code/Magiccart/Alothemes/view/frontend/layout/default.xml
+++ b/app/code/Magiccart/Alothemes/view/frontend/layout/default.xml
@@ -29,9 +29,9 @@
 			<block class="Magiccart\Alothemes\Block\Themecfg" name="alo.themecfg" template="themecfg.phtml" />
 		</referenceBlock>
 	    <referenceContainer name="before.body.end">
-	    	<block class="Magiccart\Alothemes\Block\Social" name="social.profile" template="social.phtml" />
-	    	<block class="Magiccart\Alothemes\Block\Messenger" name="social.messenger" template="messenger.phtml" />
-	    	<block class="Magiccart\Alothemes\Block\RecentOrder" name="alothemes.recent.order" template="recentorder.phtml" />
+	    	<block class="Magiccart\Alothemes\Block\Social" ifconfig="alosocial/enabled/enabled" name="social.profile" template="social.phtml" />
+	    	<block class="Magiccart\Alothemes\Block\Messenger" ifconfig="alosocial/messenger/enabled" name="social.messenger" template="messenger.phtml" />
+	    	<block class="Magiccart\Alothemes\Block\RecentOrder" ifconfig="alothemes/recentorder/enabled" name="alothemes.recent.order" template="recentorder.phtml" />
 	    </referenceContainer>
 	</body>
 </page>
diff --git a/app/code/Magiccart/Alothemes/view/frontend/templates/recentorder.phtml b/app/code/Magiccart/Alothemes/view/frontend/templates/recentorder.phtml
index 3f69553..bcd191c 100644
--- a/app/code/Magiccart/Alothemes/view/frontend/templates/recentorder.phtml
+++ b/app/code/Magiccart/Alothemes/view/frontend/templates/recentorder.phtml
@@ -16,7 +16,11 @@ use Magento\Framework\App\Action\Action;
  */
 ?>
 <?php $selector = 'alo-content-'. uniqid(); ?>
-<div class= "<?php /* @escapeNotVerified */ echo $selector?> recentorder suggest-slider">
+<div class= "<?php /* @escapeNotVerified */ echo $selector?> recentorder suggest-slider autoplay" 
+		data-autoplay="<?php echo $this->getWidgetCfg('autoplay') ?>" 
+		data-firsttime="<?php echo $this->getWidgetCfg('firsttime') ?>" 
+		data-speed="<?php echo $this->getWidgetCfg('speed') ?>" 
+	>
 	<div class="notify-slider-wrapper content-products"       
 	>
 		<?php
@@ -63,7 +67,15 @@ use Magento\Framework\App\Action\Action;
 		                    <?php // Product Image ?>
 		                    <div class="images-container">
 		                        <div class="product-hover">
-		                            <?php echo $_aloHelper->getLabels($_product); ?>
+								    <?php $product_label = $_aloHelper->getLabels($_product); 
+			                            if($product_label) :
+										?>
+										<div class="product-label-2">
+			                            <div class="product-label">
+			                                <?php echo $product_label; ?>
+			                            </div>
+										</div>
+									<?php endif ?>
 		                            <?php //echo $_aloHelper->getTimer($_product); ?>
 		                            <a href="<?php /* @escapeNotVerified */ echo $_product->getProductUrl() ?>" class="product photo product-item-photo" tabindex="-1">
 		                                <?php echo $productImage->toHtml(); ?>
@@ -128,6 +140,7 @@ use Magento\Framework\App\Action\Action;
 		                        <?php endif; ?>
 		                    </div>
 		                    <div class="product details product-item-details products-textlink clearfix">
+		                    	<div class="someone-purchased"><?php echo __('Someone purchased a')?></div>
 		                        <?php
 		                            $_productNameStripped = $block->stripTags($_product->getName(), null, true);
 		                        ?>
@@ -137,6 +150,13 @@ use Magento\Framework\App\Action\Action;
 		                                <?php /* @escapeNotVerified */ echo $_helper->productAttribute($_product, $_product->getName(), 'name'); ?>
 		                            </a>
 		                        </h2>
+		                        <?php 
+		                        	$info = $this->getInfoPurchased($_product);
+		                        	if($info) :
+		                         ?>
+			                        <span class="time-purchased"><?php echo $this->getInfoTime($info['time']) ?></span>
+			                        <span class="address-purchased"><?php echo $info['address'] ?></span>
+			                    <?php endif; ?>
 		                        <?php echo $showReview ? $block->getReviewsSummaryHtml($_product, $templateType) : ''; ?>
 		                        <?php /* @escapeNotVerified */ echo $block->getProductPrice($_product) ?>
 		                        <?php echo $block->getProductDetailsHtml($_product); ?>
@@ -159,46 +179,4 @@ use Magento\Framework\App\Action\Action;
 		<?php endif; ?>
 		</div>
 	</div>
-</div>
-<style type="text/css">
-	.suggest-slider.close {
-	    display: none;
-	}
-	.suggest-slider .x-close {float: right;}
-	.notify-slider-wrapper {
-	    width:300px;
-	    position: fixed;
-	    bottom: 15px;
-	    left: 25px;
-	    background: transparent;
-	    display: none;
-	}
-
-	.notify-slider {
-	  position: relative;
-	  overflow: hidden;
-	  margin: 20px auto 0 auto;
-	  border-radius: 4px;
-	}
-
-	.notify-slider .slider {
-	  position: relative;
-	  margin: 0;
-	  padding: 0;
-	  height: 100px;
-	  list-style: none;
-	}
-
-	.notify-slider .slider >.item {
-	  position: relative;
-	  display: block;
-	  float: left;
-	  margin: 0;
-	  padding: 0;
-	  width: 300px;
-	  height: 100px;
-	  background: #ccc;
-	  text-align: center;
-	  line-height: 100px;
-	}	
-</style>
\ No newline at end of file
+</div>
\ No newline at end of file
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/css/plugins/jquery.fancybox.css b/app/code/Magiccart/Alothemes/view/frontend/web/css/plugins/jquery.fancybox.css
deleted file mode 100755
index c3a460e..0000000
--- a/app/code/Magiccart/Alothemes/view/frontend/web/css/plugins/jquery.fancybox.css
+++ /dev/null
@@ -1,264 +0,0 @@
-/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
-.fancybox-wrap,
-.fancybox-skin,
-.fancybox-outer,
-.fancybox-inner,
-.fancybox-image,
-.fancybox-wrap iframe,
-.fancybox-wrap object,
-.fancybox-nav,
-.fancybox-nav span,
-.fancybox-tmp
-{
-	padding: 0;
-	margin: 0;
-	border: 0;
-	outline: none;
-	vertical-align: top;
-}
-
-.fancybox-wrap {
-	position: absolute;
-	top: 0;
-	left: 0;
-	z-index: 8020;
-}
-
-.fancybox-skin {
-	position: relative;
-	background: #fff;
-	color: #444;
-	text-shadow: none;
-}
-
-.fancybox-opened {
-	z-index: 10001;
-}
-
-.fancybox-opened .fancybox-skin {
-	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
-	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
-	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
-}
-
-.fancybox-outer, .fancybox-inner {
-	position: relative;
-}
-
-.fancybox-inner {
-	overflow: hidden;
-}
-
-.fancybox-type-iframe .fancybox-inner {
-	-webkit-overflow-scrolling: touch;
-}
-
-.fancybox-error {
-	color: #444;
-	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
-	margin: 0;
-	padding: 15px;
-	white-space: nowrap;
-}
-
-.fancybox-image, .fancybox-iframe {
-	display: block;
-	width: 100%;
-	height: 100%;
-}
-
-.fancybox-image {
-	max-width: 100%;
-	max-height: 100%;
-}
-
-#fancybox-loading, .fancybox-prev span, .fancybox-next span {
-	background-image: url('../images/fancybox/fancybox_sprite.png');
-}
-
-#fancybox-loading {
-	position: fixed;
-	top: 50%;
-	left: 50%;
-	margin-top: -22px;
-	margin-left: -22px;
-	background-position: 0 -108px;
-	opacity: 0.8;
-	cursor: pointer;
-	z-index: 8060;
-}
-
-#fancybox-loading div {
-	width: 44px;
-	height: 44px;
-	background: url('../images/fancybox/fancybox_loading.gif') center center no-repeat;
-}
-
-.fancybox-close {
-	position: absolute;
-	top: 6px;
-	right: 6px;
-	width: 10px;
-	height: 10px;
-	cursor: pointer;
-	z-index: 8040;
-	background-color:transparent;
-	background-image: url('../images/fancybox/close-button.png');
-	background-position:0px 0px;
-	background-repeat: no-repeat;
-}
-.fancybox-close:hover{
-	background-position: 0px 0px;
-}
-.product-view.product-quickview .container-quickview .product-img-box .more-views .bx-wrapper{margin-bottom:0;}
-.fancybox-nav {
-	position: absolute;
-	top: 0;
-	width: 40%;
-	height: 100%;
-	cursor: pointer;
-	text-decoration: none;
-	background: transparent url('../images/fancybox/blank.gif'); /* helps IE */
-	-webkit-tap-highlight-color: rgba(0,0,0,0);
-	z-index: 8040;
-}
-
-.fancybox-prev {
-	left: 0;
-}
-
-.fancybox-next {
-	right: 0;
-}
-
-.fancybox-nav span {
-	position: absolute;
-	top: 50%;
-	width: 36px;
-	height: 34px;
-	margin-top: -18px;
-	cursor: pointer;
-	z-index: 8040;
-	visibility: hidden;
-}
-
-.fancybox-prev span {
-	left: 10px;
-	background-position: 0 -36px;
-}
-
-.fancybox-next span {
-	right: 10px;
-	background-position: 0 -72px;
-}
-
-.fancybox-nav:hover span {
-	visibility: visible;
-}
-
-.fancybox-tmp {
-	position: absolute;
-	top: -99999px;
-	left: -99999px;
-	visibility: hidden;
-	max-width: 99999px;
-	max-height: 99999px;
-	overflow: visible !important;
-}
-
-/* Overlay helper */
-
-.fancybox-lock {
-    overflow: hidden !important;
-    width: auto;
-}
-
-.fancybox-lock body {
-    overflow: hidden !important;
-}
-
-.fancybox-lock-test {
-    overflow-y: hidden !important;
-}
-
-.fancybox-overlay {
-	position: absolute;
-	top: 0;
-	left: 0;
-	overflow: hidden;
-	display: none;
-	z-index: 10000;
-	background: url('../images/fancybox/fancybox_overlay.png');
-}
-
-.fancybox-overlay-fixed {
-	position: fixed;
-	bottom: 0;
-	right: 0;
-}
-
-.fancybox-lock .fancybox-overlay {
-	overflow: auto;
-	overflow-y: scroll;
-}
-
-/* Title helper */
-
-.fancybox-title {
-	visibility: hidden;
-	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
-	position: relative;
-	text-shadow: none;
-	z-index: 8050;
-}
-
-.fancybox-opened .fancybox-title {
-	visibility: visible;
-}
-
-.fancybox-title-float-wrap {
-	position: absolute;
-	bottom: 0;
-	right: 50%;
-	margin-bottom: -35px;
-	z-index: 8050;
-	text-align: center;
-}
-
-.fancybox-title-float-wrap .child {
-	display: inline-block;
-	margin-right: -100%;
-	padding: 2px 20px;
-	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
-	background: rgba(0, 0, 0, 0.8);
-	-webkit-border-radius: 15px;
-	   -moz-border-radius: 15px;
-	        border-radius: 15px;
-	text-shadow: 0 1px 2px #222;
-	color: #FFF;
-	font-weight: bold;
-	line-height: 24px;
-	white-space: nowrap;
-}
-
-.fancybox-title-outside-wrap {
-	position: relative;
-	margin-top: 10px;
-	color: #fff;
-}
-
-.fancybox-title-inside-wrap {
-	padding-top: 10px;
-}
-
-.fancybox-title-over-wrap {
-	position: absolute;
-	bottom: 0;
-	left: 0;
-	color: #fff;
-	padding: 10px;
-	background: #000;
-	background: rgba(0, 0, 0, .8);
-}
-
-
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/css/source/module/_slick-theme.less b/app/code/Magiccart/Alothemes/view/frontend/web/css/source/module/_slick-theme.less
index 20c6787..6607a9e 100644
--- a/app/code/Magiccart/Alothemes/view/frontend/web/css/source/module/_slick-theme.less
+++ b/app/code/Magiccart/Alothemes/view/frontend/web/css/source/module/_slick-theme.less
@@ -4,7 +4,7 @@
 
 @slick-font-path: "./fonts/";
 @slick-font-family: "slick";
-@slick-loader-path: "./";
+@slick-loader-path: "../";
 @slick-arrow-color: white;
 @slick-dot-color: black;
 @slick-dot-color-active: @slick-dot-color;
@@ -18,7 +18,7 @@
 & when (@media-common = true) {
     /* Slider */
     .slick-loading .slick-list{
-        background: #fff url('@{slick-loader-path}ajax-loader.gif') center center no-repeat;
+        background: #fff url('@{slick-loader-path}images/loader-1.gif') center center no-repeat;
     }
 
     /* Arrows */
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow-left.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow-left.png
deleted file mode 100755
index 91bdbe2..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow-left.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow-pause.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow-pause.png
deleted file mode 100755
index 63b3363..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow-pause.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow-play.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow-play.png
deleted file mode 100755
index 02aa116..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow-play.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow-right.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow-right.png
deleted file mode 100755
index 0d96594..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow-right.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow.png
deleted file mode 100755
index 6868321..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/arrow.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/bg_direction_nav.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/bg_direction_nav.png
deleted file mode 100755
index de3fe04..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/bg_direction_nav.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/close-button.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/close-button.png
deleted file mode 100755
index b66a87d..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/close-button.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/close-tiny.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/close-tiny.png
deleted file mode 100755
index 9401f05..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/close-tiny.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/close.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/close.png
deleted file mode 100755
index e24d100..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/close.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/cs_leftImg.jpg b/app/code/Magiccart/Alothemes/view/frontend/web/images/cs_leftImg.jpg
deleted file mode 100755
index 7480908..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/cs_leftImg.jpg and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/cs_rightImg.jpg b/app/code/Magiccart/Alothemes/view/frontend/web/images/cs_rightImg.jpg
deleted file mode 100755
index 592e310..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/cs_rightImg.jpg and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/loading/loading.gif b/app/code/Magiccart/Alothemes/view/frontend/web/images/loading.gif
similarity index 100%
rename from app/code/Magiccart/Alothemes/view/frontend/web/images/loading/loading.gif
rename to app/code/Magiccart/Alothemes/view/frontend/web/images/loading.gif
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex1.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex1.png
deleted file mode 100755
index f23c1bd..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex1.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex2.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex2.png
deleted file mode 100755
index f6abd20..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex2.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex3.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex3.png
deleted file mode 100755
index 4d7e735..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex3.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex4.PNG b/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex4.PNG
deleted file mode 100755
index bd22e61..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex4.PNG and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex5.PNG b/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex5.PNG
deleted file mode 100755
index b32bee4..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/position/bannerslider-ex5.PNG and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/rule_chooser_trigger.gif b/app/code/Magiccart/Alothemes/view/frontend/web/images/rule_chooser_trigger.gif
deleted file mode 100755
index 673d31a..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/rule_chooser_trigger.gif and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide1/jquery-slider-rotator-left.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/slide1/jquery-slider-rotator-left.png
deleted file mode 100755
index ae2077f..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide1/jquery-slider-rotator-left.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide1/jquery-slider-rotator-right.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/slide1/jquery-slider-rotator-right.png
deleted file mode 100755
index 9340ceb..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide1/jquery-slider-rotator-right.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide1/jquery-slider-theme.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/slide1/jquery-slider-theme.png
deleted file mode 100755
index 592d120..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide1/jquery-slider-theme.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide1/vssver2.scc b/app/code/Magiccart/Alothemes/view/frontend/web/images/slide1/vssver2.scc
deleted file mode 100755
index a16a41f..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide1/vssver2.scc and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide2/jquery-slider-theme.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/slide2/jquery-slider-theme.png
deleted file mode 100755
index 845838b..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide2/jquery-slider-theme.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide2/vssver2.scc b/app/code/Magiccart/Alothemes/view/frontend/web/images/slide2/vssver2.scc
deleted file mode 100755
index 22ae9a3..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide2/vssver2.scc and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide3/jquery-slider-theme.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/slide3/jquery-slider-theme.png
deleted file mode 100755
index ca186e0..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide3/jquery-slider-theme.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide3/vssver2.scc b/app/code/Magiccart/Alothemes/view/frontend/web/images/slide3/vssver2.scc
deleted file mode 100755
index ad8b1ce..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide3/vssver2.scc and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide4/jquery-slider-theme.png b/app/code/Magiccart/Alothemes/view/frontend/web/images/slide4/jquery-slider-theme.png
deleted file mode 100755
index 22d063a..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide4/jquery-slider-theme.png and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide4/vssver2.scc b/app/code/Magiccart/Alothemes/view/frontend/web/images/slide4/vssver2.scc
deleted file mode 100755
index f40ce89..0000000
Binary files a/app/code/Magiccart/Alothemes/view/frontend/web/images/slide4/vssver2.scc and /dev/null differ
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/js/alothemes.js b/app/code/Magiccart/Alothemes/view/frontend/web/js/alothemes.js
index 8a76fe9..1e80282 100755
--- a/app/code/Magiccart/Alothemes/view/frontend/web/js/alothemes.js
+++ b/app/code/Magiccart/Alothemes/view/frontend/web/js/alothemes.js
@@ -166,14 +166,12 @@ define([
 	      	var defaults = {
 		        autoplay   : true,
 		        firsttime  : 3000,
-		        timeout    : 3000,
-		        interval   : 10000
+		        speed      : 9000
 	      	};
 
 			var settings    = $.extend(defaults, options);
-			var firsttime   = settings.firsttime;
-			var timeout     = settings.timeout;
-			var interval    = settings.interval;
+			var firsttime   = parseInt(settings.firsttime);
+			var speed    	= parseInt(settings.speed);
 			var autoplay    = settings.autoplay;
 
 	      	var methods = {
@@ -192,22 +190,24 @@ define([
 		            var slideWidth    = suggest.find('.slider >.item').width();
 		            var slideHeight   = suggest.find('.slider >.item').height();
 		            var sliderUlWidth = slideCount * slideWidth;
-		            // suggest.find('.notify-slider').css({ width: slideWidth, height: slideHeight });
-					suggest.find('.notify-slider .slider').css({ width: sliderUlWidth});
+		            /*suggest.find('.notify-slider').css({ width: slideWidth, height: slideHeight });*/
+		            suggest.find('.notify-slider .slider').css({ width: sliderUlWidth});
 		            suggest.find('.notify-slider .slider >.item:last-child').prependTo('.notify-slider .slider');
-		            setTimeout(function(){ el.slideDown('slow'); }, firsttime);
-		            if(!autoplay) return;
-		            setInterval(function () {
-		                el.slideUp({
-		                        duration:'slow', 
-		                        easing: 'swing',
-		                        complete: function(){
-		                            methods.moveRight(suggest, slideWidth);
-		                            setTimeout(function(){ el.slideDown('slow'); }, timeout);
-		                        }
-		                    });
-
-		            }, interval);
+		            setTimeout(function(){
+		            	el.slideDown('slow'); 
+			            if(!autoplay) return;
+			            setInterval(function () {
+			                el.slideUp({
+			                        duration:'slow', 
+			                        easing: 'swing',
+			                        complete: function(){
+			                            methods.moveRight(suggest, slideWidth);
+			                            setTimeout(function(){ el.slideDown('slow'); }, speed/2);
+			                        }
+			                    });
+
+			            }, speed);
+		            }, firsttime);
 		        },
 
 		        moveRight: function(suggest, slideWidth){
@@ -222,9 +222,9 @@ define([
 
 	      	};
 
-	      	if (methods[options]) { // $("#element").pluginName('methodName', 'arg1', 'arg2');
+	      	if (methods[options]) {
 	        	return methods[options].apply(this, Array.prototype.slice.call(arguments, 1));
-	      	} else if (typeof options === 'object' || !options) { // $("#element").pluginName({ option: 1, option:2 });
+	      	} else if (typeof options === 'object' || !options) {
 	        	return methods.init.apply(this);
 	      	} else {
 	        	$.error('Method "' + method + '" does not exist in timer plugin!');
@@ -573,13 +573,6 @@ define([
 			});
 			$("#delivery-return-popup").modal("openModal");
 		});
-
-		if ($.cookie('user_allowed_save_cookie') === null || $.cookie('user_allowed_save_cookie') === "" || $.cookie('user_allowed_save_cookie') === "null" || $.cookie('user_allowed_save_cookie') === undefined){
-			$('body').addClass('cookie-message')
-		}
-		$('#btn-cookie-allow').click(function(){
-			$('body').removeClass('cookie-message')
-		})
 	
 	});
 
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/js/plugins/jquery.fancybox.pack.js b/app/code/Magiccart/Alothemes/view/frontend/web/js/plugins/jquery.fancybox.pack.js
deleted file mode 100755
index 73f7578..0000000
--- a/app/code/Magiccart/Alothemes/view/frontend/web/js/plugins/jquery.fancybox.pack.js
+++ /dev/null
@@ -1,46 +0,0 @@
-/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
-(function(r,G,f,v){var J=f("html"),n=f(r),p=f(G),b=f.fancybox=function(){b.open.apply(this,arguments)},I=navigator.userAgent.match(/msie/i),B=null,s=G.createTouch!==v,t=function(a){return a&&a.hasOwnProperty&&a instanceof f},q=function(a){return a&&"string"===f.type(a)},E=function(a){return q(a)&&0<a.indexOf("%")},l=function(a,d){var e=parseInt(a,10)||0;d&&E(a)&&(e*=b.getViewport()[d]/100);return Math.ceil(e)},w=function(a,b){return l(a,b)+"px"};f.extend(b,{version:"2.1.5",defaults:{padding:15,margin:20,
-width:800,height:600,minWidth:100,minHeight:100,maxWidth:9999,maxHeight:9999,pixelRatio:1,autoSize:!0,autoHeight:!1,autoWidth:!1,autoResize:!0,autoCenter:!s,fitToView:!0,aspectRatio:!1,topRatio:0.5,leftRatio:0.5,scrolling:"auto",wrapCSS:"",arrows:!0,closeBtn:!0,closeClick:!1,nextClick:!1,mouseWheel:!0,autoPlay:!1,playSpeed:3E3,preload:3,modal:!1,loop:!0,ajax:{dataType:"html",headers:{"X-fancyBox":!0}},iframe:{scrolling:"auto",preload:!0},swf:{wmode:"transparent",allowfullscreen:"true",allowscriptaccess:"always"},
-keys:{next:{13:"left",34:"up",39:"left",40:"up"},prev:{8:"right",33:"down",37:"right",38:"down"},close:[27],play:[32],toggle:[70]},direction:{next:"left",prev:"right"},scrollOutside:!0,index:0,type:null,href:null,content:null,title:null,tpl:{wrap:'<div class="fancybox-wrap" tabIndex="-1"><div class="fancybox-skin"><div class="fancybox-outer"><div class="fancybox-inner"></div></div></div></div>',image:'<img class="fancybox-image" src="{href}" alt="" />',iframe:'<iframe id="fancybox-frame{rnd}" name="fancybox-frame{rnd}" class="fancybox-iframe" frameborder="0" vspace="0" hspace="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen'+
-(I?' allowtransparency="true"':"")+"></iframe>",error:'<p class="fancybox-error">The requested content cannot be loaded.<br/>Please try again later.</p>',closeBtn:'<a title="Close" class="fancybox-item fancybox-close" href="javascript:;"></a>',next:'<a title="Next" class="fancybox-nav fancybox-next" href="javascript:;"><span></span></a>',prev:'<a title="Previous" class="fancybox-nav fancybox-prev" href="javascript:;"><span></span></a>'},openEffect:"fade",openSpeed:250,openEasing:"swing",openOpacity:!0,
-openMethod:"zoomIn",closeEffect:"fade",closeSpeed:250,closeEasing:"swing",closeOpacity:!0,closeMethod:"zoomOut",nextEffect:"elastic",nextSpeed:250,nextEasing:"swing",nextMethod:"changeIn",prevEffect:"elastic",prevSpeed:250,prevEasing:"swing",prevMethod:"changeOut",helpers:{overlay:!0,title:!0},onCancel:f.noop,beforeLoad:f.noop,afterLoad:f.noop,beforeShow:f.noop,afterShow:f.noop,beforeChange:f.noop,beforeClose:f.noop,afterClose:f.noop},group:{},opts:{},previous:null,coming:null,current:null,isActive:!1,
-isOpen:!1,isOpened:!1,wrap:null,skin:null,outer:null,inner:null,player:{timer:null,isActive:!1},ajaxLoad:null,imgPreload:null,transitions:{},helpers:{},open:function(a,d){if(a&&(f.isPlainObject(d)||(d={}),!1!==b.close(!0)))return f.isArray(a)||(a=t(a)?f(a).get():[a]),f.each(a,function(e,c){var k={},g,h,j,m,l;"object"===f.type(c)&&(c.nodeType&&(c=f(c)),t(c)?(k={href:c.data("fancybox-href")||c.attr("href"),title:c.data("fancybox-title")||c.attr("title"),isDom:!0,element:c},f.metadata&&f.extend(!0,k,
-c.metadata())):k=c);g=d.href||k.href||(q(c)?c:null);h=d.title!==v?d.title:k.title||"";m=(j=d.content||k.content)?"html":d.type||k.type;!m&&k.isDom&&(m=c.data("fancybox-type"),m||(m=(m=c.prop("class").match(/fancybox\.(\w+)/))?m[1]:null));q(g)&&(m||(b.isImage(g)?m="image":b.isSWF(g)?m="swf":"#"===g.charAt(0)?m="inline":q(c)&&(m="html",j=c)),"ajax"===m&&(l=g.split(/\s+/,2),g=l.shift(),l=l.shift()));j||("inline"===m?g?j=f(q(g)?g.replace(/.*(?=#[^\s]+$)/,""):g):k.isDom&&(j=c):"html"===m?j=g:!m&&(!g&&
-k.isDom)&&(m="inline",j=c));f.extend(k,{href:g,type:m,content:j,title:h,selector:l});a[e]=k}),b.opts=f.extend(!0,{},b.defaults,d),d.keys!==v&&(b.opts.keys=d.keys?f.extend({},b.defaults.keys,d.keys):!1),b.group=a,b._start(b.opts.index)},cancel:function(){var a=b.coming;a&&!1!==b.trigger("onCancel")&&(b.hideLoading(),b.ajaxLoad&&b.ajaxLoad.abort(),b.ajaxLoad=null,b.imgPreload&&(b.imgPreload.onload=b.imgPreload.onerror=null),a.wrap&&a.wrap.stop(!0,!0).trigger("onReset").remove(),b.coming=null,b.current||
-b._afterZoomOut(a))},close:function(a){b.cancel();!1!==b.trigger("beforeClose")&&(b.unbindEvents(),b.isActive&&(!b.isOpen||!0===a?(f(".fancybox-wrap").stop(!0).trigger("onReset").remove(),b._afterZoomOut()):(b.isOpen=b.isOpened=!1,b.isClosing=!0,f(".fancybox-item, .fancybox-nav").remove(),b.wrap.stop(!0,!0).removeClass("fancybox-opened"),b.transitions[b.current.closeMethod]())))},play:function(a){var d=function(){clearTimeout(b.player.timer)},e=function(){d();b.current&&b.player.isActive&&(b.player.timer=
-setTimeout(b.next,b.current.playSpeed))},c=function(){d();p.unbind(".player");b.player.isActive=!1;b.trigger("onPlayEnd")};if(!0===a||!b.player.isActive&&!1!==a){if(b.current&&(b.current.loop||b.current.index<b.group.length-1))b.player.isActive=!0,p.bind({"onCancel.player beforeClose.player":c,"onUpdate.player":e,"beforeLoad.player":d}),e(),b.trigger("onPlayStart")}else c()},next:function(a){var d=b.current;d&&(q(a)||(a=d.direction.next),b.jumpto(d.index+1,a,"next"))},prev:function(a){var d=b.current;
-d&&(q(a)||(a=d.direction.prev),b.jumpto(d.index-1,a,"prev"))},jumpto:function(a,d,e){var c=b.current;c&&(a=l(a),b.direction=d||c.direction[a>=c.index?"next":"prev"],b.router=e||"jumpto",c.loop&&(0>a&&(a=c.group.length+a%c.group.length),a%=c.group.length),c.group[a]!==v&&(b.cancel(),b._start(a)))},reposition:function(a,d){var e=b.current,c=e?e.wrap:null,k;c&&(k=b._getPosition(d),a&&"scroll"===a.type?(delete k.position,c.stop(!0,!0).animate(k,200)):(c.css(k),e.pos=f.extend({},e.dim,k)))},update:function(a){var d=
-a&&a.type,e=!d||"orientationchange"===d;e&&(clearTimeout(B),B=null);b.isOpen&&!B&&(B=setTimeout(function(){var c=b.current;c&&!b.isClosing&&(b.wrap.removeClass("fancybox-tmp"),(e||"load"===d||"resize"===d&&c.autoResize)&&b._setDimension(),"scroll"===d&&c.canShrink||b.reposition(a),b.trigger("onUpdate"),B=null)},e&&!s?0:300))},toggle:function(a){b.isOpen&&(b.current.fitToView="boolean"===f.type(a)?a:!b.current.fitToView,s&&(b.wrap.removeAttr("style").addClass("fancybox-tmp"),b.trigger("onUpdate")),
-b.update())},hideLoading:function(){p.unbind(".loading");f("#fancybox-loading").remove()},showLoading:function(){var a,d;b.hideLoading();a=f('<div id="fancybox-loading"><div></div></div>').click(b.cancel).appendTo("body");p.bind("keydown.loading",function(a){if(27===(a.which||a.keyCode))a.preventDefault(),b.cancel()});b.defaults.fixed||(d=b.getViewport(),a.css({position:"absolute",top:0.5*d.h+d.y,left:0.5*d.w+d.x}))},getViewport:function(){var a=b.current&&b.current.locked||!1,d={x:n.scrollLeft(),
-y:n.scrollTop()};a?(d.w=a[0].clientWidth,d.h=a[0].clientHeight):(d.w=s&&r.innerWidth?r.innerWidth:n.width(),d.h=s&&r.innerHeight?r.innerHeight:n.height());return d},unbindEvents:function(){b.wrap&&t(b.wrap)&&b.wrap.unbind(".fb");p.unbind(".fb");n.unbind(".fb")},bindEvents:function(){var a=b.current,d;a&&(n.bind("orientationchange.fb"+(s?"":" resize.fb")+(a.autoCenter&&!a.locked?" scroll.fb":""),b.update),(d=a.keys)&&p.bind("keydown.fb",function(e){var c=e.which||e.keyCode,k=e.target||e.srcElement;
-if(27===c&&b.coming)return!1;!e.ctrlKey&&(!e.altKey&&!e.shiftKey&&!e.metaKey&&(!k||!k.type&&!f(k).is("[contenteditable]")))&&f.each(d,function(d,k){if(1<a.group.length&&k[c]!==v)return b[d](k[c]),e.preventDefault(),!1;if(-1<f.inArray(c,k))return b[d](),e.preventDefault(),!1})}),f.fn.mousewheel&&a.mouseWheel&&b.wrap.bind("mousewheel.fb",function(d,c,k,g){for(var h=f(d.target||null),j=!1;h.length&&!j&&!h.is(".fancybox-skin")&&!h.is(".fancybox-wrap");)j=h[0]&&!(h[0].style.overflow&&"hidden"===h[0].style.overflow)&&
-(h[0].clientWidth&&h[0].scrollWidth>h[0].clientWidth||h[0].clientHeight&&h[0].scrollHeight>h[0].clientHeight),h=f(h).parent();if(0!==c&&!j&&1<b.group.length&&!a.canShrink){if(0<g||0<k)b.prev(0<g?"down":"left");else if(0>g||0>k)b.next(0>g?"up":"right");d.preventDefault()}}))},trigger:function(a,d){var e,c=d||b.coming||b.current;if(c){f.isFunction(c[a])&&(e=c[a].apply(c,Array.prototype.slice.call(arguments,1)));if(!1===e)return!1;c.helpers&&f.each(c.helpers,function(d,e){if(e&&b.helpers[d]&&f.isFunction(b.helpers[d][a]))b.helpers[d][a](f.extend(!0,
-{},b.helpers[d].defaults,e),c)});p.trigger(a)}},isImage:function(a){return q(a)&&a.match(/(^data:image\/.*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg)((\?|#).*)?$)/i)},isSWF:function(a){return q(a)&&a.match(/\.(swf)((\?|#).*)?$/i)},_start:function(a){var d={},e,c;a=l(a);e=b.group[a]||null;if(!e)return!1;d=f.extend(!0,{},b.opts,e);e=d.margin;c=d.padding;"number"===f.type(e)&&(d.margin=[e,e,e,e]);"number"===f.type(c)&&(d.padding=[c,c,c,c]);d.modal&&f.extend(!0,d,{closeBtn:!1,closeClick:!1,nextClick:!1,arrows:!1,
-mouseWheel:!1,keys:null,helpers:{overlay:{closeClick:!1}}});d.autoSize&&(d.autoWidth=d.autoHeight=!0);"auto"===d.width&&(d.autoWidth=!0);"auto"===d.height&&(d.autoHeight=!0);d.group=b.group;d.index=a;b.coming=d;if(!1===b.trigger("beforeLoad"))b.coming=null;else{c=d.type;e=d.href;if(!c)return b.coming=null,b.current&&b.router&&"jumpto"!==b.router?(b.current.index=a,b[b.router](b.direction)):!1;b.isActive=!0;if("image"===c||"swf"===c)d.autoHeight=d.autoWidth=!1,d.scrolling="visible";"image"===c&&(d.aspectRatio=
-!0);"iframe"===c&&s&&(d.scrolling="scroll");d.wrap=f(d.tpl.wrap).addClass("fancybox-"+(s?"mobile":"desktop")+" fancybox-type-"+c+" fancybox-tmp "+d.wrapCSS).appendTo(d.parent||"body");f.extend(d,{skin:f(".fancybox-skin",d.wrap),outer:f(".fancybox-outer",d.wrap),inner:f(".fancybox-inner",d.wrap)});f.each(["Top","Right","Bottom","Left"],function(a,b){d.skin.css("padding"+b,w(d.padding[a]))});b.trigger("onReady");if("inline"===c||"html"===c){if(!d.content||!d.content.length)return b._error("content")}else if(!e)return b._error("href");
-"image"===c?b._loadImage():"ajax"===c?b._loadAjax():"iframe"===c?b._loadIframe():b._afterLoad()}},_error:function(a){f.extend(b.coming,{type:"html",autoWidth:!0,autoHeight:!0,minWidth:0,minHeight:0,scrolling:"no",hasError:a,content:b.coming.tpl.error});b._afterLoad()},_loadImage:function(){var a=b.imgPreload=new Image;a.onload=function(){this.onload=this.onerror=null;b.coming.width=this.width/b.opts.pixelRatio;b.coming.height=this.height/b.opts.pixelRatio;b._afterLoad()};a.onerror=function(){this.onload=
-this.onerror=null;b._error("image")};a.src=b.coming.href;!0!==a.complete&&b.showLoading()},_loadAjax:function(){var a=b.coming;b.showLoading();b.ajaxLoad=f.ajax(f.extend({},a.ajax,{url:a.href,error:function(a,e){b.coming&&"abort"!==e?b._error("ajax",a):b.hideLoading()},success:function(d,e){"success"===e&&(a.content=d,b._afterLoad())}}))},_loadIframe:function(){var a=b.coming,d=f(a.tpl.iframe.replace(/\{rnd\}/g,(new Date).getTime())).attr("scrolling",s?"auto":a.iframe.scrolling).attr("src",a.href);
-f(a.wrap).bind("onReset",function(){try{f(this).find("iframe").hide().attr("src","//about:blank").end().empty()}catch(a){}});a.iframe.preload&&(b.showLoading(),d.one("load",function(){f(this).data("ready",1);s||f(this).bind("load.fb",b.update);f(this).parents(".fancybox-wrap").width("100%").removeClass("fancybox-tmp").show();b._afterLoad()}));a.content=d.appendTo(a.inner);a.iframe.preload||b._afterLoad()},_preloadImages:function(){var a=b.group,d=b.current,e=a.length,c=d.preload?Math.min(d.preload,
-e-1):0,f,g;for(g=1;g<=c;g+=1)f=a[(d.index+g)%e],"image"===f.type&&f.href&&((new Image).src=f.href)},_afterLoad:function(){var a=b.coming,d=b.current,e,c,k,g,h;b.hideLoading();if(a&&!1!==b.isActive)if(!1===b.trigger("afterLoad",a,d))a.wrap.stop(!0).trigger("onReset").remove(),b.coming=null;else{d&&(b.trigger("beforeChange",d),d.wrap.stop(!0).removeClass("fancybox-opened").find(".fancybox-item, .fancybox-nav").remove());b.unbindEvents();e=a.content;c=a.type;k=a.scrolling;f.extend(b,{wrap:a.wrap,skin:a.skin,
-outer:a.outer,inner:a.inner,current:a,previous:d});g=a.href;switch(c){case "inline":case "ajax":case "html":a.selector?e=f("<div>").html(e).find(a.selector):t(e)&&(e.data("fancybox-placeholder")||e.data("fancybox-placeholder",f('<div class="fancybox-placeholder"></div>').insertAfter(e).hide()),e=e.show().detach(),a.wrap.bind("onReset",function(){f(this).find(e).length&&e.hide().replaceAll(e.data("fancybox-placeholder")).data("fancybox-placeholder",!1)}));break;case "image":e=a.tpl.image.replace("{href}",
-g);break;case "swf":e='<object id="fancybox-swf" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%"><param name="movie" value="'+g+'"></param>',h="",f.each(a.swf,function(a,b){e+='<param name="'+a+'" value="'+b+'"></param>';h+=" "+a+'="'+b+'"'}),e+='<embed src="'+g+'" type="application/x-shockwave-flash" width="100%" height="100%"'+h+"></embed></object>"}(!t(e)||!e.parent().is(a.inner))&&a.inner.append(e);b.trigger("beforeShow");a.inner.css("overflow","yes"===k?"scroll":
-"no"===k?"hidden":k);b._setDimension();b.reposition();b.isOpen=!1;b.coming=null;b.bindEvents();if(b.isOpened){if(d.prevMethod)b.transitions[d.prevMethod]()}else f(".fancybox-wrap").not(a.wrap).stop(!0).trigger("onReset").remove();b.transitions[b.isOpened?a.nextMethod:a.openMethod]();b._preloadImages()}},_setDimension:function(){var a=b.getViewport(),d=0,e=!1,c=!1,e=b.wrap,k=b.skin,g=b.inner,h=b.current,c=h.width,j=h.height,m=h.minWidth,u=h.minHeight,n=h.maxWidth,p=h.maxHeight,s=h.scrolling,q=h.scrollOutside?
-h.scrollbarWidth:0,x=h.margin,y=l(x[1]+x[3]),r=l(x[0]+x[2]),v,z,t,C,A,F,B,D,H;e.add(k).add(g).width("auto").height("auto").removeClass("fancybox-tmp");x=l(k.outerWidth(!0)-k.width());v=l(k.outerHeight(!0)-k.height());z=y+x;t=r+v;C=E(c)?(a.w-z)*l(c)/100:c;A=E(j)?(a.h-t)*l(j)/100:j;if("iframe"===h.type){if(H=h.content,h.autoHeight&&1===H.data("ready"))try{H[0].contentWindow.document.location&&(g.width(C).height(9999),F=H.contents().find("body"),q&&F.css("overflow-x","hidden"),A=F.outerHeight(!0))}catch(G){}}else if(h.autoWidth||
-h.autoHeight)g.addClass("fancybox-tmp"),h.autoWidth||g.width(C),h.autoHeight||g.height(A),h.autoWidth&&(C=g.width()),h.autoHeight&&(A=g.height()),g.removeClass("fancybox-tmp");c=l(C);j=l(A);D=C/A;m=l(E(m)?l(m,"w")-z:m);n=l(E(n)?l(n,"w")-z:n);u=l(E(u)?l(u,"h")-t:u);p=l(E(p)?l(p,"h")-t:p);F=n;B=p;h.fitToView&&(n=Math.min(a.w-z,n),p=Math.min(a.h-t,p));z=a.w-y;r=a.h-r;h.aspectRatio?(c>n&&(c=n,j=l(c/D)),j>p&&(j=p,c=l(j*D)),c<m&&(c=m,j=l(c/D)),j<u&&(j=u,c=l(j*D))):(c=Math.max(m,Math.min(c,n)),h.autoHeight&&
-"iframe"!==h.type&&(g.width(c),j=g.height()),j=Math.max(u,Math.min(j,p)));if(h.fitToView)if(g.width(c).height(j),e.width(c+x),a=e.width(),y=e.height(),h.aspectRatio)for(;(a>z||y>r)&&(c>m&&j>u)&&!(19<d++);)j=Math.max(u,Math.min(p,j-10)),c=l(j*D),c<m&&(c=m,j=l(c/D)),c>n&&(c=n,j=l(c/D)),g.width(c).height(j),e.width(c+x),a=e.width(),y=e.height();else c=Math.max(m,Math.min(c,c-(a-z))),j=Math.max(u,Math.min(j,j-(y-r)));q&&("auto"===s&&j<A&&c+x+q<z)&&(c+=q);g.width(c).height(j);e.width(c+x);a=e.width();
-y=e.height();e=(a>z||y>r)&&c>m&&j>u;c=h.aspectRatio?c<F&&j<B&&c<C&&j<A:(c<F||j<B)&&(c<C||j<A);f.extend(h,{dim:{width:w(a),height:w(y)},origWidth:C,origHeight:A,canShrink:e,canExpand:c,wPadding:x,hPadding:v,wrapSpace:y-k.outerHeight(!0),skinSpace:k.height()-j});!H&&(h.autoHeight&&j>u&&j<p&&!c)&&g.height("auto")},_getPosition:function(a){var d=b.current,e=b.getViewport(),c=d.margin,f=b.wrap.width()+c[1]+c[3],g=b.wrap.height()+c[0]+c[2],c={position:"absolute",top:c[0],left:c[3]};d.autoCenter&&d.fixed&&
-!a&&g<=e.h&&f<=e.w?c.position="fixed":d.locked||(c.top+=e.y,c.left+=e.x);c.top=w(Math.max(c.top,c.top+(e.h-g)*d.topRatio));c.left=w(Math.max(c.left,c.left+(e.w-f)*d.leftRatio));return c},_afterZoomIn:function(){var a=b.current;a&&(b.isOpen=b.isOpened=!0,b.wrap.css("overflow","visible").addClass("fancybox-opened"),b.update(),(a.closeClick||a.nextClick&&1<b.group.length)&&b.inner.css("cursor","pointer").bind("click.fb",function(d){!f(d.target).is("a")&&!f(d.target).parent().is("a")&&(d.preventDefault(),
-b[a.closeClick?"close":"next"]())}),a.closeBtn&&f(a.tpl.closeBtn).appendTo(b.skin).bind("click.fb",function(a){a.preventDefault();b.close()}),a.arrows&&1<b.group.length&&((a.loop||0<a.index)&&f(a.tpl.prev).appendTo(b.outer).bind("click.fb",b.prev),(a.loop||a.index<b.group.length-1)&&f(a.tpl.next).appendTo(b.outer).bind("click.fb",b.next)),b.trigger("afterShow"),!a.loop&&a.index===a.group.length-1?b.play(!1):b.opts.autoPlay&&!b.player.isActive&&(b.opts.autoPlay=!1,b.play()))},_afterZoomOut:function(a){a=
-a||b.current;f(".fancybox-wrap").trigger("onReset").remove();f.extend(b,{group:{},opts:{},router:!1,current:null,isActive:!1,isOpened:!1,isOpen:!1,isClosing:!1,wrap:null,skin:null,outer:null,inner:null});b.trigger("afterClose",a)}});b.transitions={getOrigPosition:function(){var a=b.current,d=a.element,e=a.orig,c={},f=50,g=50,h=a.hPadding,j=a.wPadding,m=b.getViewport();!e&&(a.isDom&&d.is(":visible"))&&(e=d.find("img:first"),e.length||(e=d));t(e)?(c=e.offset(),e.is("img")&&(f=e.outerWidth(),g=e.outerHeight())):
-(c.top=m.y+(m.h-g)*a.topRatio,c.left=m.x+(m.w-f)*a.leftRatio);if("fixed"===b.wrap.css("position")||a.locked)c.top-=m.y,c.left-=m.x;return c={top:w(c.top-h*a.topRatio),left:w(c.left-j*a.leftRatio),width:w(f+j),height:w(g+h)}},step:function(a,d){var e,c,f=d.prop;c=b.current;var g=c.wrapSpace,h=c.skinSpace;if("width"===f||"height"===f)e=d.end===d.start?1:(a-d.start)/(d.end-d.start),b.isClosing&&(e=1-e),c="width"===f?c.wPadding:c.hPadding,c=a-c,b.skin[f](l("width"===f?c:c-g*e)),b.inner[f](l("width"===
-f?c:c-g*e-h*e))},zoomIn:function(){var a=b.current,d=a.pos,e=a.openEffect,c="elastic"===e,k=f.extend({opacity:1},d);delete k.position;c?(d=this.getOrigPosition(),a.openOpacity&&(d.opacity=0.1)):"fade"===e&&(d.opacity=0.1);b.wrap.css(d).animate(k,{duration:"none"===e?0:a.openSpeed,easing:a.openEasing,step:c?this.step:null,complete:b._afterZoomIn})},zoomOut:function(){var a=b.current,d=a.closeEffect,e="elastic"===d,c={opacity:0.1};e&&(c=this.getOrigPosition(),a.closeOpacity&&(c.opacity=0.1));b.wrap.animate(c,
-{duration:"none"===d?0:a.closeSpeed,easing:a.closeEasing,step:e?this.step:null,complete:b._afterZoomOut})},changeIn:function(){var a=b.current,d=a.nextEffect,e=a.pos,c={opacity:1},f=b.direction,g;e.opacity=0.1;"elastic"===d&&(g="down"===f||"up"===f?"top":"left","down"===f||"right"===f?(e[g]=w(l(e[g])-200),c[g]="+=200px"):(e[g]=w(l(e[g])+200),c[g]="-=200px"));"none"===d?b._afterZoomIn():b.wrap.css(e).animate(c,{duration:a.nextSpeed,easing:a.nextEasing,complete:b._afterZoomIn})},changeOut:function(){var a=
-b.previous,d=a.prevEffect,e={opacity:0.1},c=b.direction;"elastic"===d&&(e["down"===c||"up"===c?"top":"left"]=("up"===c||"left"===c?"-":"+")+"=200px");a.wrap.animate(e,{duration:"none"===d?0:a.prevSpeed,easing:a.prevEasing,complete:function(){f(this).trigger("onReset").remove()}})}};b.helpers.overlay={defaults:{closeClick:!0,speedOut:200,showEarly:!0,css:{},locked:!s,fixed:!0},overlay:null,fixed:!1,el:f("html"),create:function(a){a=f.extend({},this.defaults,a);this.overlay&&this.close();this.overlay=
-f('<div class="fancybox-overlay"></div>').appendTo(b.coming?b.coming.parent:a.parent);this.fixed=!1;a.fixed&&b.defaults.fixed&&(this.overlay.addClass("fancybox-overlay-fixed"),this.fixed=!0)},open:function(a){var d=this;a=f.extend({},this.defaults,a);this.overlay?this.overlay.unbind(".overlay").width("auto").height("auto"):this.create(a);this.fixed||(n.bind("resize.overlay",f.proxy(this.update,this)),this.update());a.closeClick&&this.overlay.bind("click.overlay",function(a){if(f(a.target).hasClass("fancybox-overlay"))return b.isActive?
-b.close():d.close(),!1});this.overlay.css(a.css).show()},close:function(){var a,b;n.unbind("resize.overlay");this.el.hasClass("fancybox-lock")&&(f(".fancybox-margin").removeClass("fancybox-margin"),a=n.scrollTop(),b=n.scrollLeft(),this.el.removeClass("fancybox-lock"),n.scrollTop(a).scrollLeft(b));f(".fancybox-overlay").remove().hide();f.extend(this,{overlay:null,fixed:!1})},update:function(){var a="100%",b;this.overlay.width(a).height("100%");I?(b=Math.max(G.documentElement.offsetWidth,G.body.offsetWidth),
-p.width()>b&&(a=p.width())):p.width()>n.width()&&(a=p.width());this.overlay.width(a).height(p.height())},onReady:function(a,b){var e=this.overlay;f(".fancybox-overlay").stop(!0,!0);e||this.create(a);a.locked&&(this.fixed&&b.fixed)&&(e||(this.margin=p.height()>n.height()?f("html").css("margin-right").replace("px",""):!1),b.locked=this.overlay.append(b.wrap),b.fixed=!1);!0===a.showEarly&&this.beforeShow.apply(this,arguments)},beforeShow:function(a,b){var e,c;b.locked&&(!1!==this.margin&&(f("*").filter(function(){return"fixed"===
-f(this).css("position")&&!f(this).hasClass("fancybox-overlay")&&!f(this).hasClass("fancybox-wrap")}).addClass("fancybox-margin"),this.el.addClass("fancybox-margin")),e=n.scrollTop(),c=n.scrollLeft(),this.el.addClass("fancybox-lock"),n.scrollTop(e).scrollLeft(c));this.open(a)},onUpdate:function(){this.fixed||this.update()},afterClose:function(a){this.overlay&&!b.coming&&this.overlay.fadeOut(a.speedOut,f.proxy(this.close,this))}};b.helpers.title={defaults:{type:"float",position:"bottom"},beforeShow:function(a){var d=
-b.current,e=d.title,c=a.type;f.isFunction(e)&&(e=e.call(d.element,d));if(q(e)&&""!==f.trim(e)){d=f('<div class="fancybox-title fancybox-title-'+c+'-wrap">'+e+"</div>");switch(c){case "inside":c=b.skin;break;case "outside":c=b.wrap;break;case "over":c=b.inner;break;default:c=b.skin,d.appendTo("body"),I&&d.width(d.width()),d.wrapInner('<span class="child"></span>'),b.current.margin[2]+=Math.abs(l(d.css("margin-bottom")))}d["top"===a.position?"prependTo":"appendTo"](c)}}};f.fn.fancybox=function(a){var d,
-e=f(this),c=this.selector||"",k=function(g){var h=f(this).blur(),j=d,k,l;!g.ctrlKey&&(!g.altKey&&!g.shiftKey&&!g.metaKey)&&!h.is(".fancybox-wrap")&&(k=a.groupAttr||"data-fancybox-group",l=h.attr(k),l||(k="rel",l=h.get(0)[k]),l&&(""!==l&&"nofollow"!==l)&&(h=c.length?f(c):e,h=h.filter("["+k+'="'+l+'"]'),j=h.index(this)),a.index=j,!1!==b.open(h,a)&&g.preventDefault())};a=a||{};d=a.index||0;!c||!1===a.live?e.unbind("click.fb-start").bind("click.fb-start",k):p.undelegate(c,"click.fb-start").delegate(c+
-":not('.fancybox-item, .fancybox-nav')","click.fb-start",k);this.filter("[data-fancybox-start=1]").trigger("click");return this};p.ready(function(){var a,d;f.scrollbarWidth===v&&(f.scrollbarWidth=function(){var a=f('<div style="width:50px;height:50px;overflow:auto"><div/></div>').appendTo("body"),b=a.children(),b=b.innerWidth()-b.height(99).innerWidth();a.remove();return b});if(f.support.fixedPosition===v){a=f.support;d=f('<div style="position:fixed;top:20px;"></div>').appendTo("body");var e=20===
-d[0].offsetTop||15===d[0].offsetTop;d.remove();a.fixedPosition=e}f.extend(b.defaults,{scrollbarWidth:f.scrollbarWidth(),fixed:f.support.fixedPosition,parent:f("body")});a=f(r).width();J.addClass("fancybox-lock-test");d=f(r).width();J.removeClass("fancybox-lock-test");f("<style type='text/css'>.fancybox-margin{margin-right:"+(d-a)+"px;}</style>").appendTo("head")})})(window,document,jQuery);
\ No newline at end of file
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/js/plugins/jquery.socialstream.js b/app/code/Magiccart/Alothemes/view/frontend/web/js/plugins/jquery.socialstream.js
index 72fb0d2..adb7cda 100644
--- a/app/code/Magiccart/Alothemes/view/frontend/web/js/plugins/jquery.socialstream.js
+++ b/app/code/Magiccart/Alothemes/view/frontend/web/js/plugins/jquery.socialstream.js
@@ -25,49 +25,6 @@
             callback: function() {}
         };
         var options = $.extend(defaults, options);
-        var methods = {
-            init : function() {
-              return this.each(function() {
-                var $suggest  = $(settings.classes, $(this));
-                if( $suggest.length )methods.suggestLoad($suggest);
-              });
-            },
-            suggestLoad: function(suggest){
-                var el  = suggest.find('.notify-slider-wrapper');
-                suggest.find('.x-close').click(function() {
-                    suggest.addClass('close')
-                });
-                var slideCount    = suggest.find('.notify-slider li').length;
-                var slideWidth    = suggest.find('.notify-slider li').width();
-                var slideHeight   = suggest.find('.notify-slider li').height();
-                var sliderUlWidth = slideCount * slideWidth;
-                suggest.find('.notify-slider').css({ width: slideWidth, height: slideHeight });
-                suggest.find('.notify-slider ul').css({ width: sliderUlWidth, marginLeft: - slideWidth });
-                suggest.find('.notify-slider ul li:last-child').prependTo('.notify-slider ul');
-                setTimeout(function(){ el.slideDown('slow'); }, firsttime);
-                setInterval(function () {
-                    el.slideUp({
-                            duration:'slow', 
-                            easing: 'swing',
-                            complete: function(){
-                                methods.moveRight(suggest, slideWidth);
-                                setTimeout(function(){ el.slideDown('slow'); }, timeout);
-                            }
-                        });
-
-                }, interval);
-            },
-            moveRight: function(suggest, slideWidth){
-                suggest.find('.notify-slider ul').animate({
-                    left: - slideWidth
-                }, 0, function () {
-                    var slider = suggest.find('.notify-slider ul');
-                    suggest.find('.notify-slider ul li:first-child').appendTo(slider);
-                    slider.css('left', '');
-                })
-            }
-
-        };
         return this.each(function () {
             var object = $(this);
             switch (options.socialnetwork) {
diff --git a/app/code/Magiccart/Lookbook/README.md b/app/code/Magiccart/Lookbook/README.md
new file mode 100644
index 0000000..4e17be4
--- /dev/null
+++ b/app/code/Magiccart/Lookbook/README.md
@@ -0,0 +1,97 @@
+# Magento 2 Extention Lookbook
+**Lookbook Magento extension** (Lookbook Pin Products) is one of amazing extensions which helps you boost sales like a cross-selling art. Customers always like the trend and experienced look if you know how to lead them in. By using Lookbook Pin Products extension, you can make inspiration for customers during shopping more than using single products. It’s easy to create lookbooks on your own and show off your store style by combining a variety of products on a main photo. You can also leverage the beauty belong other accessories to highlight your target products.
+
+## Look In Frontend
+![widget-img](https://github.com/magiccart/magento2-lookbook/blob/master/media/lookbook_frontend.jpg)
+
+### ✓ Install Magiccart Lookbook via composer (recommend)
+Run the following command in Magento 2 root folder:
+
+`composer require magiccart/lookbook`
+
+`php bin/magento setup:upgrade`
+
+`php bin/magento setup:static-content:deploy -f`
+
+## Highlight Features
+
+- Easy to create Lookbook Pin Products
+- Display any CMS page on your live store
+- Easy to Disable/ Enable Lookbook module
+- Enable to Pop up on your page
+- Ability to edit each pin name
+- Ability to display detail of each pin
+- Customer can purchase or go directly to the single product easily
+- Create eye-catching look
+
+## Magiccart Lookbook user guide
+[USE GUIDE](https://docs.alothemes.com/m2/theme/gecko/#sub70)
+
+**Free Extensions List**
+
+* [Magento 2 Recent Sales Notification](https://magepow.com/magento-2-recent-sales-notification.html)
+
+* [Magento Categories Extension](https://magepow.com/magento-categories-extension.html)
+
+* [Magento Sticky Cart](https://magepow.com/magento-sticky-cart.html)
+
+* [Magento Ajax Contact](https://magepow.com/magento-ajax-contact-form.html)
+
+* [Magento Lazy Load](https://magepow.com/magento-lazy-load.html)
+
+
+**Premium Extensions List**
+
+* [Magento Speed Optimizer](https://magepow.com/magento-speed-optimizer.html)
+
+* [Magento 2 Mutil Translate](https://magepow.com/magento-multi-translate.html)
+
+* [Magento 2 Instagram Integration](https://magepow.com/magento-2-instagram.html)
+
+* [Lookbook Pin Products](https://magepow.com/lookbook-pin-products.html)
+
+* [Magento Product Slider](https://magepow.com/magento-product-slider.html)
+
+* [Magento Product Banner](https://magepow.com/magento-banner-slider.html)
+
+
+**Featured Magento Themes**
+
+* [Expert Multipurpose responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/expert-premium-responsive-magento-2-and-1-support-rtl-magento-2-/21667789)
+
+* [Gecko Premium responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/gecko-responsive-magento-2-theme-rtl-supported/24677410)
+
+* [Milano Fashion responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/milano-fashion-responsive-magento-1-2-theme/12141971)
+
+* [Electro responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/electro-responsive-magento-1-2-theme/17042067)
+
+* [Pizzaro food responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/pizzaro-food-responsive-magento-1-2-theme/19438157)
+
+* [Biolife organic responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/biolife-organic-food-magento-2-theme-rtl-supported/25712510)
+
+* [Market responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/market-responsive-magento-2-theme/22997928)
+
+* [Kuteshop responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/kuteshop-multipurpose-responsive-magento-1-2-theme/12985435)
+
+
+**Featured Magento Services**
+
+* [PSD to Magento 2 Theme Conversion](https://magepow.com/psd-to-magento-theme-conversion.html)
+
+* [Magento Speed Optimization Service](https://magepow.com/magento-speed-optimization-service.html)
+
+* [Magento Security Patch Installation](https://magepow.com/magento-security-patch-installation.html)
+
+* [Magento Website Maintenance Service](https://magepow.com/website-maintenance-service.html)
+
+* [Magento Professional Installation Service](https://magepow.com/professional-installation-service.html)
+
+* [Magento Upgrade Service](https://magepow.com/magento-upgrade-service.html)
+
+* [Customization Service](https://magepow.com/customization-service.html)
+
+* [Hire Magento Developer](https://magepow.com/hire-magento-developer.html)
+
+
+[![Latest Stable Version](https://poser.pugx.org/magiccart/lookbook/v/stable)](https://packagist.org/packages/magiccart/lookbook)
+[![Total Downloads](https://poser.pugx.org/magiccart/lookbook/downloads)](https://packagist.org/packages/magiccart/lookbook)
diff --git a/app/code/Magiccart/Lookbook/composer.json b/app/code/Magiccart/Lookbook/composer.json
index ee94bda..900c7bc 100644
--- a/app/code/Magiccart/Lookbook/composer.json
+++ b/app/code/Magiccart/Lookbook/composer.json
@@ -1,17 +1,19 @@
 {
-  "name": "magiccart/module-lookbook",
-  "description": "N/A",
-  "require": {
-    "php": "~5.5.0|~5.6.0|~7.0.0",
-    "magento/framework": "1.0.0-beta",
-    "lib-libxml": "*"
-  },
+  "name": "magiccart/lookbook",
+  "description": "Pin product to banner easy.",
   "type": "magento2-module",
-  "version": "100.0.2",
   "license": [
     "OSL-3.0",
     "AFL-3.0"
   ],
+  "authors": [
+    {
+      "name": "Alothemes",
+      "email": "support@alothemes.com",
+      "homepage": "https://alothemes.com",
+      "role": "Technical Support"
+    }
+  ],
   "autoload": {
     "files": [ "registration.php" ],
     "psr-4": {
diff --git a/app/code/Magiccart/Lookbook/media/lookbook_frontend.jpg b/app/code/Magiccart/Lookbook/media/lookbook_frontend.jpg
new file mode 100644
index 0000000..55fd2ea
Binary files /dev/null and b/app/code/Magiccart/Lookbook/media/lookbook_frontend.jpg differ
diff --git a/app/code/Magiccart/Magicmenu/README.md b/app/code/Magiccart/Magicmenu/README.md
new file mode 100644
index 0000000..33e44c3
--- /dev/null
+++ b/app/code/Magiccart/Magicmenu/README.md
@@ -0,0 +1,97 @@
+# Magento 2 Extention Magicmenu
+**Magicmenu Magento extension** (Magiccart Magicmenu Extension) allows you create a beautifull menu with rich of features such as Megamenu or Dropdown Menu. On a Mega Menu, the extension allow you show the custom block on the top/bottom/left/right of the menu.
+### ✓ Install Magiccart Magicmenu via composer (recommend)
+Run the following command in Magento 2 root folder:
+
+`composer require magiccart/magicmenu`
+
+`php bin/magento setup:upgrade`
+
+`php bin/magento setup:static-content:deploy -f`
+
+## Look In Frontend
+### Mega Menu
+![widget-img](https://github.com/magiccart/magento2-magicmenu/blob/master/media/megamenu.jpg)
+### Dropdown Menu
+![widget-img](https://github.com/magiccart/magento2-magicmenu/blob/master/media/dropdownmenu.jpg)
+
+## Highlight Features
+- Insert easily magicmenu by Widget
+- Ability to choose two type of menu: Mega menu or Dropdown Menu
+- Allow to add Extra Menu
+- Ability to add Thumbnail, image to category in Mega menu
+- Ability to add custom block to Mega menu (Top, right, bottom or left)
+
+
+## Magiccart Magicmenu User Guide
+[USE GUIDE](https://docs.alothemes.com/m2/theme/gecko/#sub66)
+
+
+**Free Extensions List**
+
+* [Magento 2 Recent Sales Notification](https://magepow.com/magento-2-recent-sales-notification.html)
+
+* [Magento Categories Extension](https://magepow.com/magento-categories-extension.html)
+
+* [Magento Sticky Cart](https://magepow.com/magento-sticky-cart.html)
+
+* [Magento Ajax Contact](https://magepow.com/magento-ajax-contact-form.html)
+
+* [Magento Lazy Load](https://magepow.com/magento-lazy-load.html)
+
+
+**Premium Extensions List**
+
+* [Magento Speed Optimizer](https://magepow.com/magento-speed-optimizer.html)
+
+* [Magento 2 Mutil Translate](https://magepow.com/magento-multi-translate.html)
+
+* [Magento 2 Instagram Integration](https://magepow.com/magento-2-instagram.html)
+
+* [Lookbook Pin Products](https://magepow.com/lookbook-pin-products.html)
+
+* [Magento Product Slider](https://magepow.com/magento-product-slider.html)
+
+* [Magento Product Banner](https://magepow.com/magento-banner-slider.html)
+
+
+**Featured Magento Themes**
+
+* [Expert Multipurpose responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/expert-premium-responsive-magento-2-and-1-support-rtl-magento-2-/21667789)
+
+* [Gecko Premium responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/gecko-responsive-magento-2-theme-rtl-supported/24677410)
+
+* [Milano Fashion responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/milano-fashion-responsive-magento-1-2-theme/12141971)
+
+* [Electro responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/electro-responsive-magento-1-2-theme/17042067)
+
+* [Pizzaro food responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/pizzaro-food-responsive-magento-1-2-theme/19438157)
+
+* [Biolife organic responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/biolife-organic-food-magento-2-theme-rtl-supported/25712510)
+
+* [Market responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/market-responsive-magento-2-theme/22997928)
+
+* [Kuteshop responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/kuteshop-multipurpose-responsive-magento-1-2-theme/12985435)
+
+
+**Featured Magento Services**
+
+* [PSD to Magento 2 Theme Conversion](https://magepow.com/psd-to-magento-theme-conversion.html)
+
+* [Magento Speed Optimization Service](https://magepow.com/magento-speed-optimization-service.html)
+
+* [Magento Security Patch Installation](https://magepow.com/magento-security-patch-installation.html)
+
+* [Magento Website Maintenance Service](https://magepow.com/website-maintenance-service.html)
+
+* [Magento Professional Installation Service](https://magepow.com/professional-installation-service.html)
+
+* [Magento Upgrade Service](https://magepow.com/magento-upgrade-service.html)
+
+* [Customization Service](https://magepow.com/customization-service.html)
+
+* [Hire Magento Developer](https://magepow.com/hire-magento-developer.html)
+
+
+[![Latest Stable Version](https://poser.pugx.org/magiccart/magicmenu/v/stable)](https://packagist.org/packages/magiccart/magicmenu)
+[![Total Downloads](https://poser.pugx.org/magiccart/magicmenu/downloads)](https://packagist.org/packages/magiccart/magicmenu)
diff --git a/app/code/Magiccart/Magicmenu/composer.json b/app/code/Magiccart/Magicmenu/composer.json
index df703bc..63d4656 100755
--- a/app/code/Magiccart/Magicmenu/composer.json
+++ b/app/code/Magiccart/Magicmenu/composer.json
@@ -1,17 +1,19 @@
 {
-  "name": "magiccart/module-magicmenu",
-  "description": "N/A",
-  "require": {
-    "php": "~5.5.0|~5.6.0|~7.0.0",
-    "magento/framework": "1.0.0-beta",
-    "lib-libxml": "*"
-  },
+  "name": "magiccart/magicmenu",
+  "description": "Make megamenu, dropdown menu, mobile menu easy all in one.",
   "type": "magento2-module",
-  "version": "100.0.2",
   "license": [
     "OSL-3.0",
     "AFL-3.0"
   ],
+  "authors": [
+    {
+      "name": "Alothemes",
+      "email": "support@alothemes.com",
+      "homepage": "https://alothemes.com",
+      "role": "Technical Support"
+    }
+  ],
   "autoload": {
     "files": [ "registration.php" ],
     "psr-4": {
diff --git a/app/code/Magiccart/Magicmenu/media/dropdownmenu.jpg b/app/code/Magiccart/Magicmenu/media/dropdownmenu.jpg
new file mode 100644
index 0000000..adf865f
Binary files /dev/null and b/app/code/Magiccart/Magicmenu/media/dropdownmenu.jpg differ
diff --git a/app/code/Magiccart/Magicmenu/media/megamenu.jpg b/app/code/Magiccart/Magicmenu/media/megamenu.jpg
new file mode 100644
index 0000000..9288c32
Binary files /dev/null and b/app/code/Magiccart/Magicmenu/media/megamenu.jpg differ
diff --git a/app/code/Magiccart/Magicmenu/view/frontend/templates/aio-topmenu.phtml b/app/code/Magiccart/Magicmenu/view/frontend/templates/aio-topmenu.phtml
index 783dc29..bb91457 100755
--- a/app/code/Magiccart/Magicmenu/view/frontend/templates/aio-topmenu.phtml
+++ b/app/code/Magiccart/Magicmenu/view/frontend/templates/aio-topmenu.phtml
@@ -58,7 +58,10 @@ $drawExtraMenu = $menu['extraCat'] ? $extraHtml : '';
 		}
 	?>
 	<div class="magicmenu clearfix">
-		<ul class="nav-desktop <?php /* @escapeNotVerified */ echo $menu['sticker'] ? 'sticker' : '' ?>" data-fullwidth="<?php /* @escapeNotVerified */ echo $menu['fullWidth'] ?>">
+		<ul class="nav-desktop <?php /* @escapeNotVerified */ echo $menu['sticker'] ? 'sticker' : '' ?>"			
+				data-fullwidth="<?php /* @escapeNotVerified */ echo $menu['fullWidth'] ?>"
+				data-breakpoint="<?php /* @escapeNotVerified */ echo $menu['switcher'] ?>"
+			>
 			<?php echo $drawHomeMenu ?>
 			<?php echo $drawMainMenu ?>
 			<?php echo $drawExtraMenu ?>
diff --git a/app/code/Magiccart/Magicmenu/view/frontend/templates/topmenu.phtml b/app/code/Magiccart/Magicmenu/view/frontend/templates/topmenu.phtml
index 859b894..a2810f7 100755
--- a/app/code/Magiccart/Magicmenu/view/frontend/templates/topmenu.phtml
+++ b/app/code/Magiccart/Magicmenu/view/frontend/templates/topmenu.phtml
@@ -33,7 +33,10 @@ $drawExtraMenu = $menu['extraCat'] ? $this->drawExtraMenu() : '';
 	</ul>
 </nav>
 <div class="magicmenu clearfix">
-	<ul class="nav-desktop <?php /* @escapeNotVerified */ echo $menu['sticker'] ? 'sticker' : '' ?>" data-fullwidth="<?php /* @escapeNotVerified */ echo $menu['fullWidth'] ?>" >
+	<ul class="nav-desktop <?php /* @escapeNotVerified */ echo $menu['sticker'] ? 'sticker' : '' ?>"			
+			data-fullwidth="<?php /* @escapeNotVerified */ echo $menu['fullWidth'] ?>"
+			data-breakpoint="<?php /* @escapeNotVerified */ echo $menu['switcher'] ?>"
+			>
 		<?php echo $drawHomeMenu ?>
 		<?php echo $drawMainMenu ?>
 		<?php echo $drawExtraMenu ?>
diff --git a/app/code/Magiccart/Magicmenu/view/frontend/web/css/source/_module.less b/app/code/Magiccart/Magicmenu/view/frontend/web/css/source/_module.less
new file mode 100644
index 0000000..344f2d0
--- /dev/null
+++ b/app/code/Magiccart/Magicmenu/view/frontend/web/css/source/_module.less
@@ -0,0 +1,14 @@
+& when (@media-common = true) {
+	.magicmenu .nav-desktop .level0.over .level-top-mega,
+	.magicmenu .nav-desktop .level0.dropdown.over > .level0{opacity:1;top: 50px;visibility:visible;}
+
+	.magicmenu .nav-desktop .level0.dropdown .hasChild.over > ul,
+	.vmagicmenu .vmagicmenu-narrow .level0.dropdown .hasChild.over > ul {opacity: 1;visibility: visible;}
+
+	.magicmenu .nav-desktop .level0 .level-top-mega .children ul.level1 .hasChild.over > ul,
+	.vmagicmenu .nav-desktop .level0 .level-top-mega .children ul.level1 .hasChild.over ul {opacity: 1;left: 90%;visibility: visible;}
+
+	.vmagicmenu .level0.over .level-top-mega,
+	.vmagicmenu .vmagicmenu-narrow .level0.dropdown.hasChild.over > ul,
+	.vmagicmenu .nav-desktop .level0.dropdown.over > .level0{opacity:1; visibility:visible;}
+}
\ No newline at end of file
diff --git a/app/code/Magiccart/Magicmenu/view/frontend/web/js/magicmenu.js b/app/code/Magiccart/Magicmenu/view/frontend/web/js/magicmenu.js
index bd7aa24..16d7e62 100644
--- a/app/code/Magiccart/Magicmenu/view/frontend/web/js/magicmenu.js
+++ b/app/code/Magiccart/Magicmenu/view/frontend/web/js/magicmenu.js
@@ -7,7 +7,7 @@ require(['jquery', 'magiccart/easing'], function($, easing){
      * @license     https://www.magepow.com/license-agreement.html
      * @Author: DOng NGuyen<nguyen@magepow.com>
      * @@Create Date: 2014-04-25 13:16:48
-     * @@Modify Date: 2020-03-22 09:16:29
+     * @@Modify Date: 2020-04-02 09:16:29
      * @@Function:
      */
 
@@ -50,7 +50,7 @@ require(['jquery', 'magiccart/easing'], function($, easing){
                         var navDesktop = topmenu.find('.nav-desktop');
                         if(navDesktop.hasClass('sticker')) methods.sticky(topmenu);
                         /* Active menu top-vmega */
-                        topmenu.find('.vmega .category-item').hover(function() {
+                        topmenu.find('.vmega .category-item').on('hover mouseenter', function() {
                             $(this).siblings().removeClass('over');
                             $(this).addClass('over');
                         }, function() {
@@ -84,6 +84,26 @@ require(['jquery', 'magiccart/easing'], function($, easing){
                                 methods.vertical(vLeveltop, fullWidth, false);
                             }
                         })
+                        
+                        methods.taphover(topmenu.add(vmenu));
+                    });
+                },
+
+                taphover: function(el){
+                    var categories = el.find('.category-item');
+                    categories.on('touchstart', function (e) {
+                        'use strict'; //satisfy code inspectors
+                        var link = $(this); //preselect the link
+                        link.trigger('mouseenter');
+                        if (link.hasClass('over')) {
+                            return true;
+                        } else {
+                            link.addClass('over');
+                            categories.not(this).removeClass('over');
+                            link.parents('.category-item').addClass('over');
+                            e.preventDefault();
+                            return false; //extra, and to make sure the function has consistent return points
+                        }
                     });
                 },
 
@@ -161,7 +181,7 @@ require(['jquery', 'magiccart/easing'], function($, easing){
                     var menuBoxMax  = fullWidth ? $('body'): $('.container');
                     var maxW        = menuBoxMax.width();
                     var float       = $('body').hasClass('rtl') ? 'right' : 'left';
-                    $navtop.hover(function(){
+                    $navtop.on('hover mouseenter', function(){
                         var $item       = $(this);
                         var options     = $item.data('options');
                         var $children   = $item.find('.cat-mega .children');
@@ -200,7 +220,7 @@ require(['jquery', 'magiccart/easing'], function($, easing){
                     if(init) methods.initMenu($navtop, fullWidth);
                     var menuBox = $('.container');
                     var maxW    = menuBox.width();
-                    $navtop.hover(function(){
+                    $navtop.on('hover mouseenter', function(){
                         var $item       = $(this);
                         var options     = $item.data('options');
                         var $children   = $item.find('.cat-mega .children');
diff --git a/app/code/Magiccart/Magicproduct/Block/Adminhtml/Catalog/Edit/Tab/Form.php b/app/code/Magiccart/Magicproduct/Block/Adminhtml/Catalog/Edit/Tab/Form.php
index e1230e2..243627c 100755
--- a/app/code/Magiccart/Magicproduct/Block/Adminhtml/Catalog/Edit/Tab/Form.php
+++ b/app/code/Magiccart/Magicproduct/Block/Adminhtml/Catalog/Edit/Tab/Form.php
@@ -6,7 +6,7 @@
  * @license     http://www.magiccart.net/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2016-01-05 10:40:51
- * @@Modify Date: 2019-12-14 17:16:39
+ * @@Modify Date: 2017-08-31 17:16:39
  * @@Function:
  */
 
@@ -164,13 +164,13 @@ class Form extends \Magento\Backend\Block\Widget\Form\Generic implements \Magent
         //     'text'      => 'Content HTML, Text...etc',
         // ));
 
-        $fieldset->addField('image', 'image',
-            [
-                'label' => __('Image'),
-                'title' => __('Image'),
-                'name'  => 'image',
-            ]
-        );
+        // $fieldset->addField('image', 'image',
+        //     [
+        //         'label' => __('Image'),
+        //         'title' => __('Image'),
+        //         'name'  => 'image',
+        //     ]
+        // );
 
         $fieldset->addField('ajax', 'select',
             [
diff --git a/app/code/Magiccart/Magicproduct/Block/Catalog/GridProduct.php b/app/code/Magiccart/Magicproduct/Block/Catalog/GridProduct.php
index 6fd182e..a95a015 100755
--- a/app/code/Magiccart/Magicproduct/Block/Catalog/GridProduct.php
+++ b/app/code/Magiccart/Magicproduct/Block/Catalog/GridProduct.php
@@ -289,4 +289,9 @@ class GridProduct extends \Magiccart\Magicproduct\Block\Product\ListProduct
         return $qty > 0 ? $qty : 0;
     }
 
+    public function getCategory($categoryId)
+    {
+        return $this->categoryRepository->get($categoryId);
+    }
+    
 }
diff --git a/app/code/Magiccart/Magicproduct/Block/Category/GridProduct.php b/app/code/Magiccart/Magicproduct/Block/Category/GridProduct.php
index 0b7e1ea..99b6ad2 100755
--- a/app/code/Magiccart/Magicproduct/Block/Category/GridProduct.php
+++ b/app/code/Magiccart/Magicproduct/Block/Category/GridProduct.php
@@ -282,4 +282,9 @@ class GridProduct extends \Magiccart\Magicproduct\Block\Product\ListProduct
         return $qty > 0 ? $qty : 0;
     }
 
-}
+    public function getCategory($categoryId)
+    {
+        return $this->categoryRepository->get($categoryId);
+    }
+
+}
\ No newline at end of file
diff --git a/app/code/Magiccart/Magicproduct/Block/Product/GridProduct.php b/app/code/Magiccart/Magicproduct/Block/Product/GridProduct.php
index 635813d..54db6a2 100755
--- a/app/code/Magiccart/Magicproduct/Block/Product/GridProduct.php
+++ b/app/code/Magiccart/Magicproduct/Block/Product/GridProduct.php
@@ -6,7 +6,7 @@
  * @license     http://www.magiccart.net/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2016-01-05 10:40:51
- * @@Modify Date: 2019-08-29 10:54:47
+ * @@Modify Date: 2020-04-13 10:54:47
  * @@Function:
  */
 
@@ -53,6 +53,11 @@ class GridProduct extends \Magento\Catalog\Block\Product\AbstractProduct
      */
     protected $_productCollectionFactory;
 
+    /**
+     * @var CategoryRepositoryInterface
+     */
+    protected $categoryRepository;
+
     /**
      * Product collection factory
      *
@@ -82,6 +87,7 @@ class GridProduct extends \Magento\Catalog\Block\Product\AbstractProduct
         \Magento\Catalog\Block\Product\Context $context,
         \Magento\Framework\Url\Helper\Data $urlHelper,
         \Magento\Framework\ObjectManagerInterface $objectManager,
+        \Magento\Catalog\Api\CategoryRepositoryInterface $categoryRepository,
         \Magento\Catalog\Model\ResourceModel\Product\CollectionFactory $productCollectionFactory,
         \Magento\Catalog\Model\Product\Visibility $catalogProductVisibility,
         \Magento\CatalogInventory\Helper\Stock $stockFilter,
@@ -93,6 +99,7 @@ class GridProduct extends \Magento\Catalog\Block\Product\AbstractProduct
     ) {
         $this->urlHelper = $urlHelper;
         $this->_objectManager = $objectManager;
+        $this->categoryRepository = $categoryRepository;
         $this->_productCollectionFactory = $productCollectionFactory;
         $this->_catalogProductVisibility = $catalogProductVisibility;
         $this->_stockFilter = $stockFilter;
@@ -471,4 +478,9 @@ $collection->joinField(
         return $qty > 0 ? $qty : 0;
     }
 
+    public function getCategory($categoryId)
+    {
+        return $this->categoryRepository->get($categoryId);
+    }
+
 }
diff --git a/app/code/Magiccart/Magicproduct/Block/Widget/Product.php b/app/code/Magiccart/Magicproduct/Block/Widget/Product.php
index 02d6f1a..b54116e 100755
--- a/app/code/Magiccart/Magicproduct/Block/Widget/Product.php
+++ b/app/code/Magiccart/Magicproduct/Block/Widget/Product.php
@@ -6,7 +6,7 @@
  * @license     http://www.magepow.com/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2016-02-14 20:26:27
- * @@Modify Date: 2019-12-14 16:14:15
+ * @@Modify Date: 2019-08-12 16:14:15
  * @@Function:
  */
 
@@ -57,7 +57,7 @@ class Product extends \Magento\Framework\View\Element\Template implements \Magen
             $total = count($breakpoints);
             $responsive = '[';
             foreach ($breakpoints as $size => $screen) {
-                $responsive .= '{"breakpoint": '.$size.', "settings": {"slidesToShow": '.$data[$screen].'}}';
+                $responsive .=  isset($data[$screen]) ? '{"breakpoint": '.$size.', "settings": {"slidesToShow": '. $data[$screen] .'}}' : '';
                 if($total-- > 1) $responsive .= ', ';
             }
             $responsive .= ']';
@@ -224,7 +224,8 @@ class Product extends \Magento\Framework\View\Element\Template implements \Magen
 
     public function getImage($file='')
     {
-        return $file ? $this->getMediaUrl() . $file : $this->getData('image');
+        $resizedURL = $this->_storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA) . $file;
+        return $resizedURL;
     }
 
     public function getVideo($data){
diff --git a/app/code/Magiccart/Magicproduct/README.md b/app/code/Magiccart/Magicproduct/README.md
new file mode 100644
index 0000000..d0fe2cf
--- /dev/null
+++ b/app/code/Magiccart/Magicproduct/README.md
@@ -0,0 +1,96 @@
+# Magento 2 Extention Magicproduct
+**Magicproduct Magento extension** (Product Slider Extension) is an important extension that helps you show a list of products as a slider on any live store pages such as homepage, category page, product page, checkout page…By using this extension, you don’t have to create and add a lot of bestsellers, onsale products, featured products,... manually, your live store still attracts more customers. Magento Product Slider will help customers see the brief of product information, rate and share them, add them to wishlist, cart…quickly. If you are looking for an extension to highlight a group of products and improve customer experience, Magento Product Slider is one of the must-have items.
+
+## Highlight Features
+- Easy to Disable/Enable the Slider
+- Display Best Sellers, OnSale Products, Featured products, Newest products, Recently viewed products, Random Products or even a group of products as you want
+- Easy and quick to insert products slider on page/ block by using widget options
+- Place Slider any pages in your store
+- Responsive sliders
+- Set up the number of products and the row displayed for each slider
+- Slider effects included
+- Allow pick up products for sliders from whole store/ many categories/ one category
+- Special Sliders with countdown timer
+
+
+### ✓ Install Magiccart Magicproduct via composer (recommend)
+Run the following command in Magento 2 root folder:
+
+`composer require magiccart/magicproduct`
+
+`php bin/magento setup:upgrade`
+
+`php bin/magento setup:static-content:deploy -f`
+
+## Magiccart Magicproduct user guide
+[USE GUIDE](https://docs.alothemes.com/m2/extension/productslider/)
+
+
+
+**Free Extensions List**
+
+* [Magento 2 Recent Sales Notification](https://magepow.com/magento-2-recent-sales-notification.html)
+
+* [Magento Categories Extension](https://magepow.com/magento-categories-extension.html)
+
+* [Magento Sticky Cart](https://magepow.com/magento-sticky-cart.html)
+
+* [Magento Ajax Contact](https://magepow.com/magento-ajax-contact-form.html)
+
+* [Magento Lazy Load](https://magepow.com/magento-lazy-load.html)
+
+
+**Premium Extensions List**
+
+* [Magento Speed Optimizer](https://magepow.com/magento-speed-optimizer.html)
+
+* [Magento 2 Mutil Translate](https://magepow.com/magento-multi-translate.html)
+
+* [Magento 2 Instagram Integration](https://magepow.com/magento-2-instagram.html)
+
+* [Lookbook Pin Products](https://magepow.com/lookbook-pin-products.html)
+
+* [Magento Product Slider](https://magepow.com/magento-product-slider.html)
+
+* [Magento Product Banner](https://magepow.com/magento-banner-slider.html)
+
+
+**Featured Magento Themes**
+
+* [Expert Multipurpose responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/expert-premium-responsive-magento-2-and-1-support-rtl-magento-2-/21667789)
+
+* [Gecko Premium responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/gecko-responsive-magento-2-theme-rtl-supported/24677410)
+
+* [Milano Fashion responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/milano-fashion-responsive-magento-1-2-theme/12141971)
+
+* [Electro responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/electro-responsive-magento-1-2-theme/17042067)
+
+* [Pizzaro food responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/pizzaro-food-responsive-magento-1-2-theme/19438157)
+
+* [Biolife organic responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/biolife-organic-food-magento-2-theme-rtl-supported/25712510)
+
+* [Market responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/market-responsive-magento-2-theme/22997928)
+
+* [Kuteshop responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/kuteshop-multipurpose-responsive-magento-1-2-theme/12985435)
+
+
+**Featured Magento Services**
+
+* [PSD to Magento 2 Theme Conversion](https://magepow.com/psd-to-magento-theme-conversion.html)
+
+* [Magento Speed Optimization Service](https://magepow.com/magento-speed-optimization-service.html)
+
+* [Magento Security Patch Installation](https://magepow.com/magento-security-patch-installation.html)
+
+* [Magento Website Maintenance Service](https://magepow.com/website-maintenance-service.html)
+
+* [Magento Professional Installation Service](https://magepow.com/professional-installation-service.html)
+
+* [Magento Upgrade Service](https://magepow.com/magento-upgrade-service.html)
+
+* [Customization Service](https://magepow.com/customization-service.html)
+
+* [Hire Magento Developer](https://magepow.com/hire-magento-developer.html)
+
+[![Latest Stable Version](https://poser.pugx.org/magiccart/magicproduct/v/stable)](https://packagist.org/packages/magiccart/magicproduct)
+[![Total Downloads](https://poser.pugx.org/magiccart/magicproduct/downloads)](https://packagist.org/packages/magiccart/magicproduct)
diff --git a/app/code/Magiccart/Magicproduct/composer.json b/app/code/Magiccart/Magicproduct/composer.json
index 1e2980e..d74cd45 100755
--- a/app/code/Magiccart/Magicproduct/composer.json
+++ b/app/code/Magiccart/Magicproduct/composer.json
@@ -1,17 +1,19 @@
 {
-  "name": "magiccart/module-magicproduct",
+  "name": "magiccart/magicproduct",
   "description": "N/A",
-  "require": {
-    "php": "~5.5.0|~5.6.0|~7.0.0",
-    "magento/framework": "1.0.0-beta",
-    "lib-libxml": "*"
-  },
   "type": "magento2-module",
-  "version": "100.0.2",
   "license": [
     "OSL-3.0",
     "AFL-3.0"
   ],
+  "authors": [
+    {
+      "name": "Alothemes",
+      "email": "support@alothemes.com",
+      "homepage": "https://alothemes.com",
+      "role": "Technical Support"
+    }
+  ],
   "autoload": {
     "files": [ "registration.php" ],
     "psr-4": {
diff --git a/app/code/Magiccart/Magicslider/Block/Adminhtml/Magicslider/Edit/Tab/Config.php b/app/code/Magiccart/Magicslider/Block/Adminhtml/Magicslider/Edit/Tab/Config.php
index f639394..41b5eb5 100755
--- a/app/code/Magiccart/Magicslider/Block/Adminhtml/Magicslider/Edit/Tab/Config.php
+++ b/app/code/Magiccart/Magicslider/Block/Adminhtml/Magicslider/Edit/Tab/Config.php
@@ -142,6 +142,30 @@ class Config extends \Magento\Backend\Block\Widget\Form\Generic implements \Mage
             ]
         );
 
+        $fieldset->addField(
+            'adaptive-height', 
+            'select',
+            [
+                'label' => __('Adapts Height'),
+                'title' => __('Adapts Height'),
+                'name' => 'adaptive-height',
+                'options' => $this->_trueFalse,
+                'value' => 'false',
+            ]
+        );
+
+        $fieldset->addField(
+            'fade', 
+            'select',
+            [
+                'label' => __('Fade'),
+                'title' => __('Fade'),
+                'name' => 'fade',
+                'options' => $this->_trueFalse,
+                'value' => 'false',
+            ]
+        );
+
         $fieldset->addField(
             'rows',
             'select',
diff --git a/app/code/Magiccart/Magicslider/Block/Widget/Slider.php b/app/code/Magiccart/Magicslider/Block/Widget/Slider.php
index 20204be..9da73f0 100755
--- a/app/code/Magiccart/Magicslider/Block/Widget/Slider.php
+++ b/app/code/Magiccart/Magicslider/Block/Widget/Slider.php
@@ -1,12 +1,12 @@
 <?php
 /**
  * Magiccart 
- * @category 	Magiccart 
- * @copyright 	Copyright (c) 2014 Magiccart (http://www.magepow.com/) 
- * @license 	http://www.magepow.com/license-agreement.html
+ * @category    Magiccart 
+ * @copyright   Copyright (c) 2014 Magiccart (http://www.magepow.com/) 
+ * @license     http://www.magepow.com/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2017-01-05 10:40:51
- * @@Modify Date: 2019-09-09 18:09:48
+ * @@Modify Date: 2020-02-12 18:09:48
  * @@Function:
  */
 
@@ -112,12 +112,18 @@ class Slider extends \Magento\Framework\View\Element\Template implements \Magent
                     continue;
                 }
                 $image['url'] = $this->getMediaUrl($image['file']);
+                $file = self::MEDIA_PATH . $image['file'];
+                $absPath = $mediaPath .$file;
+                $_image->open($absPath);
+                $image['width'] = $_image->getOriginalWidth();
+                $image['height'] = $_image->getOriginalHeight();           
                 if(isset($sliderMobile[$i])){
                     $image['url_mobile'] = $sliderMobile[$i]->getUrl();
                     $file = self::MEDIA_PATH . $sliderMobile[$i]->getFile();
                     $absPath = $mediaPath .$file;
                     $_image->open($absPath);
-                    $image['width_mobile'] = $_image->getOriginalWidth();    
+                    $image['width_mobile'] = $_image->getOriginalWidth();
+                    $image['height_mobile'] = $_image->getOriginalHeight();
                 }
                 $images->addItem(new \Magento\Framework\DataObject($image));
                 $i++;
diff --git a/app/code/Magiccart/Magicslider/README.md b/app/code/Magiccart/Magicslider/README.md
new file mode 100644
index 0000000..5c9d5b4
--- /dev/null
+++ b/app/code/Magiccart/Magicslider/README.md
@@ -0,0 +1,97 @@
+# Magento 2 Extention Magicslider
+**Magicslider extension** allows you show a slider of banner to help you highlight your promotion, hot news or any target information. Moreover, this extension also make your website more attractive and looks beautiful.
+
+## Look in frontend
+
+![widget-img](https://github.com/magiccart/magento2-magicslider/blob/master/media/frontend_magicslider.jpg)
+
+## How to install Magicslider Extension
+### ✓ Install Magiccart Magicslider via composer (recommend)
+Run the following command in Magento 2 root folder:
+
+`composer require magiccart/magicslider`
+
+`php bin/magento setup:upgrade`
+
+`php bin/magento setup:static-content:deploy -f`
+
+## Highlight Features
+- Add a banner slider flexibly to any page on live store, such as homepage, category page, product page, CMS page…
+- Add Unlimited banners to slide out on page as flow of image
+- Ability to create banner sliders with any content: images, videos, URL links,...
+- Ability to re-size (width, height), change its text color/size, set up images loading speed, animation effect..
+- Enable/ Disable sliders at anytime
+- Upload images or videos
+- Allow to upload particular image in mobile
+
+
+## Magiccart Magicslider user guide
+[USE GUIDE](https://docs.alothemes.com/m2/theme/gecko/#sub65)
+
+**Free Extensions List**
+
+* [Magento 2 Recent Sales Notification](https://magepow.com/magento-2-recent-sales-notification.html)
+
+* [Magento Categories Extension](https://magepow.com/magento-categories-extension.html)
+
+* [Magento Sticky Cart](https://magepow.com/magento-sticky-cart.html)
+
+* [Magento Ajax Contact](https://magepow.com/magento-ajax-contact-form.html)
+
+* [Magento Lazy Load](https://magepow.com/magento-lazy-load.html)
+
+
+**Premium Extensions List**
+
+* [Magento Speed Optimizer](https://magepow.com/magento-speed-optimizer.html)
+
+* [Magento 2 Mutil Translate](https://magepow.com/magento-multi-translate.html)
+
+* [Magento 2 Instagram Integration](https://magepow.com/magento-2-instagram.html)
+
+* [Lookbook Pin Products](https://magepow.com/lookbook-pin-products.html)
+
+* [Magento Product Slider](https://magepow.com/magento-product-slider.html)
+
+* [Magento Product Banner](https://magepow.com/magento-banner-slider.html)
+
+
+**Featured Magento Themes**
+
+* [Expert Multipurpose responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/expert-premium-responsive-magento-2-and-1-support-rtl-magento-2-/21667789)
+
+* [Gecko Premium responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/gecko-responsive-magento-2-theme-rtl-supported/24677410)
+
+* [Milano Fashion responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/milano-fashion-responsive-magento-1-2-theme/12141971)
+
+* [Electro responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/electro-responsive-magento-1-2-theme/17042067)
+
+* [Pizzaro food responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/pizzaro-food-responsive-magento-1-2-theme/19438157)
+
+* [Biolife organic responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/biolife-organic-food-magento-2-theme-rtl-supported/25712510)
+
+* [Market responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/market-responsive-magento-2-theme/22997928)
+
+* [Kuteshop responsive Magento 2 Theme](https://1.envato.market/c/1314680/275988/4415?u=https://themeforest.net/item/kuteshop-multipurpose-responsive-magento-1-2-theme/12985435)
+
+
+**Featured Magento Services**
+
+* [PSD to Magento 2 Theme Conversion](https://magepow.com/psd-to-magento-theme-conversion.html)
+
+* [Magento Speed Optimization Service](https://magepow.com/magento-speed-optimization-service.html)
+
+* [Magento Security Patch Installation](https://magepow.com/magento-security-patch-installation.html)
+
+* [Magento Website Maintenance Service](https://magepow.com/website-maintenance-service.html)
+
+* [Magento Professional Installation Service](https://magepow.com/professional-installation-service.html)
+
+* [Magento Upgrade Service](https://magepow.com/magento-upgrade-service.html)
+
+* [Customization Service](https://magepow.com/customization-service.html)
+
+* [Hire Magento Developer](https://magepow.com/hire-magento-developer.html)
+
+[![Latest Stable Version](https://poser.pugx.org/magiccart/magicslider/v/stable)](https://packagist.org/packages/magiccart/magicslider)
+[![Total Downloads](https://poser.pugx.org/magiccart/magicslider/downloads)](https://packagist.org/packages/magiccart/magicslider)
diff --git a/app/code/Magiccart/Magicslider/composer.json b/app/code/Magiccart/Magicslider/composer.json
index 30a1359..7658844 100755
--- a/app/code/Magiccart/Magicslider/composer.json
+++ b/app/code/Magiccart/Magicslider/composer.json
@@ -1,17 +1,19 @@
 {
-  "name": "magiccart/module-magicslider",
-  "description": "N/A",
-  "require": {
-    "php": "~5.5.0|~5.6.0|~7.0.0",
-    "magento/framework": "1.0.0-beta",
-    "lib-libxml": "*"
-  },
+  "name": "magiccart/magicslider",
+  "description": "Banner slider flexibly to any page on live store.",
   "type": "magento2-module",
-  "version": "100.0.2",
   "license": [
     "OSL-3.0",
     "AFL-3.0"
   ],
+  "authors": [
+    {
+      "name": "Alothemes",
+      "email": "support@alothemes.com",
+      "homepage": "https://alothemes.com",
+      "role": "Technical Support"
+    }
+  ],
   "autoload": {
     "files": [ "registration.php" ],
     "psr-4": {
diff --git a/app/code/Magiccart/Magicslider/media/frontend_magicslider.jpg b/app/code/Magiccart/Magicslider/media/frontend_magicslider.jpg
new file mode 100644
index 0000000..8806feb
Binary files /dev/null and b/app/code/Magiccart/Magicslider/media/frontend_magicslider.jpg differ
diff --git a/app/code/Magiccart/Magicslider/view/frontend/templates/magicslider.phtml b/app/code/Magiccart/Magicslider/view/frontend/templates/magicslider.phtml
index 76047f8..cb5c0a1 100755
--- a/app/code/Magiccart/Magicslider/view/frontend/templates/magicslider.phtml
+++ b/app/code/Magiccart/Magicslider/view/frontend/templates/magicslider.phtml
@@ -9,7 +9,7 @@ if(!count($slider)) return;
     <?php foreach ($this->getFrontendCfg() as $opt) :?>
         data-<?php echo $opt ?>='<?php echo $this->getData($opt) ?>'
     <?php endforeach;?>  
-    data-adaptive-height="false"
+    data-lazy-load="ondemand"
     >
         <?php foreach ($slider as $image) :?>
 			<div class="item <?php echo $image->getmediaType() ?>"
@@ -21,7 +21,7 @@ if(!count($slider)) return;
                             $img_mobile = $image->getUrlMobile();
                             echo $img_mobile ? '<source media="(max-width: ' . $image->getWidthMobile() . 'px)" srcset=" ' . $img_mobile . ' ">' : '';     
                         ?>
-                        <img class="img-responsive" src="<?php echo $image->getUrl() ?>" alt="<?php echo __($image->getLabel()) ?>" title="<?php echo __($image->getLabel()) ?>" />
+                        <img class="img-responsive <?php /* @escapeNotVerified */ echo $this->getData('image-class') ?>" src="<?php echo $image->getUrl() ?>" alt="<?php echo __($image->getLabel()) ?>" title="<?php echo __($image->getLabel()) ?>" width="<?php echo $image->getWidth() ?>" height="<?php echo $image->getHeight() ?>" />
                     </picture>
     			</a>
 				<?php echo isset($image['caption']) ? $image['caption'] : ''; ?>
@@ -54,6 +54,13 @@ if(!count($slider)) return;
             var style = padding ? classes + '{float: left; padding-left: '+padding+'px; padding-right:'+padding+'px} ' + selector + '{margin-left: -'+padding+'px; margin-right: -'+padding+'px}' : '';
             $('head').append('<style type="text/css">'+style+'</style>');
             if(options.slidesToShow){
+                var lazy  = el.find('img.lazyload');
+                if(lazy.length){
+                    lazy.each(function(index) {
+                        $(this).data('lazy', $(this).data('src'));
+                        // $(this).attr('src', $(this).data('src')); // fixed data-adaptive-height="true"
+                    });
+                }
                 el.on('init', function(event, slick){
                     var video = $(this).find('.external-video');
                     video.click(function(event) {
diff --git a/app/code/Magiccart/Shopbrand/Block/Adminhtml/Helper/Renderer/Grid/Image.php b/app/code/Magiccart/Shopbrand/Block/Adminhtml/Helper/Renderer/Grid/Image.php
index d478f6e..7164aa1 100755
--- a/app/code/Magiccart/Shopbrand/Block/Adminhtml/Helper/Renderer/Grid/Image.php
+++ b/app/code/Magiccart/Shopbrand/Block/Adminhtml/Helper/Renderer/Grid/Image.php
@@ -1,66 +1,66 @@
-<?php
-/**
- * Magiccart 
- * @category 	Magiccart 
- * @copyright 	Copyright (c) 2014 Magiccart (http://www.magiccart.net/) 
- * @license 	http://www.magiccart.net/license-agreement.html
- * @Author: DOng NGuyen<nguyen@dvn.com>
- * @@Create Date: 2016-03-04 11:44:03
- * @@Modify Date: 2016-03-24 17:26:49
- * @@Function:
- */
-namespace Magiccart\Shopbrand\Block\Adminhtml\Helper\Renderer\Grid;
-
-class Image extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\AbstractRenderer
-{
-    /**
-     * Store manager.
-     *
-     * @var \Magento\Store\Model\StoreManagerInterface
-     */
-    protected $_storeManager;
-
-    /**
-     * Shopbrand factory.
-     *
-     * @var \Magestore\Shopbrand\Model\ShopbrandFactory
-     */
-    protected $_shopbrandFactory;
-
-    /**
-     * [__construct description].
-     *
-     * @param \Magento\Backend\Block\Context              $context
-     * @param \Magento\Store\Model\StoreManagerInterface  $storeManager
-     * @param \Magento\Cms\Model\BlockFactory $blockFactory
-     * @param array                                       $data
-     */
-    public function __construct(
-        \Magento\Backend\Block\Context $context,
-        \Magento\Store\Model\StoreManagerInterface $storeManager,
-        \Magiccart\Shopbrand\Model\ShopbrandFactory $shopbrandFactory,
-        array $data = []
-    ) {
-        parent::__construct($context, $data);
-        $this->_storeManager = $storeManager;
-        $this->_shopbrandFactory  = $shopbrandFactory;
-    }
-
-    /**
-     * Render action.
-     *
-     * @param \Magento\Framework\DataObject $row
-     *
-     * @return string
-     */
-    public function render(\Magento\Framework\DataObject $row)
-    {
-        $storeViewId = $this->getRequest()->getParam('store');
-        $brand = $this->_shopbrandFactory->create()->setStoreViewId($storeViewId)->load($row->getId());
-        $srcImage = $this->_storeManager->getStore()->getBaseUrl(
-                \Magento\Framework\UrlInterface::URL_TYPE_MEDIA
-            ) . $brand->getImage();
-
-        return '<image width="150" height="50" src ="'.$srcImage.'" alt="'.$brand->getImage().'" >';
-    }
-}
+<?php

+/**

+ * Magiccart 

+ * @category 	Magiccart 

+ * @copyright 	Copyright (c) 2014 Magiccart (http://www.magiccart.net/) 

+ * @license 	http://www.magiccart.net/license-agreement.html

+ * @Author: DOng NGuyen<nguyen@dvn.com>

+ * @@Create Date: 2016-03-04 11:44:03

+ * @@Modify Date: 2016-03-24 17:26:49

+ * @@Function:

+ */

+namespace Magiccart\Shopbrand\Block\Adminhtml\Helper\Renderer\Grid;

+

+class Image extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\AbstractRenderer

+{

+    /**

+     * Store manager.

+     *

+     * @var \Magento\Store\Model\StoreManagerInterface

+     */

+    protected $_storeManager;

+

+    /**

+     * Shopbrand factory.

+     *

+     * @var \Magestore\Shopbrand\Model\ShopbrandFactory

+     */

+    protected $_shopbrandFactory;

+

+    /**

+     * [__construct description].

+     *

+     * @param \Magento\Backend\Block\Context              $context

+     * @param \Magento\Store\Model\StoreManagerInterface  $storeManager

+     * @param \Magento\Cms\Model\BlockFactory $blockFactory

+     * @param array                                       $data

+     */

+    public function __construct(

+        \Magento\Backend\Block\Context $context,

+        \Magento\Store\Model\StoreManagerInterface $storeManager,

+        \Magiccart\Shopbrand\Model\ShopbrandFactory $shopbrandFactory,

+        array $data = []

+    ) {

+        parent::__construct($context, $data);

+        $this->_storeManager = $storeManager;

+        $this->_shopbrandFactory  = $shopbrandFactory;

+    }

+

+    /**

+     * Render action.

+     *

+     * @param \Magento\Framework\DataObject $row

+     *

+     * @return string

+     */

+    public function render(\Magento\Framework\DataObject $row)

+    {

+        $storeViewId = $this->getRequest()->getParam('store');

+        $brand = $this->_shopbrandFactory->create()->setStoreViewId($storeViewId)->load($row->getId());

+        $srcImage = $this->_storeManager->getStore()->getBaseUrl(

+                \Magento\Framework\UrlInterface::URL_TYPE_MEDIA

+            ) . $brand->getImage();

+

+        return '<image width="150" height="50" src ="'.$srcImage.'" alt="'.$brand->getImage().'" >';

+    }

+}

diff --git a/app/code/Magiccart/Testimonial/view/frontend/templates/list.phtml b/app/code/Magiccart/Testimonial/view/frontend/templates/list.phtml
index 7f87784..3abd214 100755
--- a/app/code/Magiccart/Testimonial/view/frontend/templates/list.phtml
+++ b/app/code/Magiccart/Testimonial/view/frontend/templates/list.phtml
@@ -1,81 +1,81 @@
-<?php
-/**
- * Magiccart 
- * @category    Magiccart 
- * @copyright   Copyright (c) 2014 Magiccart (http://www.magiccart.net/) 
- * @license     http://www.magiccart.net/license-agreement.html
- * @Author: Magiccart<team.magiccart@gmail.com>
- * @@Create Date: 2014-07-31 15:41:21
- * @@Modify Date: 2014-09-03 22:53:29
- * @@Function:
- */
- ?>
-<?php if(!$this->config['enabled']) return;?>
-<?php $title = isset($this->config['title']) ? $this->config['title'] : ''; ?>
-<?php $varchar = isset($this->config['varchar']) ? $this->config['varchar'] : 500; ?>
-<?php $selector     =   md5(rand()); //rand(0,666666); ?>
-
-<?php $testimonials = $this->_getTestimonial();?>
-<div class="customer-testimonials products-list">
-    <div class="page-title">
-        <h1><?php echo $this->__($title);?></h1>
-        <?php //if($this->config['write_testimonial']):?>
-        <div class="submit-testimonial">
-                <button class="button" onclick="setLocation('<?php echo $this->getFormUrl(); ?>')">
-                    <span>
-                        <span>
-                            <?php echo $this->__('Write Your Testimonial');?>                  
-                        </span>
-                    </span>
-                </button>
-        </div>
-        <?php //endif ?>
-    </div>
-    <?php echo $this->getPagerHtml();?>
-    <?php if ($testimonials->getSize()): ?>
-        <?php $i=0; foreach ($testimonials as $testimonial):?>
-            <ul>
-                <li class="item customer-testimonials-content<?php if($i==0):?> first<?php endif;?><?php if($i==(count($testimonial)-1)):?> last<?php endif;?>" name="<?php echo $testimonial->getName(); ?>" id="<?php echo $testimonial->getName(); ?>">
-                    <div class="grid12-2">
-                        <div class="customer">
-                            <img class="avatar" src="<?php echo $this->getImage($testimonial)?>" alt="<?php echo $this->__($testimonial->getTitle()) ?>" title="<?php echo $this->__($testimonial->getTitle()) ?>" />
-                        </div>
-                    </div>
-                    <div class="grid12-10">
-					    <div class="ratings">
-                            <div class="rating-box">
-                                <div class="rating" style="width:<?php echo ceil($testimonial->getRatingSummary() * 20) ?>%;"></div>
-
-                            </div>
-                        </div>
-					    
-                        <h2 class="product-name"><?php echo $testimonial->getName(); ?></h2>
-                        
-                        <div class="testimonial_text desc">
-                        <?php 
-                            $text   = $testimonial->getText();
-                            if(strlen($text) <= $varchar):
-                        ?>
-                            &ldquo;<?php echo $text ?>&rdquo;&nbsp;
-                        <?php else: ?>
-                            &ldquo;<?php echo substr($text, 0,  $varchar); ?>&rdquo;&nbsp;...&nbsp;
-                            <a href="<?php echo $this->getUrl('testimonial/index/view/id/'.$testimonial->getTestimonialId()); ?>"><?php echo $this->__('more'); ?></a>
-                        <?php endif ?>
-                        </div>
-                        <div class="testimonial-source">
-                            <span class="testimonial-author"><?php echo $testimonial->getName(); ?></span>
-                        <span class="testimonial-date">
-                            <?php echo date('F d, Y', Mage::getModel('core/date')->gmtTimestamp($testimonial->getCreatedTime())); ?>
-                        </span>
-                        </div>
-                    </div>
-                </li>
-            </ul>
-            <?php $i++; ?>
-        <?php endforeach;?>
-        <?php echo $this->getPagerHtml(); ?>
-    <?php else: ?>
-        <p class="note-msg"><?php echo $this->__('There is no testimonial submitted.'); ?></p>
-    <?php endif ?>
-</div>
-
+<?php

+/**

+ * Magiccart 

+ * @category    Magiccart 

+ * @copyright   Copyright (c) 2014 Magiccart (http://www.magiccart.net/) 

+ * @license     http://www.magiccart.net/license-agreement.html

+ * @Author: Magiccart<team.magiccart@gmail.com>

+ * @@Create Date: 2014-07-31 15:41:21

+ * @@Modify Date: 2014-09-03 22:53:29

+ * @@Function:

+ */

+ ?>

+<?php if(!$this->config['enabled']) return;?>

+<?php $title = isset($this->config['title']) ? $this->config['title'] : ''; ?>

+<?php $varchar = isset($this->config['varchar']) ? $this->config['varchar'] : 500; ?>

+<?php $selector     =   md5(rand()); //rand(0,666666); ?>

+

+<?php $testimonials = $this->_getTestimonial();?>

+<div class="customer-testimonials products-list">

+    <div class="page-title">

+        <h1><?php echo $this->__($title);?></h1>

+        <?php //if($this->config['write_testimonial']):?>

+        <div class="submit-testimonial">

+                <button class="button" onclick="setLocation('<?php echo $this->getFormUrl(); ?>')">

+                    <span>

+                        <span>

+                            <?php echo $this->__('Write Your Testimonial');?>                  

+                        </span>

+                    </span>

+                </button>

+        </div>

+        <?php //endif ?>

+    </div>

+    <?php echo $this->getPagerHtml();?>

+    <?php if ($testimonials->getSize()): ?>

+        <?php $i=0; foreach ($testimonials as $testimonial):?>

+            <ul>

+                <li class="item customer-testimonials-content<?php if($i==0):?> first<?php endif;?><?php if($i==(count($testimonial)-1)):?> last<?php endif;?>" name="<?php echo $testimonial->getName(); ?>" id="<?php echo $testimonial->getName(); ?>">

+                    <div class="grid12-2">

+                        <div class="customer">

+                            <img class="avatar" src="<?php echo $this->getImage($testimonial)?>" alt="<?php echo $this->__($testimonial->getTitle()) ?>" title="<?php echo $this->__($testimonial->getTitle()) ?>" />

+                        </div>

+                    </div>

+                    <div class="grid12-10">

+					    <div class="ratings">

+                            <div class="rating-box">

+                                <div class="rating" style="width:<?php echo ceil($testimonial->getRatingSummary() * 20) ?>%;"></div>

+

+                            </div>

+                        </div>

+					    

+                        <h2 class="product-name"><?php echo $testimonial->getName(); ?></h2>

+                        

+                        <div class="testimonial_text desc">

+                        <?php 

+                            $text   = $testimonial->getText();

+                            if(strlen($text) <= $varchar):

+                        ?>

+                            &ldquo;<?php echo $text ?>&rdquo;&nbsp;

+                        <?php else: ?>

+                            &ldquo;<?php echo substr($text, 0,  $varchar); ?>&rdquo;&nbsp;...&nbsp;

+                            <a href="<?php echo $this->getUrl('testimonial/index/view/id/'.$testimonial->getTestimonialId()); ?>"><?php echo $this->__('more'); ?></a>

+                        <?php endif ?>

+                        </div>

+                        <div class="testimonial-source">

+                            <span class="testimonial-author"><?php echo $testimonial->getName(); ?></span>

+                        <span class="testimonial-date">

+                            <?php echo date('F d, Y', Mage::getModel('core/date')->gmtTimestamp($testimonial->getCreatedTime())); ?>

+                        </span>

+                        </div>

+                    </div>

+                </li>

+            </ul>

+            <?php $i++; ?>

+        <?php endforeach;?>

+        <?php echo $this->getPagerHtml(); ?>

+    <?php else: ?>

+        <p class="note-msg"><?php echo $this->__('There is no testimonial submitted.'); ?></p>

+    <?php endif ?>

+</div>

+

diff --git a/app/code/Magiccart/Testimonial/view/frontend/templates/view.phtml b/app/code/Magiccart/Testimonial/view/frontend/templates/view.phtml
index d5a919e..bd650ca 100755
--- a/app/code/Magiccart/Testimonial/view/frontend/templates/view.phtml
+++ b/app/code/Magiccart/Testimonial/view/frontend/templates/view.phtml
@@ -1,52 +1,52 @@
-<?php
-/**
- * Magiccart 
- * @category    Magiccart 
- * @copyright   Copyright (c) 2014 Magiccart (http://www.magiccart.net/) 
- * @license     http://www.magiccart.net/license-agreement.html
- * @Author: Magiccart<team.magiccart@gmail.com>
- * @@Create Date: 2014-07-31 15:41:21
- * @@Modify Date: 2016-03-29 14:31:50
- * @@Function:
- */
- ?>
-<?php if(!$this->config['enabled']) return;?>
-<?php $title = isset($this->config['title']) ? $this->config['title'] : ''; ?>
-
-<?php $testimonial = $this->_getTestimonial();
-?>
-<div class="testimonial-customer-view ">
-    <div class="page-title">
-        <h1><?php echo $this->__($title);?></h1>
-        <?php //if($this->config['write_testimonial']):?>
-        <div class="submit">
-            <button class="button" onclick="setLocation('<?php echo $this->getFormUrl(); ?>')">
-                <span><span><?php echo __('Write Your Testimonial');?></span></span>
-            </button>
-        </div>
-        <?php //endif ?>
-    </div>
-    <div class="testimonial">
-    <?php if ($testimonial): ?>
-            <div class="customer" name="<?php echo $testimonial->getName(); ?>" id="<?php echo $testimonial->getName(); ?>">
-                    <div class="customer">
-                        <img class="avatar" src="<?php echo $this->getImage($testimonial)?>" alt="<?php echo $this->__($testimonial->getTitle()) ?>" title="<?php echo __($testimonial->getTitle()) ?>" />
-                        <?php echo $testimonial->getName(); ?>
-                    </div>
-                    <div class="rating-box">
-                        <div class="rating" style="width:<?php echo ceil($testimonial->getRatingSummary() * 20) ?>%;"></div>
-                    </div>
-                    <div class="content">&ldquo;<?php echo $testimonial->getText(); ?>&rdquo;&nbsp;</div>
-                    <div class="source">
-                        <span class="author"><?php echo $testimonial->getName(); ?></span>
-                        <span class="date">
-                            <?php echo date('F d, Y', Mage::getModel('core/date')->gmtTimestamp($testimonial->getCreatedTime())); ?>
-                        </span>
-                    </div>
-            </div>
-    <?php else: ?>
-        <p class="note-msg"><?php echo __('There are no testimonial matching the selection.') ?></p>
-    <?php endif ?>        
-    </div>
-</div>
-
+<?php

+/**

+ * Magiccart 

+ * @category    Magiccart 

+ * @copyright   Copyright (c) 2014 Magiccart (http://www.magiccart.net/) 

+ * @license     http://www.magiccart.net/license-agreement.html

+ * @Author: Magiccart<team.magiccart@gmail.com>

+ * @@Create Date: 2014-07-31 15:41:21

+ * @@Modify Date: 2016-03-29 14:31:50

+ * @@Function:

+ */

+ ?>

+<?php if(!$this->config['enabled']) return;?>

+<?php $title = isset($this->config['title']) ? $this->config['title'] : ''; ?>

+

+<?php $testimonial = $this->_getTestimonial();

+?>

+<div class="testimonial-customer-view ">

+    <div class="page-title">

+        <h1><?php echo $this->__($title);?></h1>

+        <?php //if($this->config['write_testimonial']):?>

+        <div class="submit">

+            <button class="button" onclick="setLocation('<?php echo $this->getFormUrl(); ?>')">

+                <span><span><?php echo __('Write Your Testimonial');?></span></span>

+            </button>

+        </div>

+        <?php //endif ?>

+    </div>

+    <div class="testimonial">

+    <?php if ($testimonial): ?>

+            <div class="customer" name="<?php echo $testimonial->getName(); ?>" id="<?php echo $testimonial->getName(); ?>">

+                    <div class="customer">

+                        <img class="avatar" src="<?php echo $this->getImage($testimonial)?>" alt="<?php echo $this->__($testimonial->getTitle()) ?>" title="<?php echo __($testimonial->getTitle()) ?>" />

+                        <?php echo $testimonial->getName(); ?>

+                    </div>

+                    <div class="rating-box">

+                        <div class="rating" style="width:<?php echo ceil($testimonial->getRatingSummary() * 20) ?>%;"></div>

+                    </div>

+                    <div class="content">&ldquo;<?php echo $testimonial->getText(); ?>&rdquo;&nbsp;</div>

+                    <div class="source">

+                        <span class="author"><?php echo $testimonial->getName(); ?></span>

+                        <span class="date">

+                            <?php echo date('F d, Y', Mage::getModel('core/date')->gmtTimestamp($testimonial->getCreatedTime())); ?>

+                        </span>

+                    </div>

+            </div>

+    <?php else: ?>

+        <p class="note-msg"><?php echo __('There are no testimonial matching the selection.') ?></p>

+    <?php endif ?>        

+    </div>

+</div>

+

diff --git a/app/code/Magiccart/Testimonial/view/frontend/web/css/source/_module.less b/app/code/Magiccart/Testimonial/view/frontend/web/css/source/_module.less
index 1a4ac59..f09ef54 100644
--- a/app/code/Magiccart/Testimonial/view/frontend/web/css/source/_module.less
+++ b/app/code/Magiccart/Testimonial/view/frontend/web/css/source/_module.less
@@ -1,25 +1,25 @@
-.field-summary_rating .rating-box .rating:before {
-	content: "\f005" "\f005" "\f005" "\f005" "\f005";
-    font-family: "FontAwesome";
-    color: #f2c800;
-    z-index: 2;
-    position: relative;
-    font-size: 14px;
-    height: 12px;
-    display: block;
-    line-height: 12px;
-    font-weight: 400;
-    letter-spacing: 2px;
-}
-.testimonial-index-index .button-o{
-    margin-bottom: 30px;
-}
-.testimonial-form-index .std-input-box .product-review-box #product-review-table{
-    width:auto;
-}
-.field-rating .review-field-ratings .review-field-rating .label::after{
-  content: '*';
-  color: #e02b27;
-  font-size: 13px;
-  margin: 0 0 0 5px;  
+.field-summary_rating .rating-box .rating:before {

+	content: "\f005" "\f005" "\f005" "\f005" "\f005";

+    font-family: "FontAwesome";

+    color: #f2c800;

+    z-index: 2;

+    position: relative;

+    font-size: 14px;

+    height: 12px;

+    display: block;

+    line-height: 12px;

+    font-weight: 400;

+    letter-spacing: 2px;

+}

+.testimonial-index-index .button-o{

+    margin-bottom: 30px;

+}

+.testimonial-form-index .std-input-box .product-review-box #product-review-table{

+    width:auto;

+}

+.field-rating .review-field-ratings .review-field-rating .label::after{

+  content: '*';

+  color: #e02b27;

+  font-size: 13px;

+  margin: 0 0 0 5px;  

 }
\ No newline at end of file
diff --git a/app/design/frontend/Alothemes/milano/Magento_Catalog/templates/product/view/timer.phtml b/app/design/frontend/Alothemes/milano/Magento_Catalog/templates/product/view/timer.phtml
index d3d7d9d..eefaad5 100644
--- a/app/design/frontend/Alothemes/milano/Magento_Catalog/templates/product/view/timer.phtml
+++ b/app/design/frontend/Alothemes/milano/Magento_Catalog/templates/product/view/timer.phtml
@@ -24,8 +24,7 @@ if(!$timer) return;
 <h3 class="slogan-countdown"><?php echo __('Hurry Up!') ?> <span><?php echo __('Only 12 Left In Stock.') ?></span></h3>
 <?php
 	$sold 	= $_soldHelper->getSoldQty($_product);
-	$stockItem = $_product->getExtensionAttributes()->getStockItem();
-	$qty 	= (int) $stockItem->getQty();
+	$qty 	= $_soldHelper->getProductQty($_product);
 	$total_sale = $qty + $sold;
 	$percent = $qty > 0 ? round(($qty/$total_sale) * 100) : 0;
 ?>
diff --git a/app/design/frontend/Alothemes/milano/Magento_Theme/web/css/source/_module.less b/app/design/frontend/Alothemes/milano/Magento_Theme/web/css/source/_module.less
index 1819826..4f5dfd6 100755
--- a/app/design/frontend/Alothemes/milano/Magento_Theme/web/css/source/_module.less
+++ b/app/design/frontend/Alothemes/milano/Magento_Theme/web/css/source/_module.less
@@ -340,3 +340,4 @@ body {
 }
 
 }
+.nav-mobile .all-category, #tooltip-label{display: none;}
\ No newline at end of file
diff --git a/app/design/frontend/Alothemes/milano/Magepow_Ajaxcart/templates/popup.phtml b/app/design/frontend/Alothemes/milano/Magepow_Ajaxcart/templates/popup.phtml
index ec21f88..ea9e49f 100644
--- a/app/design/frontend/Alothemes/milano/Magepow_Ajaxcart/templates/popup.phtml
+++ b/app/design/frontend/Alothemes/milano/Magepow_Ajaxcart/templates/popup.phtml
@@ -42,7 +42,7 @@ $countDown = ($helper->getCountDownTime() > 0) ? $helper->getCountDownTime() : 0
             <?php echo $block->getRelatedAdded() ? $block->escapeHtml(__(' and related products')) : ''; ?>
             <?php echo $block->escapeHtml(__(' to your shopping cart.')); ?>
         </p>
-
+        <div class="ajaxcart-wrapper-main">
         <?php if ($helper->isShowProductImage()) :?>
             <div class="product-image">
                 <img src="<?php echo $block->escapeUrl(
@@ -66,10 +66,51 @@ $countDown = ($helper->getCountDownTime() > 0) ? $helper->getCountDownTime() : 0
                         ?>
                     </span>
                 </div>
+                <?php endif; ?>
+            </div>
+        <?php endif; ?>
+        <div class="actions">
+            <?php if ($showCheckoutLink) : ?>
+                <div class="checkout-link">
+                    <a href="<?php echo $block->escapeUrl($block->getUrl('checkout')); ?>" class="action checkout">
+                        <span><?php echo $block->escapeHtml(__('Go to checkout')); ?></span>
+                    </a>
+                </div>
             <?php endif; ?>
+            <div class="btn-viewcart <?php echo (!$showContinue) ? 'full-width' : ''; ?>">      
+                <a
+                href="<?php echo $block->escapeUrl($block->getUrl('checkout/cart')); ?>"
+                title="<?php echo $block->escapeHtml(__($helper->getBtnViewcartText())); ?>"
+                class="view-cart action"
+                >
+                    <span><?php echo $block->escapeHtml(__($helper->getBtnViewcartText())); ?></span>
+                    <?php if ($helper->getCountDownActive() == \Magepow\Ajaxcart\Model\Config\Source\Countdown::POPUP_COUNTDOWN_VIEW_CART_BTN
+                    && $helper->getCountDownTime() > 0) :?>
+                    <span class="<?php echo ($helper->getCountDownActive() == \Magepow\Ajaxcart\Model\Config\Source\Countdown::POPUP_COUNTDOWN_VIEW_CART_BTN) ? 'countdown' : ''; ?>">
+                        (<?php echo $block->escapeHtml($helper->getCountDownTime()); ?>)
+                    </span>
+                    <?php endif; ?>
+                </a>
+            </div>
+            <?php if ($showContinue) : ?>
+                <div class="btn-continue">
+                    <button
+                    class="continue action"
+                    type="button"
+                    title="<?php echo $block->escapeHtml(__($helper->getBtnContinueText())); ?>"
+                    >
+                        <span><?php echo $block->escapeHtml(__($helper->getBtnContinueText())); ?></span>
+                        <?php if ($helper->getCountDownActive() == \Magepow\Ajaxcart\Model\Config\Source\Countdown::POPUP_COUNTDOWN_CONTINUE_BTN
+                        && $helper->getCountDownTime() > 0) :?>
+                        <span class="<?php echo ($helper->getCountDownActive() == \Magepow\Ajaxcart\Model\Config\Source\Countdown::POPUP_COUNTDOWN_CONTINUE_BTN) ? 'countdown' : ''; ?>">
+                            (<?php echo $block->escapeHtml($helper->getCountDownTime()); ?>)
+                        </span>
+                    <?php endif; ?>
+                </button>
+            </div>
+        <?php endif; ?>
         </div>
-    <?php endif; ?>
-
+    </div>
     <?php if ($showCartInfo || $showCheckoutLink) :?>
         <div class="cart-info">
             <?php if ($showCartInfo) : ?>
@@ -161,47 +202,7 @@ $countDown = ($helper->getCountDownTime() > 0) ? $helper->getCountDownTime() : 0
 
 <?php echo $block->getChildHtml('ajaxcart.popup.suggest'); ?>
 
-<div class="actions">
-    <?php if ($showCheckoutLink) : ?>
-        <div class="checkout-link">
-            <a href="<?php echo $block->escapeUrl($block->getUrl('checkout')); ?>" class="action checkout">
-                <span><?php echo $block->escapeHtml(__('Go to checkout')); ?></span>
-            </a>
-        </div>
-    <?php endif; ?>
-    <div class="btn-viewcart <?php echo (!$showContinue) ? 'full-width' : ''; ?>">      
-        <a
-        href="<?php echo $block->escapeUrl($block->getUrl('checkout/cart')); ?>"
-        title="<?php echo $block->escapeHtml(__($helper->getBtnViewcartText())); ?>"
-        class="view-cart action"
-        >
-            <span><?php echo $block->escapeHtml(__($helper->getBtnViewcartText())); ?></span>
-            <?php if ($helper->getCountDownActive() == \Magepow\Ajaxcart\Model\Config\Source\Countdown::POPUP_COUNTDOWN_VIEW_CART_BTN
-            && $helper->getCountDownTime() > 0) :?>
-            <span class="<?php echo ($helper->getCountDownActive() == \Magepow\Ajaxcart\Model\Config\Source\Countdown::POPUP_COUNTDOWN_VIEW_CART_BTN) ? 'countdown' : ''; ?>">
-                (<?php echo $block->escapeHtml($helper->getCountDownTime()); ?>)
-            </span>
-            <?php endif; ?>
-        </a>
-    </div>
-    <?php if ($showContinue) : ?>
-        <div class="btn-continue">
-            <button
-            class="continue action"
-            type="button"
-            title="<?php echo $block->escapeHtml(__($helper->getBtnContinueText())); ?>"
-            >
-                <span><?php echo $block->escapeHtml(__($helper->getBtnContinueText())); ?></span>
-                <?php if ($helper->getCountDownActive() == \Magepow\Ajaxcart\Model\Config\Source\Countdown::POPUP_COUNTDOWN_CONTINUE_BTN
-                && $helper->getCountDownTime() > 0) :?>
-                <span class="<?php echo ($helper->getCountDownActive() == \Magepow\Ajaxcart\Model\Config\Source\Countdown::POPUP_COUNTDOWN_CONTINUE_BTN) ? 'countdown' : ''; ?>">
-                    (<?php echo $block->escapeHtml($helper->getCountDownTime()); ?>)
-                </span>
-            <?php endif; ?>
-        </button>
-    </div>
-<?php endif; ?>
-</div>
+
 </div>
 
 <script type="text/x-magento-init">
diff --git a/app/design/frontend/Alothemes/milano/Magepow_Stickycart/templates/stickycart.phtml b/app/design/frontend/Alothemes/milano/Magepow_Stickycart/templates/stickycart.phtml
new file mode 100644
index 0000000..9793def
--- /dev/null
+++ b/app/design/frontend/Alothemes/milano/Magepow_Stickycart/templates/stickycart.phtml
@@ -0,0 +1,113 @@
+
+<?php
+/*
+ * @category: Magepow
+ * @copyright: Copyright (c) 2014 Magepow (http://www.magepow.com/)
+ * @licence: http://www.magepow.com/license-agreement
+ * @author: MichaelHa
+ * @create date: 2019-07-15 17:19:50
+ * @LastEditors: MichaelHa
+ * @LastEditTime: 2020-03-12 21:18:27
+ */
+
+/** @var $block \Magento\Catalog\Block\Product\View */
+
+$_product = $block->getProduct();
+if ( !$_product->isSaleable() ){
+  return;
+}
+$buttonTitle = __('Add to Cart');
+if ($_product->getTypeId() == 'bundle'){
+  $buttonTitle = __('Customize and Add to Cart');
+}
+$helper        = $this->helper('Magepow\Stickycart\Helper\Data');
+$aloHelper     = $this->helper('Magiccart\Alothemes\Helper\Data');
+$timer         = $aloHelper->getTimer($_product);
+$_imageHelper  = $this->helper('Magento\Catalog\Helper\Image');
+$heightScroll  = $helper->getHeightScroll();
+$widthtImage   = $helper->getWidthImage();
+$heightImage   = $helper->getHeightImage();
+$imageUrl      = $_imageHelper->init($_product, 'product_base_image')
+                ->constrainOnly(TRUE)
+                ->keepAspectRatio(TRUE)
+                ->keepTransparency(TRUE)
+                ->keepFrame(FALSE)
+                ->resize($widthtImage, $widthtImage)->getUrl();
+?>
+<div class="stickyCart">
+  <div class="stickyChild">
+    <div class="contentHide">
+      <div class="clSticky" id="timerSticky">
+        <?php if($timer): ?>
+        <?php echo $timer; ?>
+        <?php else: ?>
+          <div class="stickyProductName"><?php echo $block->escapeHtml($_product->getName()) ?></div>
+        <?php endif; ?>
+      </div>
+    </div>
+    <div class="contentHide">
+      <div class="clSticky">
+        <div class="imgBorder">
+          <div class="borderImg">
+            <img class="stickyImg" src="<?php echo $imageUrl; ?>">
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="contentHide">
+      <div class="clSticky" id="parentQtySticky">
+          <div class="quantity">
+            <div class="product-qty">
+              <div class="control custom-qty">
+                
+                  <button  type="button" class="reduced items" onclick="var result = document.getElementById('qtySticky'); var qtySticky = result.value; if( !isNaN( qtySticky ) && qtySticky > 1 ) result.value--;return false;">
+                    <i class="fa fa-minus-square-o"></i>
+                  </button> 
+               
+                <input  name="qty"
+                        type="number" 
+                        min="1" 
+                        value="<?= $block->getProductDefaultQty() * 1 ?>"
+                        title="<?= $block->escapeHtmlAttr(__('Qty')) ?>"
+                        data-validate="<?= $block->escapeHtml(json_encode($block->getQuantityValidators())) ?>"
+                        id="qtySticky"
+                        class="qty"
+                >
+                
+                  <button  type="button" class="increase items" onclick="var result = document.getElementById('qtySticky'); var qtySticky = result.value; if( !isNaN( qtySticky )) result.value++;return false;">
+                    <i class="fa fa-plus-square-o"></i>
+                  </button>
+                   
+                
+              </div>
+            </div>
+          </div>
+      </div>
+    </div>
+    <div class="contentShow">
+      <div class="clSticky">
+        <button id="btnSticky" class="action button" title="<?= $block->escapeHtmlAttr($buttonTitle) ?>"><span><?= $block->escapeHtml($buttonTitle) ?></span></button>
+      </div>
+    </div>
+  </div>
+</div>
+<?php
+$formData = [
+    'stickyCart'                =>  '.stickyCart',
+    'qtySticky'                 =>  '#qtySticky',
+    'quantity'                  =>  '.quantity',
+    'btnSticky'                 =>  '#btnSticky'
+];
+$stickyData = $this->helper('Magento\Framework\Json\Helper\Data')->jsonEncode($formData);
+?>
+<script type="text/x-magento-init">
+    {
+        "*": {
+            "magepowStickycart": {
+            "jsonData":<?php /* @noEscape */ echo $stickyData; ?>,
+            "typeProduct": "<?php /* @noEscape */ echo $_product->getTypeId(); ?>",
+            "scrollHeight": <?php   echo $heightScroll; ?>
+            }
+        }
+    }
+</script>
\ No newline at end of file
diff --git a/app/design/frontend/Alothemes/milano/Magiccart_Alothemes/layout/default.xml b/app/design/frontend/Alothemes/milano/Magiccart_Alothemes/layout/default.xml
deleted file mode 100755
index c564298..0000000
--- a/app/design/frontend/Alothemes/milano/Magiccart_Alothemes/layout/default.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0"?>
-<!--
-/**
- * Magestore
- *
- * NOTICE OF LICENSE
- *
- * This source file is subject to the Magestore.com license that is
- * available through the world-wide-web at this URL:
- * http://www.magestore.com/license-agreement.html
- *
- * DISCLAIMER
- *
- * Do not edit or add to this file if you wish to upgrade this extension to newer
- * version in the future.
- *
- * @category    Magestore
- * @package     Magestore_Bannerslider
- * @copyright   Copyright (c) 2012 Magestore (http://www.magestore.com/)
- * @license     http://www.magestore.com/license-agreement.html
- */
--->
-<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
-    <head>
-        <link src="Magiccart_Alothemes::css/plugins/jquery.fancybox.css"/>
-    </head>
-</page>
diff --git a/app/design/frontend/Alothemes/milano/Magiccart_Alothemes/templates/recentorder.phtml b/app/design/frontend/Alothemes/milano/Magiccart_Alothemes/templates/recentorder.phtml
index f22f45e..129bbb0 100644
--- a/app/design/frontend/Alothemes/milano/Magiccart_Alothemes/templates/recentorder.phtml
+++ b/app/design/frontend/Alothemes/milano/Magiccart_Alothemes/templates/recentorder.phtml
@@ -132,7 +132,7 @@ use Magento\Framework\App\Action\Action;
 		                        <?php endif; ?>
 		                    </div>
 		                    <div class="product details product-item-details products-textlink clearfix">
-		                    	<div class="someone-purchased"><?php echo __('Someone purchased a')?></div>
+	                    		<div class="someone-purchased"><?php echo __('Someone purchased a')?></div>
 		                        <?php
 		                            $_productNameStripped = $block->stripTags($_product->getName(), null, true);
 		                        ?>
@@ -142,6 +142,13 @@ use Magento\Framework\App\Action\Action;
 		                                <?php /* @escapeNotVerified */ echo $_helper->productAttribute($_product, $_product->getName(), 'name'); ?>
 		                            </a>
 		                        </h2>
+		                        <?php 
+		                        	$info = $this->getInfoPurchased($_product);
+		                        	if($info) :
+		                         ?>
+			                        <span class="time-purchased"><?php echo $this->getInfoTime($info['time']) ?></span>
+			                        <span class="address-purchased"><?php echo $info['address'] ?></span>
+			                    <?php endif; ?>
 		                        <?php echo $showReview ? $block->getReviewsSummaryHtml($_product, $templateType) : ''; ?>
 		                        <?php /* @escapeNotVerified */ echo $block->getProductPrice($_product) ?>
 		                        <?php echo $block->getProductDetailsHtml($_product); ?>
diff --git a/app/design/frontend/Alothemes/milano/etc/view.xml b/app/design/frontend/Alothemes/milano/etc/view.xml
index 467a884..b7a8f27 100755
--- a/app/design/frontend/Alothemes/milano/etc/view.xml
+++ b/app/design/frontend/Alothemes/milano/etc/view.xml
@@ -193,6 +193,10 @@
                 <width>75</width>
                 <height>90</height>
             </image>
+            <image id="swatch_image" type="swatch_image">
+                 <width>30</width>
+                 <height>30</height>
+            </image>
         </images>
     </media>
     <vars module="Magento_Catalog">
diff --git a/app/design/frontend/Alothemes/milano/web/css/extension.css b/app/design/frontend/Alothemes/milano/web/css/extension.css
index e43b524..84558d4 100644
--- a/app/design/frontend/Alothemes/milano/web/css/extension.css
+++ b/app/design/frontend/Alothemes/milano/web/css/extension.css
@@ -1,6 +1,11 @@
+
+.product-items .swatch-option.image {
+  border-radius: 50%;
+}
+
 /*popup cart*/
 .modals-ajaxcart.modal-popup .modal-inner-wrap{
-    width:400px;
+    width:450px;
     max-width: 100%;
   }
   .modals-ajaxcart.modal-popup .modal-content{
@@ -9,11 +14,41 @@
   .modals-ajaxcart .product-image{
     display: flex;
     justify-content: center;
-    margin-bottom: 20px;
+    margin-right: 15px;
+  }
+  .modal-popup.modals-ajaxcart .modal-header {
+    padding-bottom: 5px;
+  }
+  .modals-ajaxcart .cart-info {
+    display: none;
   }
   .modals-ajaxcart .modal-content .header{
     font-size: 18px;
     margin-bottom: 20px;
+    display: none;
+  }
+  .modals-ajaxcart .block {
+    margin-bottom: 0;
+  }
+  .ajaxcart-wrapper-main {
+    display: flex;
+    align-items: center;
+    justify-content: center;
+  }
+  .ajaxcart-wrapper-main .actions {
+    display: flex;
+  }
+  .modals-ajaxcart .modal-content .actions .checkout-link{
+    margin-right: 15px;
+  }
+  .ajaxcart-wrapper-main .full-width {
+    width: auto !important;
+  }
+  .ajaxcart-wrapper-main .product-image img{
+    width: 85px;
+    height: 85px;
+    object-fit: cover;
+    border-radius: 50%;
   }
   .modals-ajaxcart .modal-content .subtotal{
     font-weight: 600;
@@ -36,7 +71,7 @@
     background: transparent;
   }
   .modals-ajaxcart .modal-content .actions >*:not(:last-child){
-    margin-bottom: 15px;
+   /* margin-bottom: 15px;*/
   }
   /*cookie*/
   body .message.global.cookie.magepow-gdpr-cookie-notice{
@@ -77,9 +112,6 @@
     .modal-popup.modals-ajaxcart{
       left:0;
     }
-    .modals-ajaxcart .product-image img{
-      width:auto;
-    }
     .modal-popup.modals-ajaxcart .modal-inner-wrap{
       margin-left:auto;
       margin-right: auto;
@@ -87,7 +119,17 @@
       height: auto;
     }
   }
-  
+  @media(max-width:480px) {
+    .modals-ajaxcart .product-image {
+      display: none;
+    }
+  }
+  @media(max-width:360px) {
+    .modal-popup.modals-ajaxcart .modal-content {
+      padding-left: 15px;
+      padding-right: 15px;
+    }
+  }
   body .products.wrapper ~ .toolbar:before{
     right:auto;
     left:50%;
@@ -97,4 +139,10 @@
     left:50%;
     right:auto;
     transform: translate(-50%,0);
-  }
\ No newline at end of file
+  }
+  /* right to left */
+.rtl .modals-ajaxcart .product-image,
+.rtl .modals-ajaxcart .modal-content .actions .checkout-link {
+  margin-right: 0;
+  margin-left: 15px;
+}
diff --git a/app/design/frontend/Alothemes/milano/web/css/responsive.css b/app/design/frontend/Alothemes/milano/web/css/responsive.css
index 28d90fd..b1bb5a5 100644
--- a/app/design/frontend/Alothemes/milano/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano/web/css/responsive.css
@@ -6,7 +6,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -82,6 +84,12 @@
 	.nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;}
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -172,7 +180,13 @@
 }
 
 /* Iphone 5 landscape */
-@media(max-width:767px) {	
+@media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}	
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	
@@ -341,6 +355,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano/web/css/rtl.css b/app/design/frontend/Alothemes/milano/web/css/rtl.css
index 2d25d17..50ad772 100644
--- a/app/design/frontend/Alothemes/milano/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano/web/css/styles.css b/app/design/frontend/Alothemes/milano/web/css/styles.css
index cdc7d9d..bfe9cdd 100644
--- a/app/design/frontend/Alothemes/milano/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano/web/css/styles.css
@@ -2331,7 +2331,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2360,7 +2362,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -2521,6 +2527,84 @@ button.button span,button span,.continue span,
 .block.block-related .block-subtitle {font-size: 13px;}
 /* updated style bundle */
 .page-product-bundle .product-view .product-shop .product-social-links,.page-product-bundle .product-add-form .product-social-links{margin: 0;}
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media (min-width: 992px) and (max-width: 1200px) {	
 	.additional-timer-block .alo-count-down{display: block;margin-right: 0;}
 	.slogan-countdown{display: block;}
diff --git a/app/design/frontend/Alothemes/milano10/web/css/responsive.css b/app/design/frontend/Alothemes/milano10/web/css/responsive.css
index cd51cdd..a92d778 100755
--- a/app/design/frontend/Alothemes/milano10/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano10/web/css/responsive.css
@@ -6,7 +6,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -94,6 +96,12 @@
 	.nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;}
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -170,7 +178,13 @@
 }
 
 /* Iphone 5 landscape */
-@media(max-width:767px) {	
+@media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}	
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 
@@ -322,6 +336,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano10/web/css/rtl.css b/app/design/frontend/Alothemes/milano10/web/css/rtl.css
index 2223b71..83e50c9 100755
--- a/app/design/frontend/Alothemes/milano10/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano10/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano10/web/css/styles.css b/app/design/frontend/Alothemes/milano10/web/css/styles.css
index 4a60767..c3afcb3 100755
--- a/app/design/frontend/Alothemes/milano10/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano10/web/css/styles.css
@@ -2363,7 +2363,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2392,7 +2394,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -2551,6 +2557,84 @@ button.button span,button span,.continue span,
 /* updated style related */
 .block.block-related .block-subtitle .action.select:hover{color: #666666;}
 .block.block-related .block-subtitle {font-size: 13px;}
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media (min-width: 992px) and (max-width: 1200px) {	
 	.additional-timer-block .alo-count-down{display: block;margin-right: 0;}
 	.slogan-countdown{display: block;}
diff --git a/app/design/frontend/Alothemes/milano11/web/css/responsive.css b/app/design/frontend/Alothemes/milano11/web/css/responsive.css
index c5362ea..b0eac04 100644
--- a/app/design/frontend/Alothemes/milano11/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano11/web/css/responsive.css
@@ -7,7 +7,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -82,6 +84,12 @@
 	.nav-before-open .nav-toggle:hover:before{color: #fff;}
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
 	.header .header-right .header-search .dropdown-switcher{top: 100%;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -168,6 +176,12 @@
 
 /* Iphone 5 landscape */
 @media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	.menu-mobile .nav-toggle{display: block;}
@@ -334,6 +348,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano11/web/css/rtl.css b/app/design/frontend/Alothemes/milano11/web/css/rtl.css
index 2ab5a59..9580bfa 100644
--- a/app/design/frontend/Alothemes/milano11/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano11/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano11/web/css/styles.css b/app/design/frontend/Alothemes/milano11/web/css/styles.css
index 761f144..cab6030 100644
--- a/app/design/frontend/Alothemes/milano11/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano11/web/css/styles.css
@@ -2388,7 +2388,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2417,7 +2419,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -2646,6 +2652,84 @@ button.button span,button span,.continue span,
   right:auto;
   transform: translate(-50%,0);
 }
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media(max-width:1600px){
   .block-banner .banner.right{
     width:calc( 435 * 100% / 1720);
diff --git a/app/design/frontend/Alothemes/milano12/web/css/responsive.css b/app/design/frontend/Alothemes/milano12/web/css/responsive.css
index c9994e5..0aeafc4 100644
--- a/app/design/frontend/Alothemes/milano12/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano12/web/css/responsive.css
@@ -7,7 +7,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -93,6 +95,12 @@
 	.minicart-wrapper .block-minicart{width: 320px;}
 	body.cms-index-index .visible-homepage{text-align: center;}
 	.visible-homepage .main{text-align: center;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -179,6 +187,12 @@
 
 /* Iphone 5 landscape */
 @media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	.menu-mobile .nav-toggle{display: block;}
@@ -343,6 +357,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano12/web/css/rtl.css b/app/design/frontend/Alothemes/milano12/web/css/rtl.css
index 3bc987d..c710aaf 100644
--- a/app/design/frontend/Alothemes/milano12/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano12/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano12/web/css/styles.css b/app/design/frontend/Alothemes/milano12/web/css/styles.css
index 88450d9..59403ec 100644
--- a/app/design/frontend/Alothemes/milano12/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano12/web/css/styles.css
@@ -2335,7 +2335,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2364,7 +2366,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -2571,6 +2577,84 @@ body.cms-index-index .visible-homepage{display: block;}
 .custom-block-social .social-link:hover{color: #fff;background-color: #f55;border-color: #f55;}
 .custom-block-social .list-inline li:last-child .social-link{margin-right: 0;}
 .custom-block-social .main{margin: 0px 30px 30px;border-top: 1px solid #ddd;padding-top: 30px;}
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media (min-width: 992px) and (max-width: 1200px) {	
 	.additional-timer-block .alo-count-down{display: block;margin-right: 0;}
 	.slogan-countdown{display: block;}
diff --git a/app/design/frontend/Alothemes/milano13/web/css/responsive.css b/app/design/frontend/Alothemes/milano13/web/css/responsive.css
index 96674de..99c79a7 100644
--- a/app/design/frontend/Alothemes/milano13/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano13/web/css/responsive.css
@@ -4,7 +4,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -79,6 +81,12 @@
 	/* .nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;} */
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -166,7 +174,13 @@
 }
 
 /* Iphone 5 landscape */
-@media(max-width:767px) {	
+@media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}	
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	
@@ -335,6 +349,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano13/web/css/rtl.css b/app/design/frontend/Alothemes/milano13/web/css/rtl.css
index 3053389..df34eec 100644
--- a/app/design/frontend/Alothemes/milano13/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano13/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano13/web/css/styles.css b/app/design/frontend/Alothemes/milano13/web/css/styles.css
index 12ec9dd..f6b13ff 100644
--- a/app/design/frontend/Alothemes/milano13/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano13/web/css/styles.css
@@ -2331,7 +2331,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2360,7 +2362,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -2521,6 +2527,84 @@ button.button span,button span,.continue span,
 .block.block-related .block-subtitle {font-size: 13px;}
 /* updated style bundle */
 .page-product-bundle .product-view .product-shop .product-social-links,.page-product-bundle .product-add-form .product-social-links{margin: 0;}
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media (min-width: 992px) and (max-width: 1200px) {	
 	.additional-timer-block .alo-count-down{display: block;margin-right: 0;}
 	.slogan-countdown{display: block;}
diff --git a/app/design/frontend/Alothemes/milano14/web/css/responsive.css b/app/design/frontend/Alothemes/milano14/web/css/responsive.css
index 06da921..d8ebf55 100644
--- a/app/design/frontend/Alothemes/milano14/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano14/web/css/responsive.css
@@ -4,7 +4,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -79,6 +81,12 @@
 	/* .nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;} */
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -166,7 +174,10 @@
 }
 
 /* Iphone 5 landscape */
-@media(max-width:767px) {	
+@media(max-width:767px) {
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}	
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	
@@ -335,6 +346,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
@@ -810,6 +824,9 @@
 	}
 }
 @media(max-width:767px){
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
 	.block-footer-bottom .toggle-content{
 		display: block;
 	}
diff --git a/app/design/frontend/Alothemes/milano14/web/css/rtl.css b/app/design/frontend/Alothemes/milano14/web/css/rtl.css
index b68ffcc..cca58e9 100644
--- a/app/design/frontend/Alothemes/milano14/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano14/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano14/web/css/styles.css b/app/design/frontend/Alothemes/milano14/web/css/styles.css
index 96966cf..78ad980 100644
--- a/app/design/frontend/Alothemes/milano14/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano14/web/css/styles.css
@@ -2331,7 +2331,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2360,7 +2362,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -3508,6 +3514,84 @@ ul.ft-social li a:hover{
 .block-minicart .block-content > .actions > .primary .action.primary{
   font-size: 14px;
 }
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media(max-width:767px){
   .minicart-items-wrapper{
     max-height: 200px;
diff --git a/app/design/frontend/Alothemes/milano15/web/css/responsive.css b/app/design/frontend/Alothemes/milano15/web/css/responsive.css
index 3d27dbe..a5dfa3a 100644
--- a/app/design/frontend/Alothemes/milano15/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano15/web/css/responsive.css
@@ -4,7 +4,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -79,6 +81,12 @@
 	/* .nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;} */
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -166,7 +174,13 @@
 }
 
 /* Iphone 5 landscape */
-@media(max-width:767px) {	
+@media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}	
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	
@@ -335,6 +349,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano15/web/css/rtl.css b/app/design/frontend/Alothemes/milano15/web/css/rtl.css
index de5795a..ce130c2 100644
--- a/app/design/frontend/Alothemes/milano15/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano15/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano15/web/css/styles.css b/app/design/frontend/Alothemes/milano15/web/css/styles.css
index 071d220..76817dd 100644
--- a/app/design/frontend/Alothemes/milano15/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano15/web/css/styles.css
@@ -2331,7 +2331,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2360,7 +2362,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -3643,6 +3649,84 @@ ul.ft-social li a:hover{
 .block-minicart .block-content > .actions > .primary .action.primary{
   font-size: 14px;
 }
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media(max-width:767px){
   .minicart-items-wrapper{
     max-height: 200px;
diff --git a/app/design/frontend/Alothemes/milano16/web/css/responsive.css b/app/design/frontend/Alothemes/milano16/web/css/responsive.css
index 7f6b233..5a89987 100644
--- a/app/design/frontend/Alothemes/milano16/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano16/web/css/responsive.css
@@ -4,7 +4,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -79,6 +81,12 @@
 	/* .nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;} */
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -166,7 +174,13 @@
 }
 
 /* Iphone 5 landscape */
-@media(max-width:767px) {	
+@media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}	
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	
@@ -335,6 +349,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano16/web/css/rtl.css b/app/design/frontend/Alothemes/milano16/web/css/rtl.css
index faead0a..2bbafb7 100644
--- a/app/design/frontend/Alothemes/milano16/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano16/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano16/web/css/styles.css b/app/design/frontend/Alothemes/milano16/web/css/styles.css
index 4264fb6..1f6a411 100644
--- a/app/design/frontend/Alothemes/milano16/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano16/web/css/styles.css
@@ -2333,7 +2333,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2362,7 +2364,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -3533,6 +3539,84 @@ body .post-posed-date .month{
 .block-minicart .block-content > .actions > .primary .action.primary{
   font-size: 14px;
 }
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media(max-width:767px){
   .minicart-items-wrapper{
     max-height: 200px;
diff --git a/app/design/frontend/Alothemes/milano2/web/css/responsive.css b/app/design/frontend/Alothemes/milano2/web/css/responsive.css
index 5360214..b533703 100755
--- a/app/design/frontend/Alothemes/milano2/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano2/web/css/responsive.css
@@ -7,7 +7,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -89,6 +91,12 @@
 	.nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;}
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -196,6 +204,12 @@
 
 /* Iphone 5 landscape */
 @media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}
 	.header .logo{max-width: 160px;}
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title,.slide-vertical,.main-content .col-left.sidebar{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
@@ -365,6 +379,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano2/web/css/rtl.css b/app/design/frontend/Alothemes/milano2/web/css/rtl.css
index f81b03c..8d169b5 100755
--- a/app/design/frontend/Alothemes/milano2/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano2/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano2/web/css/styles.css b/app/design/frontend/Alothemes/milano2/web/css/styles.css
index fdfe674..2c502fc 100755
--- a/app/design/frontend/Alothemes/milano2/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano2/web/css/styles.css
@@ -2357,7 +2357,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2386,7 +2388,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -2548,6 +2554,84 @@ button.button span,button span,.continue span,
 .block.block-related .block-subtitle {font-size: 13px;}
 /* updated style bundle */
 .page-product-bundle .product-view .product-shop .product-social-links,.page-product-bundle .product-add-form .product-social-links{margin: 0;}
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media (min-width: 992px) and (max-width: 1200px) {	
 	.additional-timer-block .alo-count-down{display: block;margin-right: 0;}
 	.slogan-countdown{display: block;}
diff --git a/app/design/frontend/Alothemes/milano3/web/css/responsive.css b/app/design/frontend/Alothemes/milano3/web/css/responsive.css
index 0047772..c03253a 100755
--- a/app/design/frontend/Alothemes/milano3/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano3/web/css/responsive.css
@@ -6,7 +6,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -82,6 +84,12 @@
 	.nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;}
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -171,6 +179,12 @@
 
 /* Iphone 5 landscape */
 @media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	.menu-mobile .nav-toggle{display: block;}
@@ -341,6 +355,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano3/web/css/rtl.css b/app/design/frontend/Alothemes/milano3/web/css/rtl.css
index 840e7e1..89d5a17 100755
--- a/app/design/frontend/Alothemes/milano3/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano3/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano3/web/css/styles.css b/app/design/frontend/Alothemes/milano3/web/css/styles.css
index a8d4c0d..0231e00 100755
--- a/app/design/frontend/Alothemes/milano3/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano3/web/css/styles.css
@@ -2346,7 +2346,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2375,7 +2377,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -2536,6 +2542,84 @@ button.button span,button span,.continue span,
 /* updated style related */
 .block.block-related .block-subtitle .action.select:hover{color: #666666;}
 .block.block-related .block-subtitle {font-size: 13px;}
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media (min-width: 992px) and (max-width: 1200px) {	
 	.additional-timer-block .alo-count-down{display: block;margin-right: 0;}
 	.slogan-countdown{display: block;}
diff --git a/app/design/frontend/Alothemes/milano4/web/css/responsive.css b/app/design/frontend/Alothemes/milano4/web/css/responsive.css
index 68f7afd..eddfccd 100755
--- a/app/design/frontend/Alothemes/milano4/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano4/web/css/responsive.css
@@ -6,7 +6,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -81,6 +83,12 @@
 	.nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;}
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -171,6 +179,12 @@
 
 /* Iphone 5 landscape */
 @media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	.menu-mobile .nav-toggle{display: block;}
@@ -338,6 +352,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano4/web/css/rtl.css b/app/design/frontend/Alothemes/milano4/web/css/rtl.css
index c20c73a..d4b61ac 100755
--- a/app/design/frontend/Alothemes/milano4/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano4/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano4/web/css/styles.css b/app/design/frontend/Alothemes/milano4/web/css/styles.css
index 50cfcba..885823e 100755
--- a/app/design/frontend/Alothemes/milano4/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano4/web/css/styles.css
@@ -2338,7 +2338,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2367,7 +2369,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -2528,6 +2534,84 @@ button.button span,button span,.continue span,
 /* updated style related */
 .block.block-related .block-subtitle .action.select:hover{color: #666666;}
 .block.block-related .block-subtitle {font-size: 13px;}
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media (min-width: 992px) and (max-width: 1200px) {	
 	.additional-timer-block .alo-count-down{display: block;margin-right: 0;}
 	.slogan-countdown{display: block;}
diff --git a/app/design/frontend/Alothemes/milano5/web/css/responsive.css b/app/design/frontend/Alothemes/milano5/web/css/responsive.css
index c408a6b..f133bcf 100755
--- a/app/design/frontend/Alothemes/milano5/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano5/web/css/responsive.css
@@ -11,7 +11,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -79,6 +81,12 @@
 	.nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;}
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -167,6 +175,12 @@
 
 /* Iphone 5 landscape */
 @media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title,.slide-vertical{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	.menu-mobile .nav-toggle{display: block;}
@@ -336,6 +350,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano5/web/css/rtl.css b/app/design/frontend/Alothemes/milano5/web/css/rtl.css
index 1869227..2c64192 100755
--- a/app/design/frontend/Alothemes/milano5/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano5/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano5/web/css/styles.css b/app/design/frontend/Alothemes/milano5/web/css/styles.css
index 9246596..8895011 100755
--- a/app/design/frontend/Alothemes/milano5/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano5/web/css/styles.css
@@ -2341,7 +2341,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2370,7 +2372,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -2529,6 +2535,84 @@ button.button span,button span,.continue span,
 /* updated style related */
 .block.block-related .block-subtitle .action.select:hover{color: #666666;}
 .block.block-related .block-subtitle {font-size: 13px;}
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media (min-width: 992px) and (max-width: 1200px) {	
 	.additional-timer-block .alo-count-down{display: block;margin-right: 0;}
 	.slogan-countdown{display: block;}
diff --git a/app/design/frontend/Alothemes/milano6/web/css/responsive.css b/app/design/frontend/Alothemes/milano6/web/css/responsive.css
index 6022c0e..01c4a15 100755
--- a/app/design/frontend/Alothemes/milano6/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano6/web/css/responsive.css
@@ -6,7 +6,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -73,6 +75,12 @@
 	.nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;}
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -169,6 +177,12 @@
 
 /* Iphone 5 landscape */
 @media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title,.slide-vertical{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	.menu-mobile .nav-toggle{display: block;}
@@ -342,6 +356,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano6/web/css/rtl.css b/app/design/frontend/Alothemes/milano6/web/css/rtl.css
index c293019..4990384 100755
--- a/app/design/frontend/Alothemes/milano6/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano6/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano6/web/css/styles.css b/app/design/frontend/Alothemes/milano6/web/css/styles.css
index cdefddd..2edd4e4 100755
--- a/app/design/frontend/Alothemes/milano6/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano6/web/css/styles.css
@@ -2343,7 +2343,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2372,7 +2374,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -2533,6 +2539,84 @@ button.button span,button span,.continue span,
 /* updated style related */
 .block.block-related .block-subtitle .action.select:hover{color: #666666;}
 .block.block-related .block-subtitle {font-size: 13px;}
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media (min-width: 992px) and (max-width: 1200px) {	
 	.additional-timer-block .alo-count-down{display: block;margin-right: 0;}
 	.slogan-countdown{display: block;}
diff --git a/app/design/frontend/Alothemes/milano7/web/css/responsive.css b/app/design/frontend/Alothemes/milano7/web/css/responsive.css
index f14d1bf..ea82435 100755
--- a/app/design/frontend/Alothemes/milano7/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano7/web/css/responsive.css
@@ -7,7 +7,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -81,6 +83,12 @@
 	.nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;}
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -167,6 +175,12 @@
 
 /* Iphone 5 landscape */
 @media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	.menu-mobile .nav-toggle{display: block;}
@@ -329,6 +343,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano7/web/css/rtl.css b/app/design/frontend/Alothemes/milano7/web/css/rtl.css
index 4aefc4d..0cae985 100755
--- a/app/design/frontend/Alothemes/milano7/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano7/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano7/web/css/styles.css b/app/design/frontend/Alothemes/milano7/web/css/styles.css
index e09eb50..d120426 100755
--- a/app/design/frontend/Alothemes/milano7/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano7/web/css/styles.css
@@ -2334,7 +2334,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2363,7 +2365,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -2521,6 +2527,84 @@ button.button span,button span,.continue span,
 /* updated style related */
 .block.block-related .block-subtitle .action.select:hover{color: #666666;}
 .block.block-related .block-subtitle {font-size: 13px;}
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media (min-width: 992px) and (max-width: 1200px) {	
 	.additional-timer-block .alo-count-down{display: block;margin-right: 0;}
 	.slogan-countdown{display: block;}
diff --git a/app/design/frontend/Alothemes/milano8/web/css/responsive.css b/app/design/frontend/Alothemes/milano8/web/css/responsive.css
index 41f7210..4d10107 100755
--- a/app/design/frontend/Alothemes/milano8/web/css/responsive.css
+++ b/app/design/frontend/Alothemes/milano8/web/css/responsive.css
@@ -6,7 +6,9 @@
 /* Design for a width of 960-1024 px
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 */
-
+#backtotop {
+	z-index: 9999;
+}
 /* 992px <= width < 1200px */
 @media (min-width: 992px) and (max-width: 1200px) {	
   .mage-column.mega-block-right{position: relative;clear: both;}
@@ -80,6 +82,12 @@
 	.nav-before-open .nav-toggle:before{position: static;content: "\f00d";font-family: FontAwesome;color: #fff;font-size: 20px;}
 	.nav-before-open .nav-toggle:hover:before{color: #fff;}
 	.nav-sections .navigation-mobile .all-category{display: none !important;}
+	.message.global.cookie.magepow-gdpr-cookie-notice .notice-cookie-content {
+		font-size: 13px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 75px;
+	}
 }
 
 @media (min-width: 768px) and (max-width: 991px) {
@@ -167,6 +175,12 @@
 
 /* Iphone 5 landscape */
 @media(max-width:767px) {
+	.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+		bottom: 68px;
+	}
+	.cookie-message .notify-slider-wrapper {
+		bottom: 100px;	
+	}
 	.nav-sections-item-content .magicmenu .nav-desktop,.header-logo .nav-toggle,.nav-sections-item-title{display: none;visibility: hidden;}
 	.nav-sections .mean-nav ul.nav-mobile{display: block !important;}
 	.menu-mobile .nav-toggle{display: block;}
@@ -324,6 +338,9 @@
 }
 
 @media only screen and (max-width: 639px) {
+	.recentorder.suggest-slider {
+		display: none;
+	}
 	.col-mobile-plus-12{width:100%}
 	.col-mobile-plus-6{width:50%}
 	.col-mobile-plus-4{width:30.3333333333%}
diff --git a/app/design/frontend/Alothemes/milano8/web/css/rtl.css b/app/design/frontend/Alothemes/milano8/web/css/rtl.css
index ba08227..32425f2 100755
--- a/app/design/frontend/Alothemes/milano8/web/css/rtl.css
+++ b/app/design/frontend/Alothemes/milano8/web/css/rtl.css
@@ -21,8 +21,16 @@
  * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
  * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  */
- body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
- body.rtl {direction: rtl;}
+body.rtl,.rtl .main,.rtl select,.rtl input,.rtl textarea{text-align: right;}
+body.rtl {direction: rtl;}
+.rtl .suggest-slider .x-close {
+ 	right: auto;
+ 	left: 5px;
+}
+.rtl .stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 0;
+	margin-left: 10px;
+}
  /* For: Header */
  	.rtl .figcaption .text-slide{direction: ltr;}
 	.rtl .header-top .top-left,.rtl .content-seach,.rtl .content-logo,.rtl .top-links li,.rtl .top-links .or{float: right;}
diff --git a/app/design/frontend/Alothemes/milano8/web/css/styles.css b/app/design/frontend/Alothemes/milano8/web/css/styles.css
index 748dd32..972e33b 100755
--- a/app/design/frontend/Alothemes/milano8/web/css/styles.css
+++ b/app/design/frontend/Alothemes/milano8/web/css/styles.css
@@ -2335,7 +2335,9 @@ button.button span,button span,.continue span,
 	-moz-box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 	box-shadow: -1px 2px 6px rgba(30,32,40,.3);
 }
-
+.cookie-message .notify-slider-wrapper {
+	bottom: 55px;
+}
 .notify-slider {
   position: relative;
   overflow: hidden;
@@ -2364,7 +2366,11 @@ button.button span,button span,.continue span,
 .notify-slider .product-item-details {padding: 12px 25px 12px 10px;font-size: 13px;width: calc(100% - 85px);text-align: left;line-height: 1;}
 .notify-slider .hover-box,.notify-slider .product-hover .sticker{display: none;}
 .notify-slider.products-grid .product-name a{font-size:13px;}
-.notify-slider.products-grid .price-box{margin: 5px 0 5px;}
+.notify-slider.products-grid .price-box{margin: 5px 0 5px;display: none;}
+.notify-slider.products-grid .time-purchased {
+	display: block;
+	margin-bottom: 7px;
+}
 .notify-slider .someone-purchased{margin-bottom: 10px;}
 .suggest-slider .x-close:before{content: "\f00d";font-family: 'FontAwesome';font-size:14px;}
 .notify-slider .item:hover .images-container{border: 0;}
@@ -2522,6 +2528,84 @@ button.button span,button span,.continue span,
 /* updated style related */
 .block.block-related .block-subtitle .action.select:hover{color: #666666;}
 .block.block-related .block-subtitle {font-size: 13px;}
+/* sticky add to cart */
+body.catalog-product-view .message.global.cookie.magepow-gdpr-cookie-notice {
+	display: none !important;
+}
+.stickyCart {
+	padding: 10px;
+}
+.stickyCart,
+.stickyCart .stickyChild,
+.stickyCart .stickyChild #parentQtySticky {
+	height: auto;
+}
+.stickyCart .stickyChild .clSticky {
+	padding-top: 0;
+	padding-bottom: 0;
+}
+.stickyCart .custom-qty {
+    margin: 0 0 0 0;
+    background-color: #f5f5f5;
+}
+.cookie-message.show-add-cart-bottom .notify-slider-wrapper {
+	bottom: 93px;
+}
+.stickyCart .alo-count-down {
+	position: static;
+	
+}
+.stickyCart .alo-count-down .countdown {
+	display: flex;
+}
+.stickyCart .alo-count-down .countdown .timer-box {
+	margin-bottom: 0;
+
+}
+.stickyCart .alo-count-down .countdown .timer-box:not(:last-child) {
+	margin-right: 10px;
+}
+.stickyCart .stickyChild .clSticky #btnSticky {
+	height: 35px;
+	border-color: #ff5555;
+	background-color: #ff5555;
+}
+.stickyCart .stickyChild .clSticky #btnSticky span {
+	font-size: 12px;
+	color: #ffffff;
+}
+.stickyCart .custom-qty:before,
+.stickyCart .custom-qty:after {
+	content: "";
+	display: table;
+}
+.stickyCart .custom-qty:after {
+	clear: left;
+}
+.stickyCart .custom-qty .items {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    margin: 0;
+    padding: 0;
+    color: #999999;
+    cursor: pointer;
+    float: left;
+    height: 35px;
+    line-height: 35px;
+    text-align: center;
+    width: 35px;
+}
+.stickyCart .custom-qty input.qty {
+	background-color: transparent;
+    border: 0px solid #dddee0;
+    float: left;
+    height: 35px;
+    text-align: center;
+    width: 35px !important;
+    color: #333333;
+    font-size: 13px;
+    font-family: "Montserrat",sans-serif;
+}
 @media (min-width: 992px) and (max-width: 1200px) {	
 	.additional-timer-block .alo-count-down{display: block;margin-right: 0;}
 	.slogan-countdown{display: block;}

commit 2bc48b0a4c5a2b50810618da2705c3311c164d98
Author: Alex Dong <support@alothemes.com>
Date:   Wed Apr 15 08:04:31 2020 +0700

    Update Alothemes

diff --git a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Block.php b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Block.php
index 5b163e7..148fdd8 100755
--- a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Block.php
+++ b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Block.php
@@ -6,7 +6,7 @@
  * @license     http://www.magiccart.net/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2016-01-05 10:40:51
- * @@Modify Date: 2019-09-19 21:40:25
+ * @@Modify Date: 2020-04-06 21:40:25
  * @@Function:
  */
 
@@ -192,12 +192,9 @@ class Block extends \Magento\Backend\Block\Widget\Grid\Extended
 		$this->setMassactionIdField('block_id');
 		$this->getMassactionBlock()->setFormFieldName('exportIds');
 
-        $themesCollections = \Magento\Framework\App\ObjectManager::getInstance()->create('Magento\Theme\Model\Theme\Collection');
-		$themesCollections->addConstraint(Collection::CONSTRAINT_AREA, Area::AREA_FRONTEND);
-		$themes = [];
-		foreach ($themesCollections as $key => $value) {
-			$themes[$value->getData('theme_path')] = $value->getData('theme_title');
-		}
+        $theme = \Magento\Framework\App\ObjectManager::getInstance()->create('Magiccart\Alothemes\Model\Export\Theme');
+        $themes = $theme->toOptionArray();
+        
 		$this->getMassactionBlock()->addItem('export', array(
 			'label'    => __('Export'),
 			'url'      => $this->getUrl('*/*/block'),
diff --git a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Edit/Form.php b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Edit/Form.php
index 9eb7baa..7d507a9 100755
--- a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Edit/Form.php
+++ b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Edit/Form.php
@@ -6,15 +6,12 @@
  * @license     http://www.magiccart.net/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2016-01-05 10:40:51
- * @@Modify Date: 2016-04-20 00:10:56
+ * @@Modify Date: 2020-04-06 00:10:56
  * @@Function:
  */
 
 namespace Magiccart\Alothemes\Block\Adminhtml\Export\Edit;
 
-use Magento\Theme\Model\Theme\Collection;
-use Magento\Framework\App\Area;
-
 class Form extends \Magento\Backend\Block\Widget\Form\Generic
 {
     /**
@@ -71,12 +68,8 @@ class Form extends \Magento\Backend\Block\Widget\Form\Generic
 
         $fieldset = $form->addFieldset('base_fieldset', ['legend' => __('System Export')]);
 
-        $themesCollections = \Magento\Framework\App\ObjectManager::getInstance()->create('Magento\Theme\Model\Theme\Collection');
-        $themesCollections->addConstraint(Collection::CONSTRAINT_AREA, Area::AREA_FRONTEND);
-        $themes = [];
-        foreach ($themesCollections as $value) {
-            $themes[$value->getData('theme_path')] = $value->getData('theme_title');
-        }
+        $theme = \Magento\Framework\App\ObjectManager::getInstance()->create('Magiccart\Alothemes\Model\Export\Theme');
+        $themes = $theme->toOptionArray();
 
         $fieldset->addField(
             'theme_path',
diff --git a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Lookbook.php b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Lookbook.php
index be72925..20c472c 100644
--- a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Lookbook.php
+++ b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Lookbook.php
@@ -6,7 +6,7 @@
  * @license     http://www.magiccart.net/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2016-01-05 10:40:51
- * @@Modify Date: 2018-11-12 14:49:59
+ * @@Modify Date: 2020-04-06 14:49:59
  * @@Function:
  */
 
@@ -38,12 +38,9 @@ class Lookbook extends \Magiccart\Lookbook\Block\Adminhtml\Lookbook\Grid
 		$this->setMassactionIdField('lookbook_id');
 		$this->getMassactionBlock()->setFormFieldName('exportIds');
 
-        $themesCollections = \Magento\Framework\App\ObjectManager::getInstance()->create('Magento\Theme\Model\Theme\Collection');
-		$themesCollections->addConstraint(Collection::CONSTRAINT_AREA, Area::AREA_FRONTEND);
-		$themes = [];
-		foreach ($themesCollections as $key => $value) {
-			$themes[$value->getData('theme_path')] = $value->getData('theme_title');
-		}
+        $theme = \Magento\Framework\App\ObjectManager::getInstance()->create('Magiccart\Alothemes\Model\Export\Theme');
+        $themes = $theme->toOptionArray();
+
 		$this->getMassactionBlock()->addItem('export', array(
 			'label'    => __('Export'),
 			'url'      => $this->getUrl('*/*/lookbook'),
diff --git a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Magicmenu.php b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Magicmenu.php
index 5589b5a..b532826 100755
--- a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Magicmenu.php
+++ b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Magicmenu.php
@@ -6,15 +6,12 @@
  * @license     http://www.magiccart.net/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2016-01-05 10:40:51
- * @@Modify Date: 2019-01-25 17:13:48
+ * @@Modify Date: 2020-04-06 17:13:48
  * @@Function:
  */
 
 namespace Magiccart\Alothemes\Block\Adminhtml\Export;
 
-use Magento\Theme\Model\Theme\Collection;
-use Magento\Framework\App\Area;
-
 class Magicmenu extends \Magiccart\Magicmenu\Block\Adminhtml\Extra\Grid
 {
 
@@ -68,16 +65,10 @@ class Magicmenu extends \Magiccart\Magicmenu\Block\Adminhtml\Extra\Grid
 	{
 		$this->setMassactionIdField('magicmenu_id');
 		$this->getMassactionBlock()->setFormFieldName('exportIds');
-		// $stores = \Magento\Framework\App\ObjectManager::getInstance()->get(
-  //           'Magento\Store\Model\System\Store'
-  //       )->getStoreValuesForForm(false, false);
-		        /** @var Collection $themesCollections */
-        $themesCollections = \Magento\Framework\App\ObjectManager::getInstance()->create('Magento\Theme\Model\Theme\Collection');
-		$themesCollections->addConstraint(Collection::CONSTRAINT_AREA, Area::AREA_FRONTEND);
-		$themes = [];
-		foreach ($themesCollections as $key => $value) {
-			$themes[$value->getData('theme_path')] = $value->getData('theme_title');
-		}
+
+        $theme = \Magento\Framework\App\ObjectManager::getInstance()->create('Magiccart\Alothemes\Model\Export\Theme');
+        $themes = $theme->toOptionArray();
+        
 		$this->getMassactionBlock()->addItem('export', array(
 			'label'    => __('Export'),
 			'url'      => $this->getUrl('*/*/magicmenu'),
diff --git a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Magicproduct.php b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Magicproduct.php
index 27fc21c..4928f8e 100755
--- a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Magicproduct.php
+++ b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Magicproduct.php
@@ -6,15 +6,12 @@
  * @license     http://www.magiccart.net/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2016-01-05 10:40:51
- * @@Modify Date: 2016-04-14 17:16:01
+ * @@Modify Date: 2020-04-06 17:16:01
  * @@Function:
  */
 
 namespace Magiccart\Alothemes\Block\Adminhtml\Export;
 
-use Magento\Theme\Model\Theme\Collection;
-use Magento\Framework\App\Area;
-
 class Magicproduct extends \Magiccart\Magicproduct\Block\Adminhtml\Product\Grid
 {
 
@@ -46,12 +43,9 @@ class Magicproduct extends \Magiccart\Magicproduct\Block\Adminhtml\Product\Grid
 		$this->setMassactionIdField('magicproduct_id');
 		$this->getMassactionBlock()->setFormFieldName('exportIds');
 
-        $themesCollections = \Magento\Framework\App\ObjectManager::getInstance()->create('Magento\Theme\Model\Theme\Collection');
-		$themesCollections->addConstraint(Collection::CONSTRAINT_AREA, Area::AREA_FRONTEND);
-		$themes = [];
-		foreach ($themesCollections as $key => $value) {
-			$themes[$value->getData('theme_path')] = $value->getData('theme_title');
-		}
+        $theme = \Magento\Framework\App\ObjectManager::getInstance()->create('Magiccart\Alothemes\Model\Export\Theme');
+        $themes = $theme->toOptionArray();
+
 		$this->getMassactionBlock()->addItem('export', array(
 			'label'    => __('Export'),
 			'url'      => $this->getUrl('*/*/magicproduct'),
diff --git a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Magicslider.php b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Magicslider.php
index 1208cc9..107b0fc 100755
--- a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Magicslider.php
+++ b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Magicslider.php
@@ -6,15 +6,12 @@
  * @license     http://www.magiccart.net/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2016-01-05 10:40:51
- * @@Modify Date: 2017-02-16 08:54:34
+ * @@Modify Date: 2020-04-06 08:54:34
  * @@Function:
  */
 
 namespace Magiccart\Alothemes\Block\Adminhtml\Export;
 
-use Magento\Theme\Model\Theme\Collection;
-use Magento\Framework\App\Area;
-
 class Magicslider extends \Magiccart\Magicslider\Block\Adminhtml\Magicslider\Grid
 {
 
@@ -38,12 +35,9 @@ class Magicslider extends \Magiccart\Magicslider\Block\Adminhtml\Magicslider\Gri
 		$this->setMassactionIdField('magicslider_id');
 		$this->getMassactionBlock()->setFormFieldName('exportIds');
 
-        $themesCollections = \Magento\Framework\App\ObjectManager::getInstance()->create('Magento\Theme\Model\Theme\Collection');
-		$themesCollections->addConstraint(Collection::CONSTRAINT_AREA, Area::AREA_FRONTEND);
-		$themes = [];
-		foreach ($themesCollections as $key => $value) {
-			$themes[$value->getData('theme_path')] = $value->getData('theme_title');
-		}
+        $theme = \Magento\Framework\App\ObjectManager::getInstance()->create('Magiccart\Alothemes\Model\Export\Theme');
+        $themes = $theme->toOptionArray();
+
 		$this->getMassactionBlock()->addItem('export', array(
 			'label'    => __('Export'),
 			'url'      => $this->getUrl('*/*/magicslider'),
diff --git a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Page.php b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Page.php
index b1102db..b72e98b 100755
--- a/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Page.php
+++ b/app/code/Magiccart/Alothemes/Block/Adminhtml/Export/Page.php
@@ -6,15 +6,12 @@
  * @license     http://www.magiccart.net/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2016-01-05 10:40:51
- * @@Modify Date: 2019-09-29 16:56:02
+ * @@Modify Date: 2020-04-06 16:56:02
  * @@Function:
  */
 
 namespace Magiccart\Alothemes\Block\Adminhtml\Export;
 
-use Magento\Theme\Model\Theme\Collection;
-use Magento\Framework\App\Area;
-
 class Page extends \Magento\Cms\Block\Adminhtml\Page\Grid
 {
 
@@ -41,12 +38,9 @@ class Page extends \Magento\Cms\Block\Adminhtml\Page\Grid
 		$this->setMassactionIdField('page_id');
 		$this->getMassactionBlock()->setFormFieldName('exportIds');
 
-        $themesCollections = \Magento\Framework\App\ObjectManager::getInstance()->create('Magento\Theme\Model\Theme\Collection');
-		$themesCollections->addConstraint(Collection::CONSTRAINT_AREA, Area::AREA_FRONTEND);
-		$themes = [];
-		foreach ($themesCollections as $key => $value) {
-			$themes[$value->getData('theme_path')] = $value->getData('theme_title');
-		}
+        $theme = \Magento\Framework\App\ObjectManager::getInstance()->create('Magiccart\Alothemes\Model\Export\Theme');
+        $themes = $theme->toOptionArray();
+
 		$this->getMassactionBlock()->addItem('export', array(
 			'label'    => __('Export'),
 			'url'      => $this->getUrl('*/*/page'),
diff --git a/app/code/Magiccart/Alothemes/Controller/Adminhtml/Import/Save.php b/app/code/Magiccart/Alothemes/Controller/Adminhtml/Import/Save.php
old mode 100755
new mode 100644
index 96f6bd6..5713965
--- a/app/code/Magiccart/Alothemes/Controller/Adminhtml/Import/Save.php
+++ b/app/code/Magiccart/Alothemes/Controller/Adminhtml/Import/Save.php
@@ -6,7 +6,7 @@
  * @license     http://www.magiccart.net/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2016-01-05 10:40:51
- * @@Modify Date: 2020-02-24 14:52:26
+ * @@Modify Date: 2020-04-11 14:52:26
  * @@Function:
  */
 
@@ -18,7 +18,8 @@ class Save extends \Magiccart\Alothemes\Controller\Adminhtml\Action
 {
 
 
-    protected $_store    = 0;
+    protected $_store = 0;
+    protected $themePath;
     protected $_filePath = '';
     protected $_dir = '';
     /**
@@ -27,16 +28,40 @@ class Save extends \Magiccart\Alothemes\Controller\Adminhtml\Action
     public function execute()
     {
         $resultRedirect = $this->_resultRedirectFactory->create();
-        
-        if($this->getRequest()->getParam('theme_path')) $this->ImportXml();
+
+        $this->themePath      = $this->getRequest()->getParam('theme_path');
+        if($this->themePath){
+            $this->_filePath = sprintf(self::CMS, $this->themePath);
+            $this->importXml();
+        }
 
         return $resultRedirect->setPath('*/*/index');
     }
 
-    public function ImportXml()
+    public function getImportFile($fileName)
+    {
+        $filePath = $this->_filePath .$fileName;
+        $backupFilePath = $this->_dir->getAbsolutePath($filePath);
+
+        if(is_readable($backupFilePath)) return $backupFilePath;
+
+        $parent = preg_replace( '/[0-9]/', '', $this->themePath );
+
+        $backupFilePath = str_replace($this->themePath, $parent, $backupFilePath);
+
+        if(is_readable($backupFilePath)) return $backupFilePath;
+
+        $backupFilePath = str_replace($parent, $parent . '1', $backupFilePath);
+
+        if(is_readable($backupFilePath)) return $backupFilePath;
+
+        $backupFilePath = str_replace($parent . '1', 'Alothemes/default', $backupFilePath);
+
+        return $backupFilePath;
+    }
+
+    public function importXml()
     {
-        $theme_path      = $this->getRequest()->getParam('theme_path');
-        $this->_filePath = sprintf(self::CMS, $theme_path);
         $this->_dir      = $this->_filesystem->getDirectoryWrite(DirectoryList::APP);
         $request = $this->getRequest()->getParams();
         $stores = isset($request['store_ids']) ? $request['store_ids'] : array(0);
@@ -51,13 +76,13 @@ class Save extends \Magiccart\Alothemes\Controller\Adminhtml\Action
         }
         $this->_store = is_array($stores) ? $stores : explode(',', $stores);
         if($request['action']){
-            if( isset($request['block']) && $request['block'] )   $this->ImportBlock(isset($request['overwrite_block']));
-            if( isset($request['page'])  && $request['page'] )    $this->ImportPage(isset($request['overwrite_page']));
-            if( isset($request['config'])  && $request['config'] )  $this->ImportSystem($scope);
-            $this->ImportMagicmenu();
-            $this->ImportMagicproduct();            
-            $this->ImportMagicslider();            
-            $this->ImportLookbook();            
+            if( isset($request['block']) && $request['block'] )   $this->importBlock(isset($request['overwrite_block']));
+            if( isset($request['page'])  && $request['page'] )    $this->importPage(isset($request['overwrite_page']));
+            if( isset($request['config'])  && $request['config'] )  $this->importSystem($scope);
+            $this->importMagicmenu();
+            $this->importMagicproduct();            
+            $this->importMagicslider();            
+            $this->importLookbook();            
         } else {
             if( isset($request['block']) && $request['block'] )   $this->removeBlock();
             if( isset($request['page'])  && $request['page'] )    $this->removePage();
@@ -67,8 +92,7 @@ class Save extends \Magiccart\Alothemes\Controller\Adminhtml\Action
     public function removeBlock()
     {
         $fileName = 'block.xml';
-        $filePath = $this->_filePath .$fileName;
-        $backupFilePath = $this->_dir->getAbsolutePath($filePath);
+        $backupFilePath = $this->getImportFile($fileName);
         $storeIds = $this->_store;
         try{
             if (!is_readable($backupFilePath)) throw new \Exception(__("Can't read data file: %1", $backupFilePath));
@@ -99,8 +123,7 @@ class Save extends \Magiccart\Alothemes\Controller\Adminhtml\Action
     public function removePage()
     {
         $fileName = 'page.xml';
-        $filePath = $this->_filePath .$fileName;
-        $backupFilePath = $this->_dir->getAbsolutePath($filePath);
+        $backupFilePath = $this->getImportFile($fileName);
         $storeIds = $this->_store;
         try{
             if (!is_readable($backupFilePath)) throw new \Exception(__("Can't read data file: %1", $backupFilePath));
@@ -127,11 +150,10 @@ class Save extends \Magiccart\Alothemes\Controller\Adminhtml\Action
         }        
     }
 
-    public function ImportBlock($overwrite=false)
+    public function importBlock($overwrite=false)
     {
         $fileName = 'block.xml';
-        $filePath = $this->_filePath .$fileName;
-        $backupFilePath = $this->_dir->getAbsolutePath($filePath);
+        $backupFilePath = $this->getImportFile($fileName);
         $storeIds = $this->_store;
         try{
             if (!is_readable($backupFilePath)) throw new \Exception(__("Can't read data file: %1", $backupFilePath));
@@ -169,11 +191,10 @@ class Save extends \Magiccart\Alothemes\Controller\Adminhtml\Action
         }
     }
 
-    public function ImportPage($overwrite=false)
+    public function importPage($overwrite=false)
     {
         $fileName = 'page.xml';
-        $filePath = $this->_filePath .$fileName;
-        $backupFilePath = $this->_dir->getAbsolutePath($filePath);
+        $backupFilePath = $this->getImportFile($fileName);
         $storeIds = $this->_store;
         try{
             if (!is_readable($backupFilePath)) throw new \Exception(__("Can't read data file: %1", $backupFilePath));
@@ -211,14 +232,12 @@ class Save extends \Magiccart\Alothemes\Controller\Adminhtml\Action
         }        
     }
 
-    public function ImportSystem($scope='default')
+    public function importSystem($scope='default')
     {
         $fileName = 'system.xml';
-        $filePath = $this->_filePath .$fileName;
-        $backupFilePath = $this->_dir->getAbsolutePath($filePath);
+        $backupFilePath = $this->getImportFile($fileName);
         $storeIds = $this->_store;
         try{
-
             if (!is_readable($backupFilePath)) throw new \Exception(__("Can't read data file: %1", $backupFilePath));
             $xmlObj = new \Magento\Framework\Simplexml\Config($backupFilePath);
             $num = 0;
@@ -269,11 +288,10 @@ class Save extends \Magiccart\Alothemes\Controller\Adminhtml\Action
         
     }
 
-    public function ImportMagicmenu()
+    public function importMagicmenu()
     {
         $fileName = 'magicmenu.xml';
-        $filePath = $this->_filePath .$fileName;
-        $backupFilePath = $this->_dir->getAbsolutePath($filePath);
+        $backupFilePath = $this->getImportFile($fileName);
         $storeIds = $this->_store;
         try{
             if (!is_readable($backupFilePath)) throw new \Exception(__("Can't read data file: %1", $backupFilePath));
@@ -305,15 +323,14 @@ class Save extends \Magiccart\Alothemes\Controller\Adminhtml\Action
             $this->messageManager->addSuccess(__('Import (%1) Item(s) in file "%2".', $num, $backupFilePath));              
 
         } catch (\Exception $e) {
-                $this->messageManager->addError(__('Can not import file "%1".<br/>"%2"', $backupFilePath, $e->getMessage()));
+            $this->messageManager->addError(__('Can not import file "%1".<br/>"%2"', $backupFilePath, $e->getMessage()));
         }
     }
 
-    public function ImportMagicproduct()
+    public function importMagicproduct()
     {
         $fileName = 'magicproduct.xml';
-        $filePath = $this->_filePath .$fileName;
-        $backupFilePath = $this->_dir->getAbsolutePath($filePath);
+        $backupFilePath = $this->getImportFile($fileName);
         $storeIds = $this->_store;
         try{
             if (!is_readable($backupFilePath)) throw new \Exception(__("Can't read data file: %1", $backupFilePath));
@@ -349,11 +366,10 @@ class Save extends \Magiccart\Alothemes\Controller\Adminhtml\Action
         }
     }
 
-    public function ImportMagicslider()
+    public function importMagicslider()
     {
         $fileName = 'magicslider.xml';
-        $filePath = $this->_filePath .$fileName;
-        $backupFilePath = $this->_dir->getAbsolutePath($filePath);
+        $backupFilePath = $this->getImportFile($fileName);
         $storeIds = $this->_store;
         try{
             if (!is_readable($backupFilePath)) throw new \Exception(__("Can't read data file: %1", $backupFilePath));
@@ -389,17 +405,13 @@ class Save extends \Magiccart\Alothemes\Controller\Adminhtml\Action
         }
     }
 
-    public function ImportLookbook()
+    public function importLookbook()
     {
         $fileName = 'lookbook.xml';
-        $filePath = $this->_filePath .$fileName;
-        $backupFilePath = $this->_dir->getAbsolutePath($filePath);
+        $backupFilePath = $this->getImportFile($fileName);
         $storeIds = $this->_store;
         try{
-            if (!is_readable($backupFilePath)){
-                return;
-                throw new \Exception(__("Can't read data file: %1", $backupFilePath));
-            } 
+            if (!is_readable($backupFilePath)) throw new \Exception(__("Can't read data file: %1", $backupFilePath));
             $xmlObj = new \Magento\Framework\Simplexml\Config($backupFilePath);
             $num = 0;
             $magicproduct = $xmlObj->getNode('lookbook');
diff --git a/app/code/Magiccart/Alothemes/Helper/Category.php b/app/code/Magiccart/Alothemes/Helper/Category.php
new file mode 100644
index 0000000..c669ce5
--- /dev/null
+++ b/app/code/Magiccart/Alothemes/Helper/Category.php
@@ -0,0 +1,43 @@
+<?php
+/**
+ * Copyright © Magento, Inc. All rights reserved.
+ * See COPYING.txt for license details.
+ */
+namespace Magiccart\Alothemes\Helper;
+
+use Magento\Catalog\Api\CategoryRepositoryInterface;
+use Magento\Framework\App\Helper\AbstractHelper;
+
+
+/**
+ * Alothemes category helper
+ *
+ * @SuppressWarnings(PHPMD.LongVariable)
+ */
+class Category extends AbstractHelper
+{
+
+    /**
+     * @var CategoryRepositoryInterface
+     */
+    protected $categoryRepository;
+
+    /**
+     * @param \Magento\Framework\App\Helper\Context $context
+     * @param CategoryRepositoryInterface $categoryRepository
+     */
+    public function __construct(
+        \Magento\Framework\App\Helper\Context $context,
+        CategoryRepositoryInterface $categoryRepository
+    ) {
+
+        $this->categoryRepository = $categoryRepository;
+        parent::__construct($context);
+    }
+
+    public function getCategory($categoryId)
+    {
+        return $this->categoryRepository->get($categoryId);
+    }
+    
+}
diff --git a/app/code/Magiccart/Alothemes/Helper/Sold.php b/app/code/Magiccart/Alothemes/Helper/Sold.php
index 8f29af0..d42e441 100755
--- a/app/code/Magiccart/Alothemes/Helper/Sold.php
+++ b/app/code/Magiccart/Alothemes/Helper/Sold.php
@@ -6,7 +6,7 @@
  * @license     http://www.magiccart.net/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2018-06-7 20:26:27
- * @@Modify Date: 2018-07-01 00:26:46
+ * @@Modify Date: 2020-03-30 00:26:46
  * @@Function:
  */
 
@@ -20,19 +20,23 @@ class Sold extends \Magento\Framework\App\Helper\AbstractHelper
      */
     protected $_localeDate;
 
-    protected $_reportCollectionFactory;    
-     public function __construct(
+    protected $_reportCollectionFactory;
+    protected $stockRegistry;
+
+    public function __construct(
         \Magento\Framework\App\Helper\Context $context,
         // \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate,
-        \Magento\Reports\Model\ResourceModel\Product\Sold\CollectionFactory  $reportCollectionFactory
+        \Magento\Reports\Model\ResourceModel\Product\Sold\CollectionFactory  $reportCollectionFactory,
+        \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry
     ) {
     	// $this->_localeDate = $localeDate;
     	$this->_reportCollectionFactory = $reportCollectionFactory;
+        $this->stockRegistry = $stockRegistry;
         parent::__construct($context);
     }
 
-    public function getSoldQty($product){
-
+    public function getSoldQty($product)
+    {
     	$productId = $product->getId();
     	$from 	= $product->getData('special_from_date');
     	$to  	= $product->getData('special_to_date');
@@ -55,4 +59,26 @@ class Sold extends \Magento\Framework\App\Helper\AbstractHelper
 
         return $sold;
     }
+
+    public function getProductQty($_product)
+    {
+        $qty = 0;
+        if($_product->getTypeId() == 'simple'){
+            $stockItem = $_product->getExtensionAttributes()->getStockItem();
+            $qty       = (int) $stockItem->getQty();
+            return $qty;
+        }
+        $allProducts = $_product->getTypeInstance()->getUsedProducts($_product, null);
+        foreach ($allProducts as $product) {
+            if ($product->isSaleable()) {
+                $stockItem = $this->stockRegistry->getStockItem(
+                        $product->getId(),
+                        $product->getStore()->getWebsiteId()
+                    );
+                $qty    += (int) $stockItem->getQty();
+            }
+        }
+        return $qty;
+    }
+
 }
diff --git a/app/code/Magiccart/Alothemes/Model/Export/Theme.php b/app/code/Magiccart/Alothemes/Model/Export/Theme.php
new file mode 100644
index 0000000..19e202a
--- /dev/null
+++ b/app/code/Magiccart/Alothemes/Model/Export/Theme.php
@@ -0,0 +1,29 @@
+<?php
+/**
+ * Magiccart 
+ * @category    Magiccart 
+ * @copyright   Copyright (c) 2014 Magiccart (http://www.magiccart.net/) 
+ * @license     http://www.magiccart.net/license-agreement.html
+ * @Author: DOng NGuyen<nguyen@dvn.com>
+ * @@Create Date: 2020-04-06 10:10:30
+ * @@Modify Date: 2020-04-06 14:28:03
+ * @@Function:
+ */
+namespace Magiccart\Alothemes\Model\Export;
+use Magento\Theme\Model\Theme\Collection;
+use Magento\Framework\App\Area;
+
+class Theme implements \Magento\Framework\Option\ArrayInterface
+{
+    public function toOptionArray()
+    {
+        $themesCollections = \Magento\Framework\App\ObjectManager::getInstance()->create('Magento\Theme\Model\Theme\Collection');
+        $themesCollections->addConstraint(Collection::CONSTRAINT_AREA, Area::AREA_FRONTEND);
+        $themes = [];
+        foreach ($themesCollections as $key => $value) {
+            $themes[$value->getData('theme_path')] = $value->getData('theme_title');
+        }
+        natsort($themes);
+        return $themes;
+    }
+}
diff --git a/app/code/Magiccart/Alothemes/Model/Import/Theme.php b/app/code/Magiccart/Alothemes/Model/Import/Theme.php
index 8b38cb3..b7545b9 100755
--- a/app/code/Magiccart/Alothemes/Model/Import/Theme.php
+++ b/app/code/Magiccart/Alothemes/Model/Import/Theme.php
@@ -65,7 +65,8 @@ class Theme implements \Magento\Framework\Option\ArrayInterface
                 unset($entry);
                 closedir($dir);
             }            
-        } 
+        }
+        natsort($result);
         return $result;
     }
 
diff --git a/app/code/Magiccart/Alothemes/Plugin/LazyResponse.php b/app/code/Magiccart/Alothemes/Plugin/LazyResponse.php
new file mode 100644
index 0000000..8b87cae
--- /dev/null
+++ b/app/code/Magiccart/Alothemes/Plugin/LazyResponse.php
@@ -0,0 +1,56 @@
+<?php
+/**
+ * @Author: nguyen
+ * @Date:   2020-02-12 14:01:01
+ * @Last Modified by:   nguyen
+ * @Last Modified time: 2020-02-12 21:14:03
+ */
+
+namespace Magiccart\Alothemes\Plugin;
+
+use Magento\Framework\App\Response\Http;
+
+class LazyResponse
+{ 
+    public $helper;
+    
+    public function __construct(
+        \Magiccart\Alothemes\Helper\Data $helper,
+        array $data = []
+    ) {    
+        $this->helper = $helper;
+
+    }
+
+    /**
+     * @param Http $subject
+     * @return void
+     */
+    public function beforeSendResponse(Http $response)
+    {
+        if(!$this->helper->getConfig('alothemes/preload/loading_img')) return;
+        $body = $response->getBody();
+        $body = $this->addLazyload($body);
+        $response->setBody($body);
+    }
+
+    public function addLazyload($content) 
+    {
+        $placeholder = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGP6zwAAAgcBApocMXEAAAAASUVORK5CYII=';
+        $content = preg_replace( '#<img([^>]+?)src=[\'"]?([^\'"\s>]+)[\'"]?([^>]*)>#', sprintf( '<img${1}src="%s" data-src="${2}"${3}>', $placeholder ), $content );
+        $content = preg_replace( '#<img([^>]+?)class=[\'"]?([^>]*)>#', '<img${1}class="lazyload ${2}>', $content );
+        $content = preg_replace('/<img ((?!class).)/s', '<img class="lazyload" $1', $content);
+        return $content;
+    }
+
+    public function addLazyloadJs($content) 
+    {
+        $placeholder = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGP6zwAAAgcBApocMXEAAAAASUVORK5CYII=';
+        $content = preg_replace( '#<img([^>]+?)src=[\'"]?([^\'"\s>]+)[\'"]?([^>]*)>#', sprintf( '<img${1}src="%s" data-src="${2}"${3}>', $placeholder ), $content );
+        // $content = preg_replace( '#<img([^>]+?)class=[\'"]?([^\'"\s>]+)[\'"]?([^>]*)>#', '<img${1}class="${2} lazyload"${3}>', $content );
+        $script = '<script type="text/javascript"> require(["jquery", "magiccart/lazyload", "domReady!"], function($, lazyload){$("img").not(".notlazy").lazyload();});</script>';
+        $content = str_ireplace('</body', $script . '</body', $content);
+        return $content;
+    }
+
+}
diff --git a/app/code/Magiccart/Alothemes/composer.json b/app/code/Magiccart/Alothemes/composer.json
index 5754e12..96fe531 100755
--- a/app/code/Magiccart/Alothemes/composer.json
+++ b/app/code/Magiccart/Alothemes/composer.json
@@ -1,17 +1,20 @@
 {
-  "name": "magiccart/module-alothemes",
-  "description": "N/A",
-  "require": {
-    "php": "~5.5.0|~5.6.0|~7.0.0",
-    "magento/framework": "1.0.0-beta",
-    "lib-libxml": "*"
-  },
+  "name": "magiccart/alothemes",
+  "description": "Alothemes Core",
   "type": "magento2-module",
-  "version": "100.0.2",
+  "version": "1.0.0",
   "license": [
     "OSL-3.0",
     "AFL-3.0"
   ],
+  "authors": [
+    {
+      "name": "Alothemes",
+      "email": "support@alothemes.com",
+      "homepage": "https://alothemes.com",
+      "role": "Technical Support"
+    }
+  ],
   "autoload": {
     "files": [ "registration.php" ],
     "psr-4": {
diff --git a/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_block.xml b/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_block.xml
index e809bcf..bfe000a 100755
--- a/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_block.xml
+++ b/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_block.xml
@@ -12,7 +12,7 @@
 <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
     <update handle="formkey"/>
     <head>
-        <title>Manage Export</title>
+        <title>Manage Export Block</title>
     </head>
     <body>
         <referenceBlock name="menu">
diff --git a/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_lookbook.xml b/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_lookbook.xml
index c4b3d7e..fde419d 100644
--- a/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_lookbook.xml
+++ b/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_lookbook.xml
@@ -12,7 +12,7 @@
 <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
     <update handle="formkey"/>
     <head>
-        <title>Manage Export</title>
+        <title>Manage Export Lookbook</title>
     </head>
     <body>
         <referenceBlock name="menu">
diff --git a/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_magicmenu.xml b/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_magicmenu.xml
index d435af9..4cb7e08 100755
--- a/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_magicmenu.xml
+++ b/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_magicmenu.xml
@@ -12,7 +12,7 @@
 <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
     <update handle="formkey"/>
     <head>
-        <title>Manage Export</title>
+        <title>Manage Export Extra Menu</title>
     </head>
     <body>
         <referenceBlock name="menu">
diff --git a/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_magicproduct.xml b/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_magicproduct.xml
index 83c4b94..c1b884a 100755
--- a/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_magicproduct.xml
+++ b/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_magicproduct.xml
@@ -12,7 +12,7 @@
 <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
     <update handle="formkey"/>
     <head>
-        <title>Manage Export</title>
+        <title>Manage Export Magicproduct</title>
     </head>
     <body>
         <referenceBlock name="menu">
diff --git a/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_magicslider.xml b/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_magicslider.xml
index ca2df41..2ecd4b7 100755
--- a/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_magicslider.xml
+++ b/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_magicslider.xml
@@ -12,7 +12,7 @@
 <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
     <update handle="formkey"/>
     <head>
-        <title>Manage Export</title>
+        <title>Manage Export Magicslider</title>
     </head>
     <body>
         <referenceBlock name="menu">
diff --git a/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_page.xml b/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_page.xml
index 6776f66..863366d 100755
--- a/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_page.xml
+++ b/app/code/Magiccart/Alothemes/view/adminhtml/layout/alothemes_export_page.xml
@@ -12,7 +12,7 @@
 <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
     <update handle="formkey"/>
     <head>
-        <title>Manage Export</title>
+        <title>Manage Export Page</title>
     </head>
     <body>
         <referenceBlock name="menu">
diff --git a/app/code/Magiccart/Alothemes/view/frontend/requirejs-config.js b/app/code/Magiccart/Alothemes/view/frontend/requirejs-config.js
index 7da965a..db21a52 100755
--- a/app/code/Magiccart/Alothemes/view/frontend/requirejs-config.js
+++ b/app/code/Magiccart/Alothemes/view/frontend/requirejs-config.js
@@ -14,9 +14,9 @@ var config = {
 		'magiccart/bootstrap'		: 'Magiccart_Alothemes/js/plugins/bootstrap.min',
 		'magiccart/slick'			: 'Magiccart_Alothemes/js/plugins/slick.min',
 		'magiccart/lazyload'		: 'Magiccart_Alothemes/js/plugins/lazyload.min',
-		'magiccart/sticky'		: 'Magiccart_Alothemes/js/plugins/sticky-kit.min',
-		'magiccart/woo'				: 'Magiccart_Alothemes/js/plugins/woo.min',
-		// 'alothemes'		: 'Magiccart_Alothemes/js/alothemes',
+		'magiccart/sticky'		    : 'Magiccart_Alothemes/js/plugins/sticky-kit.min',
+		'magiccart/wow'				: 'Magiccart_Alothemes/js/plugins/wow.min',
+		// 'alothemes'					: 'Magiccart_Alothemes/js/alothemes',
 	},
 
 	shim: {
@@ -44,7 +44,7 @@ var config = {
 		'magiccart/sticky': {
 			deps: ['jquery']
 		},
-		'magiccart/woo': {
+		'magiccart/wow': {
 			deps: ['jquery']
 		},
         'alothemes': {
diff --git a/app/code/Magiccart/Alothemes/view/frontend/templates/themecfg.phtml b/app/code/Magiccart/Alothemes/view/frontend/templates/themecfg.phtml
index 0b588a7..a9271ef 100755
--- a/app/code/Magiccart/Alothemes/view/frontend/templates/themecfg.phtml
+++ b/app/code/Magiccart/Alothemes/view/frontend/templates/themecfg.phtml
@@ -9,9 +9,6 @@
  * @@Modify Date: 2018-07-06 18:21:28
  * @@Function:
  */
-$blockObj= $block->getLayout()->createBlock('Magepow\Ajaxcart\Block\Ajax\Template');
-$helperAjax = $blockObj->getAjaxHelper();
-$countDown = ($helperAjax->getCountDownTime() > 0) ? $helperAjax->getCountDownTime() : 0;
 //echo $this->getThemecfg() 
 if( $url = $this->getLivereload() ) echo '<script type="text/javascript" src="' .$url . '/livereload.js"></script>';
 $cfg = $this->_themeCfg;
@@ -51,26 +48,15 @@ if($timer['caption']){
 	var alo_timer_layout 		= '<?php echo $layout ?>';
 	var alo_timer_layoutcaption = '<?php echo $layoutcaption ?>';
 	var alo_timer_timeout 		= '<span class="timeout"><?php echo __('Time out!')?></span>';
-	require(['jquery', 'magiccart/slick', 'magiccart/lazyload', 'alothemes', 'domReady!'], 
-		function($, slick, lazyload,  alothemes){
-			$("img.lazyload").lazyload();
+	require(['jquery', 'magiccart/slick', 'alothemes', 'domReady!'], 
+		function($, slick, alothemes){
 		    $('body').on('contentUpdated', function () {
-		        $("img.lazyload").lazyload({
-		        	class_loading: 'swatch-option-loading'
-		        });
 				$('.alo-count-down').not('.exception').timer({
 					classes			: '.countdown',
 					layout			: alo_timer_layout, 
 					layoutcaption	: alo_timer_layoutcaption, 
 					timeout 		: alo_timer_timeout
 				});
-
-				$('body').magiccart({
-					"addUrl": "<?php echo $block->escapeUrl($block->getUrl('ajaxcart')); ?>",
-					"quickViewUrl": "<?php echo $block->escapeUrl($block->getUrl('alothemes/product/view/')); ?>",
-					"addToCartSelector": "<?php echo $block->escapeJsQuote($helperAjax->getAddToCartSelector()); ?>",
-					"countDown": "<?php echo $countDown; ?>"
-				});
 		    });
 	});
 </script>
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/js/alothemes.js b/app/code/Magiccart/Alothemes/view/frontend/web/js/alothemes.js
index 0afd205..8a76fe9 100755
--- a/app/code/Magiccart/Alothemes/view/frontend/web/js/alothemes.js
+++ b/app/code/Magiccart/Alothemes/view/frontend/web/js/alothemes.js
@@ -5,7 +5,7 @@
  * @license 	https://www.magepow.com/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2014-04-25 13:16:48
- * @@Modify Date: 2019-12-11 12:05:30
+ * @@Modify Date: 2020-02-14 12:05:30
  * @@Function:
  */
 
@@ -14,8 +14,9 @@ define([
     'magiccart/slick',
 	'magiccart/zoom',
 	'magiccart/parallax',
+	'jquery/jquery.cookie',
 	'Magento_Ui/js/modal/modal'
-    ], function ($, slick, zoom,parallax, modal) {
+    ], function ($, slick, zoom,parallax, cookie, modal) {
 	"use strict";
 	window.magicproduct = function(el, iClass) {
 		if( !el.data( 'vertical') && $('body').hasClass('rtl') ){
@@ -192,7 +193,7 @@ define([
 		            var slideHeight   = suggest.find('.slider >.item').height();
 		            var sliderUlWidth = slideCount * slideWidth;
 		            // suggest.find('.notify-slider').css({ width: slideWidth, height: slideHeight });
-		            suggest.find('.notify-slider .slider').css({ width: sliderUlWidth, marginLeft: - slideWidth });
+					suggest.find('.notify-slider .slider').css({ width: sliderUlWidth});
 		            suggest.find('.notify-slider .slider >.item:last-child').prependTo('.notify-slider .slider');
 		            setTimeout(function(){ el.slideDown('slow'); }, firsttime);
 		            if(!autoplay) return;
@@ -298,15 +299,20 @@ define([
 		});
 
 	    function _increaseJnit(){
+	    	var updateCart;
 			$('.main').on("click", '.alo_qty_dec', function(){
 			    var input = $(this).closest('.qty').find('input');
 		        var value  = parseInt(input.val());
 		        if(value) input.val(value-1);
+		        clearTimeout(updateCart);
+		        updateCart = setTimeout(function(){ $('.action.update').trigger('click'); }, 1000);
 			});
 		    $('.main').on("click", '.alo_qty_inc', function(){
 		        var input = $(this).closest('.qty').find('input');
 		        var value  = parseInt(input.val());
 		        input.val(value+1);
+		        clearTimeout(updateCart);
+		        updateCart = setTimeout(function(){ $('.action.update').trigger('click'); }, 1000);
 		    });			    	
 	    }
 
diff --git a/app/code/Magiccart/Alothemes/view/frontend/web/js/plugins/jquery.socialstream.js b/app/code/Magiccart/Alothemes/view/frontend/web/js/plugins/jquery.socialstream.js
old mode 100755
new mode 100644
index 73e9bc1..72fb0d2
--- a/app/code/Magiccart/Alothemes/view/frontend/web/js/plugins/jquery.socialstream.js
+++ b/app/code/Magiccart/Alothemes/view/frontend/web/js/plugins/jquery.socialstream.js
@@ -146,7 +146,8 @@
                 case 'instagram':
                     object.append("<ul class=\"instagram-list social-list\"></ul>");
                     var imagesize = [150, 240, 320, 480, 640];
-                    var imgsize   = (imagesize.indexOf(options.srcSize) != -1) ? imagesize.indexOf(options.srcSize) : 1 ;
+                    var size      = parseInt(options.srcSize);
+                    var imgsize   = (imagesize.indexOf(size) != -1) ? imagesize.indexOf(size) : 1 ;
 
                     // check if access token is set
                     if ((typeof (options.accessToken) != "undefined") && options.accessToken != "") {

commit a817d4f776676c346b118a96a663de92acdcf917
Author: Alex Dong <support@alothemes.com>
Date:   Tue Apr 14 15:41:40 2020 +0700

    Update timer configurable

diff --git a/app/code/Magiccart/Alothemes/Helper/Data.php b/app/code/Magiccart/Alothemes/Helper/Data.php
index 4f72947..707e1c2 100644
--- a/app/code/Magiccart/Alothemes/Helper/Data.php
+++ b/app/code/Magiccart/Alothemes/Helper/Data.php
@@ -6,7 +6,7 @@
  * @license     http://www.magepow.com/license-agreement.html
  * @Author: DOng NGuyen<nguyen@dvn.com>
  * @@Create Date: 2016-02-14 20:26:27
- * @@Modify Date: 2019-07-26 16:14:15
+ * @@Modify Date: 2020-04-14 16:14:15
  * @@Function:
  */
 
@@ -25,12 +25,16 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
      */
     protected $pageConfig;
 
+    protected $configurable;
+
     public function __construct(
         \Magento\Framework\App\Helper\Context $context,
-        \Magento\Framework\View\Page\Config $pageConfig
+        \Magento\Framework\View\Page\Config $pageConfig,
+        \Magento\ConfigurableProduct\Model\Product\Type\Configurable $configurable
     )
     {
-        $this->pageConfig = $pageConfig;
+        $this->pageConfig   = $pageConfig;
+        $this->configurable = $configurable;
         parent::__construct($context);
     }
     public function getConfig($cfg='')
@@ -55,6 +59,25 @@ class Data extends \Magento\Framework\App\Helper\AbstractHelper
     {
         if($this->_timer==null) $this->_timer = $this->getThemeCfg('timer');
         if(!$this->_timer['enabled']) return;
+
+        if($_product->getTypeId() == 'configurable'){
+                $products = $this->configurable->getUsedProducts($_product);
+                $date = 0;
+                foreach ($products as $child) {
+                    $toDate     = $child->getSpecialToDate();
+                    if(!$toDate) continue;
+                    if ($date) {
+                        if (strtotime($date) < strtotime($toDate)) {
+                            $_product = $child;
+                            $date = $toDate;
+                        }
+                    } else {
+                        $_product = $child;
+                        $date = $toDate;
+                    }
+                }         
+        }
+
         $toDate = $_product->getSpecialToDate();
         if(!$toDate) return;
         if($_product->getPrice() < $_product->getSpecialPrice()) return;
diff --git a/app/code/Magiccart/Alothemes/Helper/Data.php_ b/app/code/Magiccart/Alothemes/Helper/Data.php_
deleted file mode 100755
index 3f5bda2..0000000
--- a/app/code/Magiccart/Alothemes/Helper/Data.php_
+++ /dev/null
@@ -1,187 +0,0 @@
-<?php
-/**
- * Magiccart 
- * @category    Magiccart 
- * @copyright   Copyright (c) 2014 Magiccart (http://www.magiccart.net/) 
- * @license     http://www.magiccart.net/license-agreement.html
- * @Author: DOng NGuyen<nguyen@dvn.com>
- * @@Create Date: 2016-02-14 20:26:27
- * @@Modify Date: 2018-10-31 16:14:15
- * @@Function:
- */
-
-namespace Magiccart\Alothemes\Helper;
-
-class Data extends \Magento\Framework\App\Helper\AbstractHelper
-{
-    protected $_labels = null;
-    protected $_timer  = null;
-    protected $_themeCfg = array();
-
-    public function getConfig($cfg='')
-    {
-        if($cfg) return $this->scopeConfig->getValue( $cfg, \Magento\Store\Model\ScopeInterface::SCOPE_STORE );
-        return $this->scopeConfig;
-    }
-
-    public function getThemeCfg($cfg='')
-    {
-        if(!$this->_themeCfg) $this->_themeCfg = $this->getConfig('alothemes');
-        if(!$cfg) return $this->_themeCfg;
-        elseif(isset($this->_themeCfg[$cfg])) return $this->_themeCfg[$cfg];
-    }
-
-    public function getImageHover($_product)
-    {
-        return  $_product->load('media_gallery')->getMediaGalleryImages()->getItemByColumnValue('position','2')->getFile(); //->getItemByColumnValue('label','Imagehover')
-    }
-
-    public function getTimer($_product)
-    {
-        if($this->_timer==null) $this->_timer = $this->getThemeCfg('timer');
-        if(!$this->_timer['enabled']) return;
-        $toDate = $_product->getSpecialToDate();
-        if(!$toDate) return;
-        if($_product->getPrice() < $_product->getSpecialPrice()) return;
-        if($_product->getSpecialPrice() == 0 || $_product->getSpecialPrice() == "") return;
-        $timer = strtotime($toDate) - strtotime("now");
-        return '<div class="alo-count-down"><div class="countdown" data-timer="' .$timer. '"></div></div>';
-
-        $now = new \DateTime();
-        $ends = new \DateTime($toDate);
-        $left = $now->diff($ends);
-        return '<div class="alo-count-down"><span class="countdown" data-d="' .$left->format('%a'). '" data-h="' .$left->format('%h'). '" data-i="' .$left->format('%h'). '" data-s="' .$left->format('%s'). '"></span></div>';
-    }
-
-    public function getLabels($product)
-    {
-        if($this->_labels==null) $this->_labels = $this->getThemeCfg('labels');
-        $html  = '';
-        $newText = isset($this->_labels['newText']) ? $this->_labels['newText'] : ''; // get in Cfg;
-        if($newText && $this->isNew($product)) $html .= '<span class="sticker top-left"><span class="labelnew">' . __($newText) . '</span></span>';
-        $percent = isset($this->_labels['salePercent']) ? $this->_labels['salePercent'] : false; // get in Cfg;
-        if($percent){
-            $price = $product->getPrice();
-            $finalPrice = $product->getFinalPrice();
-            $saleLabel = (int)$price ? floor(($finalPrice/$price)*100 - 100).'%' : '';
-        }else {
-            $saleLabel = isset($this->_labels['saleText']) ? $this->_labels['saleText'] : '';
-        }
-        if($saleLabel && $this->isOnSale($product)) $html .= '<span class="sticker top-right"><span class="labelsale">' . __($saleLabel) . '</span></span>';
-        
-        return $html;
-    }
-
-    protected function isNew($product)
-    {
-        return $this->_nowIsBetween($product->getData('news_from_date'), $product->getData('news_to_date'));
-    }
-
-    protected function isOnSale($product)
-    {
-        $specialPrice = number_format($product->getFinalPrice(), 2);
-        $regularPrice = number_format($product->getPrice(), 2);
-
-        if ($specialPrice != $regularPrice) return $this->_nowIsBetween($product->getData('special_from_date'), $product->getData('special_to_date'));
-        else return false;
-    }
-    
-    protected function _nowIsBetween($fromDate, $toDate)
-    {
-        if ($fromDate){
-            $fromDate = strtotime($fromDate);
-            $toDate = strtotime($toDate);
-            $now = strtotime(date("Y-m-d H:i:s"));
-            
-            if ($toDate){
-                if ($fromDate <= $now && $now <= $toDate) return true;
-            }else {
-                if ($fromDate <= $now) return true;
-            }
-        }
-        return false;
-    }
-
-    public function getPrcents()
-    {
-        return array(1 => '100%', 2 => '50%', 3 => '33.333333333%', 4 => '25%', 5 => '20%', 6 => '16.666666666%', 7 => '14.285714285%', 8 => '12.5%');
-    }
-
-    public function getResponsiveBreakpoints()
-    {
-        return array(1921=>'visible', 1920=>'desktop', 1200=>'laptop', 992=>'notebook', 769=>'tablet', 641=>'landscape', 481=>'portrait', 361=>'mobile', 1=>'mobile');
-    }
-
-    public function getGridStyle($selector=' .products-grid .product-item')
-    {
-        $styles = $selector .'{ float: left;}';
-        $listCfg  = $this->getConfig('alothemes/grid');
-        $padding = $listCfg['padding'];
-        $prcents = $this->getPrcents();
-        $breakpoints = $this->getResponsiveBreakpoints(); ksort($breakpoints);
-        $total = count($breakpoints);
-        $i = $tmp = 1;
-        foreach ($breakpoints as $key => $value) {
-            $tmpKey = ( $i == 1 || $i == $total) ? $value : current($breakpoints);
-            if($i >1){
-                $styles .= ' @media (min-width: '. $tmp .'px) and (max-width: ' . ($key-1) . 'px) {' .$selector. '{padding: 0 '.$padding.'px; width: '.$prcents[$listCfg[$value]] .'} ' .$selector. ':nth-child(' .$listCfg[$value]. 'n+1){clear: left;}}';
-                next($breakpoints);
-            }
-            if( $i == $total ) $styles .= ' @media (min-width: ' . $key . 'px) {' .$selector. '{padding: 0 '.$padding.'px; width: '.$prcents[$listCfg[$value]] .'} ' .$selector. ':nth-child(' .$listCfg[$value]. 'n+1){clear: left;}}';
-            $tmp = $key;
-            $i++;
-        }
-        return  '<style type="text/css">' .$styles. '</style>';
-    }
-
-
-    public function getConfgRUC($type) // with Type = 'related' || 'upsell' || 'crosssell'
-    {
-        $data = $this->getConfig('alothemes/' .$type);
-        $breakpoints = $this->getResponsiveBreakpoints();
-        $total = count($breakpoints);
-        if($data['slide']){
-            $data['vertical-Swiping'] = $data['vertical'];
-            $responsive = '[';
-            foreach ($breakpoints as $size => $opt) {
-                $responsive .= '{"breakpoint": "'.$size.'", "settings": {"slidesToShow": "'.$data[$opt].'"}}';
-                $total--;
-                if($total) $responsive .= ', ';
-            }
-            $responsive .= ']';
-            $data['slides-To-Show'] = $data['visible'];
-            $data['swipe-To-Slide'] = 'true';
-            $data['responsive'] = $responsive;
-            $Rm = array('slide', 'visible', 'desktop', 'notebook', 'tablet', 'landscape', 'portrait', 'mobile'); // require with slick
-            foreach ($Rm as $vl) { unset($data[$vl]); }
-
-            return $data;
-
-        } else {
-            $options = array();
-            $breakpoints = $this->getResponsiveBreakpoints(); ksort($breakpoints);
-            foreach ($breakpoints as $size => $screen) {
-                $options[]= array($size => $data[$screen]);
-            }
-            return array('padding' => $data['padding'], 'responsive' =>json_encode($options));
-            
-            // $prcents = $this->getPrcents();
-            // $padding = $data['padding'];
-            // $selector = '.' . $type .' .products-grid .product-item';
-            // $styles = $selector .'{ float: left;}';
-            // $i = $tmp= 1;
-            // foreach ($breakpoints as $key => $value) {
-            //     $tmpKey = ( $i == 1 || $i == $total ) ? $value : current($breakpoints);
-            //     if($i >1){
-            //         $styles .= ' @media (min-width: '. $tmp .'px) and (max-width: ' . ($key-1) . 'px) {' .$selector. '{padding: 0 '.$padding.'px; width: '.$prcents[$data[$value]] .'} ' .$selector. ':nth-child(' .$data[$value]. 'n+1){clear: left;}}';
-            //         next($breakpoints);
-            //     }
-            //     if( $i == $total ) $styles .= ' @media (min-width: ' . $key . 'px) {' .$selector. '{padding: 0 '.$padding.'px; width: '.$prcents[$data[$value]] .'} ' .$selector. ':nth-child(' .$data[$value]. 'n+1){clear: left;}}';
-            //     $tmp = $key;
-            //     $i++;
-            // }
-
-            // return '<style type="text/css">' .$styles. '</style>';
-        }
-    }
-}