commit 326a834e98713a7527c4bbda364bb6993f4389ca Author: Jacek Pyziak Date: Fri May 30 15:12:20 2025 +0200 first commit diff --git a/.vscode/ftp-kr.json b/.vscode/ftp-kr.json new file mode 100644 index 00000000..2000bd79 --- /dev/null +++ b/.vscode/ftp-kr.json @@ -0,0 +1,17 @@ +{ + "host": "host439372.hostido.net.pl", + "username": "www@b2b.redline.com.pl", + "password": "eGGaAb2djKB6ZtLLJac3", + "remotePath": "/public_html/", + "protocol": "ftp", + "port": 0, + "fileNameEncoding": "utf8", + "autoUpload": true, + "autoDelete": false, + "autoDownload": false, + "ignoreRemoteModification": true, + "ignore": [ + ".git", + "/.vscode" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..c3f4780d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,15 @@ +{ + "git.ignoreLimitWarning": true, + "liveSassCompile.settings.formats": [ + { + "format": "compressed", + "extensionName": ".css", + "savePath": "" + } + ], + "liveSassCompile.settings.includeItems": [ + "/themes/at_movic/assets/css/theme.scss", + "/themes/at_movic/assets/css/custom.scss", + "/themes/at_movic/modules/appagebuilder/views/css/styles.scss" + ] +} \ No newline at end of file diff --git a/.vscode/sftp.json b/.vscode/sftp.json new file mode 100644 index 00000000..dab0ee90 --- /dev/null +++ b/.vscode/sftp.json @@ -0,0 +1,12 @@ +{ + "name": "host439372.hostido.net.pl", + "host": "host439372.hostido.net.pl", + "protocol": "ftp", + "port": 21, + "username": "www@b2b.redline.com.pl", + "password": "eGGaAb2djKB6ZtLLJac3", + "remotePath": "/public_html/", + "uploadOnSave": false, + "useTempFile": false, + "openSsh": false +} diff --git a/modules/pdproductattributeslist/.php-cs-fixer.cache b/modules/pdproductattributeslist/.php-cs-fixer.cache new file mode 100644 index 00000000..e69de29b diff --git a/modules/pdproductattributeslist/config_pl.xml b/modules/pdproductattributeslist/config_pl.xml new file mode 100644 index 00000000..e9f09f4d --- /dev/null +++ b/modules/pdproductattributeslist/config_pl.xml @@ -0,0 +1,12 @@ + + + pdproductattributeslist + + + + + + 1 + 0 + + \ No newline at end of file diff --git a/modules/pdproductattributeslist/controllers/front/.php-cs-fixer.cache b/modules/pdproductattributeslist/controllers/front/.php-cs-fixer.cache new file mode 100644 index 00000000..e69de29b diff --git a/modules/pdproductattributeslist/controllers/front/ajax.php b/modules/pdproductattributeslist/controllers/front/ajax.php new file mode 100644 index 00000000..715efc04 --- /dev/null +++ b/modules/pdproductattributeslist/controllers/front/ajax.php @@ -0,0 +1,108 @@ + +* @copyright 2013 - 2017 Patryk Marek +* @link http://prestadev.pl +* @package Product attributes list for PrestaShop 1.5.x and 1.6.x and 1.7.x +* @version 1.0.3 +* @license Do not edit, modify or copy this file, if you wish to customize it, contact us at info@prestadev.pl +* @date 28-10-2017 +* +*/ + +class PdProductAttributesListAjaxModuleFrontController extends ModuleFrontController +{ + public function initContent() + { + $this->ajax = true; + parent::initContent(); + } + + public function displayAjax() + { + $this->createCart(); + } + + public function createCart() + { + $module = new PdProductAttributesList(); + if (Tools::getValue('secure_key') == $module->secure_key) { + $action = Tools::getValue('action'); + if ($action == 'addProductsToCart') { + $products = (array)Tools::getValue('products'); + $context = Context::getContext(); + if ((int)$context->cart->id == 0) { + $cart = new Cart(); + $cart->id_currency = $this->context->currency->id; + $cart->add(); + $context->cart = $cart; + $context->cookie->id_cart = $cart->id; + $context->cookie->write(); + } else { + $cart = $context->cart; + } + + $result = false; + if (is_array($products) && sizeof($products)) { + $n = 0; + $res = []; + foreach ($products as $p) { + $product = new Product($p['id_product'], false, $this->context->language->id, $this->context->shop->id); + $n++; + $res[$n]['response'] = $this->context->cart->updateQty( + $p['quantity'], + $p['id_product'], + $p['id_product_attribute'], + $p['id_customization'] + ); + $res[$n]['id_product'] = $p['id_product']; + $res[$n]['id_product_attribute'] = $p['id_product_attribute']; + $res[$n]['quantity'] = $p['quantity']; + $res[$n]['product_name'] = $product->name; + $res[$n]['max_quantity'] = StockAvailable::getQuantityAvailableByProduct($p['id_product'], $p['id_product_attribute'], $this->context->shop->id); + $res[$n]['combination_name'] = $this->getAttributeCombinationsFullNameById($p['id_product'], $p['id_product_attribute'], $this->context->language->id, true); + } + $result = [true]; + } + + die(json_encode($res)); + } + } + } + + public function getAttributeCombinationsFullNameById($id_product, $id_product_attribute, $id_lang, $groupByIdAttributeGroup = true) + { + if (!Combination::isFeatureActive()) { + return []; + } + + + $sql = 'SELECT CONCAT(agl.`name`, al.`name`) AS combination_name, agl.`name` AS group_name, al.`name` AS attribute_name, + a.`id_attribute`, a.`position` + FROM `' . _DB_PREFIX_ . 'product_attribute` pa + ' . Shop::addSqlAssociation('product_attribute', 'pa') . ' + LEFT JOIN `' . _DB_PREFIX_ . 'product_attribute_combination` pac ON pac.`id_product_attribute` = pa.`id_product_attribute` + LEFT JOIN `' . _DB_PREFIX_ . 'attribute` a ON a.`id_attribute` = pac.`id_attribute` + LEFT JOIN `' . _DB_PREFIX_ . 'attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group` + LEFT JOIN `' . _DB_PREFIX_ . 'attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = ' . (int) $id_lang . ') + LEFT JOIN `' . _DB_PREFIX_ . 'attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = ' . (int) $id_lang . ') + WHERE pa.`id_product` = ' . (int) $id_product . ' + AND pa.`id_product_attribute` = ' . (int) $id_product_attribute . ' + GROUP BY pa.`id_product_attribute`' . ($groupByIdAttributeGroup ? ',ag.`id_attribute_group`' : '') . ' + ORDER BY pa.`id_product_attribute`'; + + $res = Db::getInstance()->executeS($sql); + $combination_name = ''; + foreach ($res as $key => $row) { + $combination_name .= $row['group_name'] . ': '.$row['attribute_name'].', '; + } + + if (empty($combination_name)) { + $module = new PdProductAttributesList(); + return $module->l('No variant'); + } else { + return rtrim($combination_name, ', '); + } + } +} diff --git a/modules/pdproductattributeslist/controllers/front/index.php b/modules/pdproductattributeslist/controllers/front/index.php new file mode 100644 index 00000000..5855d259 --- /dev/null +++ b/modules/pdproductattributeslist/controllers/front/index.php @@ -0,0 +1,28 @@ + +* @copyright 2007-2011 PrestaShop SA +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/modules/pdproductattributeslist/index.php b/modules/pdproductattributeslist/index.php new file mode 100644 index 00000000..93974122 --- /dev/null +++ b/modules/pdproductattributeslist/index.php @@ -0,0 +1,35 @@ + +* @copyright 2007-2013 PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/modules/pdproductattributeslist/logo.gif b/modules/pdproductattributeslist/logo.gif new file mode 100644 index 00000000..33e4ad27 Binary files /dev/null and b/modules/pdproductattributeslist/logo.gif differ diff --git a/modules/pdproductattributeslist/logo.png b/modules/pdproductattributeslist/logo.png new file mode 100644 index 00000000..9de728e0 Binary files /dev/null and b/modules/pdproductattributeslist/logo.png differ diff --git a/modules/pdproductattributeslist/pdproductattributeslist.php b/modules/pdproductattributeslist/pdproductattributeslist.php new file mode 100644 index 00000000..dab8990e --- /dev/null +++ b/modules/pdproductattributeslist/pdproductattributeslist.php @@ -0,0 +1,683 @@ + +* @copyright 2013 - 2017 Patryk Marek +* @link http://prestadev.pl +* @package Product attributes list for PrestaShop 1.5.x and 1.6.x and 1.7.x +* @version 1.0.3 +* @license Do not edit, modify or copy this file, if you wish to customize it, contact us at info@prestadev.pl +* @date 28-10-2017 +* +*/ + +if (!defined('_PS_VERSION_')) { + exit; +} + +class PdProductAttributesList extends Module +{ + private $html = ''; + private $postErrors = array(); + + public function __construct() + { + $this->name = 'pdproductattributeslist'; + $this->tab = 'front_office_features'; + $this->version = '2.0.0'; + $this->author = 'PrestaDev.pl'; + $this->need_instance = 0; + $this->module_key = '5f46066c31c75e2acfdf9483396e7ar6'; + $this->secure_key = Tools::encrypt($this->name); + $this->bootstrap = true; + + parent::__construct(); + + $this->displayName = $this->l('Product attributes list on product page'); + $this->description = $this->l('Allow to display product attributes list on product page as a tab or in product footer hook'); + + $this->ps_version_17 = (version_compare(substr(_PS_VERSION_, 0, 3), '1.7', '=')) ? true : false; + $this->ps_version_8 = (version_compare(substr(_PS_VERSION_, 0, 3), '8.0', '>=')) ? true : false; + } + + public function install() + { + if (!parent::install() + || !$this->registerHook('displayProductTab') + || !$this->registerHook('displayHeader') + + || !$this->registerHook('displayFooterProduct') + || !$this->registerHook('displayProductTabContent') + || !$this->registerHook('displayProductExtraContent') + || !$this->registerHook('displayCustomAttributesListTable') + || !Configuration::updateValue('PD_PAL_ONLY_IN_STOCK', 0) + || !Configuration::updateValue('PD_PAL_DISPLAY_T_HEADING', 1) + || !Configuration::updateValue('PD_PAL_DISPLAY_B_HEADING', 1) + || !Configuration::updateValue('PD_PAL_SHOW_ATTRIBUT_TETEXTURE_IMG', 1) + || !Configuration::updateValue('PD_PAL_DISPLAY_LAYOUT', 0) + || !Configuration::updateValue('PD_PAL_PLACEMENT', 1)) { + return false; + } + return true; + } + + public function uninstall() + { + if (!parent::uninstall()) { + return false; + } + return true; + } + + /* + ** Form Config Methods + ** + */ + public function getContent() + { + if (Tools::isSubmit('btnSubmit')) { + $this->postValidation(); + if (!count($this->postErrors)) { + $this->postProcess(); + } else { + foreach ($this->postErrors as $err) { + $this->html .= $this->displayError($err); + } + } + } else { + $this->html .= '
'; + } + + $this->html .= '

'.$this->displayName.' (v'.$this->version.')

'.$this->description.'

'; + $this->html .= $this->renderForm(); + $this->html .= '
'; + $this->html .= $this->displayExtraForm(); + + return $this->html; + } + + public function renderForm() + { + $switch = version_compare(_PS_VERSION_, '1.6.0', '>=') ? 'switch' : 'radio'; + $fields_form_1 = array( + 'form' => array( + 'legend' => array( + 'title' => $this->l('Module Configuration'), + 'icon' => 'icon-cogs' + ), + 'input' => array( + array( + 'type' => $switch, + 'label' => $this->l('Display block heading'), + 'desc' => $this->l('Displays block heading'), + 'class' => 't', + 'name' => 'PD_PAL_DISPLAY_B_HEADING', + 'values' => array( + array( + 'id' => 'yes', + 'value' => 1, + 'label' => $this->l('Yes') + ), + array( + 'id' => 'no', + 'value' => 0, + 'label' => $this->l('No') + ), + ) + ), + array( + 'type' => 'radio', + 'label' => $this->l('Display layout'), + 'desc' => $this->l('Display layout of product combinations'), + 'class' => 't', + 'name' => 'PD_PAL_DISPLAY_LAYOUT', + 'values' => array( + array( + 'id' => '0', + 'value' => 0, + 'label' => $this->l('Table') + ), + array( + 'id' => '1', + 'value' => 1, + 'label' => $this->l('Grid') + ) + ) + ), + array( + 'type' => 'radio', + 'label' => $this->l('Table placement'), + 'desc' => $this->l('Displays table in product page tab or custom hook in product page (see instructions bellow)'), + 'class' => 't', + 'name' => 'PD_PAL_PLACEMENT', + 'values' => array( + array( + 'id' => '0', + 'value' => 0, + 'label' => $this->l('Custom hook (displayCustomAttributesListTable)') + ), + array( + 'id' => '1', + 'value' => 1, + 'label' => $this->l('Product tab') + ), + array( + 'id' => '2', + 'value' => 2, + 'label' => $this->l('Product footer') + ), + ) + ), + ), + 'submit' => array( + 'title' => $this->l('Save settings'), + ) + ), + ); + + + + + $helper = new HelperForm(); + $helper->module = $this; + $helper->show_toolbar = false; + $helper->table = $this->table; + $lang = new Language((int)Configuration::get('PS_LANG_DEFAULT')); + $helper->default_form_language = $lang->id; + $helper->allow_employee_form_lang = Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') ? Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') : 0; + $this->fields_form = array(); + + $helper->identifier = $this->identifier; + $helper->submit_action = 'btnSubmit'; + $helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false).'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name; + $helper->token = Tools::getAdminTokenLite('AdminModules'); + $helper->tpl_vars = array( + 'fields_value' => $this->getConfigFieldsValues(), + 'languages' => $this->context->controller->getLanguages(), + 'id_language' => $this->context->language->id + ); + + return $helper->generateForm(array($fields_form_1)); + } + + private function displayExtraForm() + { + + $this->html .= ' +
+
+ + '.$this->l('Instalation instructions for custom hook table').' +
+
+ '.$this->l('Please open file on which You want to add module').' + '.$this->l('for editing and add in place where you want to display table code:').' + +
+
'; + } + + + + public function getConfigFieldsValues() + { + $return = array(); + $return['PD_PAL_DISPLAY_T_HEADING'] = Tools::getValue('PD_PAL_DISPLAY_T_HEADING', Configuration::get('PD_PAL_DISPLAY_T_HEADING')); + $return['PD_PAL_DISPLAY_B_HEADING'] = Tools::getValue('PD_PAL_DISPLAY_B_HEADING', Configuration::get('PD_PAL_DISPLAY_B_HEADING')); + $return['PD_PAL_PLACEMENT'] = Configuration::get('PD_PAL_PLACEMENT'); + $return['PD_PAL_ONLY_IN_STOCK'] = Configuration::get('PD_PAL_ONLY_IN_STOCK'); + $return['PD_PAL_DISPLAY_LAYOUT'] = Configuration::get('PD_PAL_DISPLAY_LAYOUT'); + $return['PD_PAL_SHOW_ATTRIBUT_TETEXTURE_IMG'] = Configuration::get('PD_PAL_SHOW_ATTRIBUT_TETEXTURE_IMG'); + return $return; + } + + + private function postValidation() + { + } + + private function postProcess() + { + Configuration::updateValue('PD_PAL_DISPLAY_B_HEADING', Tools::getValue('PD_PAL_DISPLAY_B_HEADING')); + Configuration::updateValue('PD_PAL_DISPLAY_T_HEADING', Tools::getValue('PD_PAL_DISPLAY_T_HEADING')); + Configuration::updateValue('PD_PAL_PLACEMENT', Tools::getValue('PD_PAL_PLACEMENT')); + Configuration::updateValue('PD_PAL_ONLY_IN_STOCK', Tools::getValue('PD_PAL_ONLY_IN_STOCK')); + Configuration::updateValue('PD_PAL_DISPLAY_LAYOUT', Tools::getValue('PD_PAL_DISPLAY_LAYOUT')); + Configuration::updateValue('PD_PAL_SHOW_ATTRIBUT_TETEXTURE_IMG', Tools::getValue('PD_PAL_SHOW_ATTRIBUT_TETEXTURE_IMG')); + $this->html .= $this->displayConfirmation($this->l('Settings updated')); + } + + public function hookDisplayHeader($params) + { + if (!empty(Context::getContext()->controller->php_self)) { + $controller = Context::getContext()->controller->php_self; + } else { + $controller = Tools::getValue('controller'); + } + + if ($controller == 'product' || $controller == 'category') { + + $this->context->controller->addJquery(); + $this->context->controller->addJqueryPlugin('fancybox'); + $this->context->controller->addJqueryPlugin('growl', null, false); + $this->context->controller->registerStylesheet('growl-css', 'js/jquery/plugins/growl/jquery.growl.css'); + + Media::addJsDef(array( + 'pdproductattributeslist_add_ok' => $this->l(' was added!'), + 'pdproductattributeslist_title_error' => $this->l('Error'), + 'pdproductattributeslist_title_ok' => $this->l('Success'), + 'pdproductattributeslist_pcs' => $this->l('pcs.'), + 'pdproductattributeslist_product' => $this->l('Product: '), + 'pdproductattributeslist_variant' => $this->l('in variant:'), + 'pdproductattributeslist_max_qty' => $this->l(' max quantity is: '), + 'pdproductattributeslist_add_error' => $this->l('There no products quantities selected!'), + 'pdproductattributeslist_secure_key' => $this->secure_key, + 'pdproductattributeslist_ajax_link' => $this->context->link->getModuleLink('pdproductattributeslist', 'ajax', array()), + )); + } + + $this->context->controller->registerStylesheet('modules-pdproductattributeslist-front', 'modules/'.$this->name.'/views/css/pdproductattributeslist.css', array('media' => 'all', 'priority' => 150)); + $this->context->controller->registerStylesheet('modules-pdproductattributeslist-front-tablesorter', 'modules/'.$this->name.'/views/css/theme.default.min.css', array('media' => 'all', 'priority' => 150)); + $this->context->controller->registerStylesheet('modules-pdproductattributeslist-front-tablesorter-bootstrap-3', 'modules/'.$this->name.'/views/css/theme.bootstrap_3.min.css', array('media' => 'all', 'priority' => 150)); + $this->context->controller->registerStylesheet('modules-pdproductattributeslist-front-tablesorter-bootstrap-4', 'modules/'.$this->name.'/views/css/theme.bootstrap_4.min.css', array('media' => 'all', 'priority' => 150)); + $this->context->controller->registerStylesheet('modules-pdproductattributeslist-front-tablesorter-bootstrap', 'modules/'.$this->name.'/views/css/theme.bootstrap.min.css', array('media' => 'all', 'priority' => 150)); + + $this->context->controller->registerJavascript('modules-pdproductattributeslist-tablesorter', 'modules/'.$this->name.'/views/js/jquery.tablesorter.min.js', array('position' => 'bottom', 'priority' => 150)); + $this->context->controller->registerJavascript('modules-pdproductattributeslist-tablesorter-widgets', 'modules/'.$this->name.'/views/js/jquery.tablesorter.widgets.min.js', array('position' => 'bottom', 'priority' => 150)); + $this->context->controller->registerJavascript('modules-pdproductattributeslist', 'modules/'.$this->name.'/views/js/pdproductattributeslist.js', array('position' => 'bottom', 'priority' => 150)); + + } + + public function hookDisplayProductExtraContent($params) + { + $placement = Configuration::get('PD_PAL_PLACEMENT'); + $product = $this->context->controller->getProduct(); + if ($product->hasAttributes() == 0) { + return array(); + } + + if (($this->ps_version_17 || $this->ps_version_8) && $placement == 1 && Tools::getValue('ajax', 'false') == 'false') { + $tabz[] = (new PrestaShop\PrestaShop\Core\Product\ProductExtraContent())->setTitle($this->l('Select product combination'))->setContent($this->hookDisplayProductTabContent($params)); + return $tabz; + } else { + return array(); + } + } + + public function hookDisplayProductTabContent($params) + { + $placement = Configuration::get('PD_PAL_PLACEMENT'); + $display_layout = Configuration::get('PD_PAL_DISPLAY_LAYOUT'); + if ($placement == 1) { + $id_lang = (int)$this->context->language->id; + $id_shop = (int)$this->context->shop->id; + $product = $this->context->controller->getProduct(); + $product_combinations = $this->getAttributeCombinations($product->id, $id_lang, $id_shop); + //dump($product_combinations); + $this->context->smarty->assign(array( + 'product_combinations' => $product_combinations, + 'block_heading'=> Configuration::get('PD_PAL_DISPLAY_B_HEADING'), + 'cartSize' => Image::getSize(ImageType::getFormattedName('cart')), + 'homeSize' => Image::getSize(ImageType::getFormattedName('home')), + 'is_catalog' => (bool) Configuration::isCatalogMode(), + 'show_prices' => (bool) Configuration::showPrices(), + 'ps_version_17' => $this->ps_version_17, + 'ps_version_8' => $this->ps_version_8 + )); + + + if ($display_layout == 0) { + return $this->display(__FILE__, 'hookDisplayProductTabContent.tpl'); + } else { + return $this->display(__FILE__, 'hookDisplayProductTabContentGrid.tpl'); + } + } + } + + public function hookDisplayProductTab($params) + { + $placement = Configuration::get('PD_PAL_PLACEMENT'); + + if ($placement == 1) { + $context = Context::getContext(); + $cart = new Cart((int)$context->cart->id); + $product = $this->context->controller->getProduct(); + + $this->context->smarty->assign(array( + 'ps_version_15' => $this->ps_version_15, + 'ps_version_16' => $this->ps_version_16, + 'ps_version_17' => $this->ps_version_17 + )); + + return $this->display(__FILE__, 'hookDisplayProductTab.tpl'); + } + } + + public function hookDisplayFooterProduct($params) + { + $placement = Configuration::get('PD_PAL_PLACEMENT'); + $display_layout = Configuration::get('PD_PAL_DISPLAY_LAYOUT'); + + if ($placement == 2) { + $id_lang = (int)$this->context->language->id; + $id_shop = (int)$this->context->shop->id; + $product = $this->context->controller->getProduct(); + + $product_combinations = $this->getAttributeCombinations($product->id, $id_lang, $id_shop); + //dump($product_combinations); + $this->context->smarty->assign(array( + 'product_combinations' => $product_combinations, + 'block_heading'=> Configuration::get('PD_PAL_DISPLAY_B_HEADING'), + 'cartSize' => Image::getSize(ImageType::getFormattedName('cart')), + 'homeSize' => Image::getSize(ImageType::getFormattedName('home')), + 'is_catalog' => (bool) Configuration::isCatalogMode(), + 'show_prices' => (bool) Configuration::showPrices(), + 'ps_version_17' => $this->ps_version_17, + 'ps_version_8' => $this->ps_version_8 + )); + + + if ($display_layout == 0) { + return $this->display(__FILE__, 'hookDisplayProductTabContent.tpl'); + } else { + return $this->display(__FILE__, 'hookDisplayProductTabContentGrid.tpl'); + } + } + } + + + public function hookDisplayCustomAttributesListTable($params) + { + $id_product = (int)$params['product']->id; + $product = new Product($id_product); + + $id_lang = (int)$this->context->language->id; + $id_shop = (int)$this->context->shop->id; + + $product_combinations = $this->getAttributeCombinations($id_product, $id_lang, $id_shop); + + $this->context->smarty->assign(array( + 'product_combinations' => $product_combinations, + 'block_heading'=> Configuration::get('PD_PAL_DISPLAY_B_HEADING'), + 'cartSize' => Image::getSize(ImageType::getFormattedName('cart')), + 'homeSize' => Image::getSize(ImageType::getFormattedName('home')), + 'is_catalog' => (bool) Configuration::isCatalogMode(), + 'show_prices' => (bool) Configuration::showPrices(), + 'ps_version_17' => $this->ps_version_17, + 'ps_version_8' => $this->ps_version_8 + )); + + return $this->display(__FILE__, 'hookDisplayCustomAttributesListTable.tpl'); + + } + + private function getAttributeCombinations($id_product, $id_lang, $id_shop) + { + $sql = 'SELECT pa.`id_product_attribute`, pa.`id_product`, pa.`reference`, pa.`ean13`, pa.`mpn`, pas.`weight` as weight_impact, p.`weight` as weight_base, pa.`minimal_quantity`, + ag.`id_attribute_group`, ag.`is_color_group`, agl.`public_name` AS group_name, al.`name` AS attribute_name, al.`name` AS attribute_name_html, + a.`id_attribute`, a.`color` + FROM `'._DB_PREFIX_.'product_attribute` pa + INNER JOIN `'._DB_PREFIX_.'product_attribute_shop` pas ON (pas.id_product_attribute = pa.id_product_attribute AND pas.id_shop = '.(int)$id_shop.') + LEFT JOIN `'._DB_PREFIX_.'product_attribute_combination` pac ON pac.`id_product_attribute` = pa.`id_product_attribute` + LEFT JOIN `'._DB_PREFIX_.'attribute` a ON a.`id_attribute` = pac.`id_attribute` + LEFT JOIN `'._DB_PREFIX_.'attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group` + LEFT JOIN `'._DB_PREFIX_.'attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = '.(int)$id_lang.') + LEFT JOIN `'._DB_PREFIX_.'attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = '.(int)$id_lang.') + LEFT JOIN `'._DB_PREFIX_.'product` p ON (p.`id_product` = '.(int)$id_product.') + + WHERE pa.`id_product` = '.(int)$id_product.' + ORDER BY pa.`id_product_attribute`'; + + $results = Db::getInstance()->ExecuteS($sql); + $return = array(); + $product = new Product($id_product, false, $id_lang, $id_shop); + $context = Context::getContext(); + $specific_price_output = null; + $only_in_stock = Configuration::get('PD_PAL_ONLY_IN_STOCK'); + if (is_array($results) && count($results) > 1) { + foreach ($results as $k => $r) { + if (!isset($return[$r['id_product_attribute']]['attribute_name'])) { + $return[$r['id_product_attribute']]['attribute_name'] = ''; + } + + if (!isset($return[$r['id_product_attribute']]['attribute_name_html'])) { + $return[$r['id_product_attribute']]['attribute_name_html'] = ''; + } + $return[$r['id_product_attribute']]['id_attribute'] = $r['id_attribute']; + $return[$r['id_product_attribute']]['color'] = $r['color']; + + $return[$r['id_product_attribute']]['id_product'] = $id_product; + $return[$r['id_product_attribute']]['id_product_attribute'] = $r['id_product_attribute']; + $return[$r['id_product_attribute']]['attribute_name'] .= rtrim(Tools::ucfirst($r['group_name']).': '.Tools::ucfirst($r['attribute_name']).', ', ','); + $return[$r['id_product_attribute']]['attribute_name_html'] .= $r['group_name'].': '.$r['attribute_name'].'
'; + $return[$r['id_product_attribute']]['reference'] = $r['reference'] ? $r['reference'] : ''; + $return[$r['id_product_attribute']]['ean13'] = $r['ean13'] ? $r['ean13'] : ''; + $return[$r['id_product_attribute']]['mpn'] = $r['mpn'] ? $r['mpn'] : ''; + + $return[$r['id_product_attribute']]['minimal_quantity'] = $r['minimal_quantity']; + $return[$r['id_product_attribute']]['price'] = Product::getPriceStatic( + (int)$id_product, + true, + (int)$r['id_product_attribute'], + 2, + null, + false, + true, + 1, + false, + null, + null, + null, + $specific_price_output, + true, + true, + $context, + true + ); + $return[$r['id_product_attribute']]['price_tax_excl'] = Product::getPriceStatic( + (int)$id_product, + false, + (int)$r['id_product_attribute'], + 2, + null, + false, + true, + 1, + false, + null, + null, + null, + $specific_price_output, + true, + true, + $context, + true + ); + $return[$r['id_product_attribute']]['price_old'] = Product::getPriceStatic( + (int)$id_product, + true, + (int)$r['id_product_attribute'], + 2, + null, + false, + false, + 1, + false, + null, + null, + null, + $specific_price_output, + true, + true, + $context, + true + ); + $return[$r['id_product_attribute']]['price_old_tax_excl'] = Product::getPriceStatic( + (int)$id_product, + false, + (int)$r['id_product_attribute'], + 2, + null, + false, + false, + 1, + false, + null, + null, + null, + $specific_price_output, + true, + true, + $context, + true + ); + $return[$r['id_product_attribute']]['quantity'] = StockAvailable::getQuantityAvailableByProduct($id_product, (int)$r['id_product_attribute'], $id_shop); + + + $return[$r['id_product_attribute']]['images'] = Image::getBestImageAttribute($id_shop, $id_lang, $id_product, (int)$r['id_product_attribute']); + + if ((!isset($return[$r['id_product_attribute']]['color']) && Tools::isEmpty($return[$r['id_product_attribute']]['color'])) && (file_exists(_PS_COL_IMG_DIR_.$r['id_attribute'].'.jpg'))) { + $return[$r['id_product_attribute']]['color_texture_link'] = _THEME_COL_DIR_.$r['id_attribute'].'.jpg'; + } else { + $return[$r['id_product_attribute']]['color_texture_link'] = ''; + } + + + + $return[$r['id_product_attribute']]['combination_link'] = $context->link->getProductLink( + $product, + $product->link_rewrite, + null, + null, + $context->language->id, + $context->shop->id, + $r['id_product_attribute'] + ); + } + + + + foreach ($return as &$r) { + $r['product_name'] = $product->name; + $r['attribute_name'] = rtrim($r['attribute_name'], ', '); + $r['name'] = rtrim((string)$r['attribute_name'], ', '); + + // if ($only_in_stock && $return[$r['id_product_attribute']]['quantity'] <= 0) { + // unset($r['id_product_attribute']); + // } + + $images = Image::getImages($id_lang, $id_product, $r['id_product_attribute'], $id_shop); + + if (!$images) { + $images = Image::getImages($id_lang, $id_product, null, $id_shop); + } + foreach ($images as &$i) { + $i['large_default'] = $context->link->getImageLink($product->link_rewrite, $i['id_image'], 'large_default'); + $i['home_default'] = $context->link->getImageLink($product->link_rewrite, $i['id_image'], 'home_default'); + } + $r['images'] = $images; + } + } else { + $images = Image::getImages($id_lang, $id_product, null, $id_shop); + foreach ($images as &$i) { + $i['large_default'] = $context->link->getImageLink($product->link_rewrite, $i['id_image'], 'large_default'); + $i['home_default'] = $context->link->getImageLink($product->link_rewrite, $i['id_image'], 'home_default'); + } + + + $return[0] = [ + 'product_name' => $product->name, + 'name' => $product->name, + 'attribute_name' => $this->l('--'), + 'attribute_name_html' => $this->l('--'), + 'images' => $images, + 'reference' => $product->reference, + 'ean13' => $product->ean13, + 'mpn' => $product->mpn, + 'id_product' => $product->id, + 'id_product_attribute' => 0, + + 'minimal_quantity' => '', + 'price' => Product::getPriceStatic( + (int)$id_product, + true, + 0, + 2, + null, + false, + true, + 1, + false, + null, + null, + null, + $specific_price_output, + true, + true, + $context, + true + ), + 'price_tax_excl' => Product::getPriceStatic( + (int)$id_product, + false, + 0, + 2, + null, + false, + true, + 1, + false, + null, + null, + null, + $specific_price_output, + true, + true, + $context, + true + ), + 'price_old' => Product::getPriceStatic( + (int)$id_product, + true, + 0, + 2, + null, + false, + false, + 1, + false, + null, + null, + null, + $specific_price_output, + true, + true, + $context, + true + ), + 'price_old_tax_excl' => Product::getPriceStatic( + (int)$id_product, + false, + 0, + 2, + null, + false, + false, + 1, + false, + null, + null, + null, + $specific_price_output, + true, + true, + $context, + true + ), + 'quantity' => StockAvailable::getQuantityAvailableByProduct($id_product, 0, $id_shop), + ]; + } + + return $return; + } +} diff --git a/modules/pdproductattributeslist/translations/.php-cs-fixer.cache b/modules/pdproductattributeslist/translations/.php-cs-fixer.cache new file mode 100644 index 00000000..e69de29b diff --git a/modules/pdproductattributeslist/translations/index.php b/modules/pdproductattributeslist/translations/index.php new file mode 100644 index 00000000..93974122 --- /dev/null +++ b/modules/pdproductattributeslist/translations/index.php @@ -0,0 +1,35 @@ + +* @copyright 2007-2013 PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/modules/pdproductattributeslist/translations/pl.php b/modules/pdproductattributeslist/translations/pl.php new file mode 100644 index 00000000..3bb0954e --- /dev/null +++ b/modules/pdproductattributeslist/translations/pl.php @@ -0,0 +1,72 @@ +pdproductattributeslist_2eccf10a3643e0db7f111705609f7ab6'] = 'Lista kombinacji produktów na stronie produktu'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_c801edf1b84910db5a2042cf354b971e'] = 'Lista kombinacji produktów na stronie produktu w tab-ie lub w stopce produktu lub własnym zaczepieniu'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_0cc39f9a63392ad0ed1f9a14931938b6'] = 'Konfiguracja'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_43d5eb629ea9c3a6188fa8fbd41484b1'] = 'Wyświetla nagłówek bloku'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_d658f671afaa30c65d2678a4396e7ae0'] = 'Pozwala na ukrycie / pokazanie nagłówku bloku'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_93cba07454f06a4a960172bbd6e2a435'] = 'Tak'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nie'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_0e1665f5f9e5978cd6bd8e9d6f5166d7'] = 'Układ listy kombinacji'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_b32a74568240db4f2b2829b023076262'] = 'Układ wyświetlania listy kombinacji'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_51c45b795d5d18a3e4e0c37e8b20a141'] = 'Tabela'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_5174d1309f275ba6f275db3af9eb3e18'] = 'Siatka'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_33e3fc207368e302cf4e11c74f9eff2b'] = 'Pozycja bloku'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_40e9261a029b34c7bffb50b059739c80'] = 'Pozwala na wybranie pozycji / zaczepienia dla tabeli atrybutów'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_7aa6f8d4a5f7d0594ec377aff6814bde'] = 'Własna pozycja (displayCustomAttributesListTable)'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_0f527c701a8caf14340f875eeaaab008'] = 'Zakładka produktu'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_dac63d85b16cd61aabf6019497f4eb7f'] = 'Stopka produktu'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_d4dccb8ca2dac4e53c01bd9954755332'] = 'Zapisz ustawienia'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_4f14581ed633ed8667521b12404352bc'] = 'Instruckcje dodania hoka do list produktów w (np. w widoku listy a nie siatki)'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_9d515c34e23f29db032f6a49f3af0314'] = 'Prosimy otworzyć plik tpl szablonu'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_ebda28ff7068afb82969740d6b6719a5'] = 'do edycji w miejscu w których chcemy wyświetlić tabele kombinacji atrybutów dodać poniższa linię kodu:'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_c888438d14855d7d96a2724ee9c306bd'] = 'Zapisano ustawienia'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_1e54bff63483b64a42bddfbddb457992'] = 'został dodany!'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_902b0d55fddef6f8d651fe1035b7d4bd'] = 'Błąd dodawania'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_505a83f220c02df2f85c3810cd9ceb38'] = 'Poprawne dodanie'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_dc6c32f4320d95f02c77e4fc7b7ea6e5'] = 'szt.'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_ed96f783e467cc984e4945063760e2c4'] = 'Produkt'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_346d0eb68963ba33595489c7293b6541'] = 'w wariancie:'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_f80e6243f8f08cf482ed0bb6c98d1366'] = 'maksymalna ilość dostępna:'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_713cc13df92272edf0a484f1259698e3'] = 'Nie wybrano żadnej ilości produktów!'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_0c5de1f9de238ec26b6a26a2ba3488a6'] = 'Inne warianty produktu'; +$_MODULE['<{pdproductattributeslist}prestashop>pdproductattributeslist_cfab1ba8c67c7c838db98d666f02a132'] = '--'; +$_MODULE['<{pdproductattributeslist}prestashop>ajax_52416f6d393744fcb0f4f89ae0984077'] = 'Brak wariantu'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_0c5de1f9de238ec26b6a26a2ba3488a6'] = 'Inne warianty produktu'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_be53a0541a6d36f6ecb879fa2c584b08'] = 'Zdjęcie'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_492f18b60811bf85ce118c0c6a1a5c4a'] = 'Wariant'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_9060c986ab8a0f0e6662e6f79ac2d0f9'] = 'Informacje o produkcie'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_77eb276f5dcdf4fbca854e908216f7b2'] = 'Cena (brutto)'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_e192956d901dff59c35fd2c477ed28d6'] = 'Cena (netto)'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_dba03ee64be6e500032c6aa0e6621666'] = 'Dostępnych'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_bef7a703b57f594877ee057052345617'] = 'Wybierz ilość'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_11554327412be059a74c4868e210cca9'] = 'Wariant'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_c4c95c36570d5a8834be5e88e2f0f6b2'] = 'Informacje'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_63d5049791d9d79d86e9a108b0a999ca'] = 'Index'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_462c4392551aed97c4d512e0351aa9b1'] = 'EAN'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_f0a8011e2482cf9351b7bf565c7950ad'] = 'Cena (brutto)'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_4da86e0470f0b14e4e516442202a8d26'] = 'Cena (netto)'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_c6281feb3603f7295b43a7c7c871cb9d'] = 'Dostępnych'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_3ecf2642759a04bd3616642bd56bed59'] = 'szt.'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontent_8ee84ed07edaed371d95b76ea08d08a0'] = 'Dodaj wybrane do koszyka'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_0c5de1f9de238ec26b6a26a2ba3488a6'] = 'Wybierz wariant produktu'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_be53a0541a6d36f6ecb879fa2c584b08'] = 'Zdjęcie'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_492f18b60811bf85ce118c0c6a1a5c4a'] = 'Wariant'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_9060c986ab8a0f0e6662e6f79ac2d0f9'] = 'informacje'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_77eb276f5dcdf4fbca854e908216f7b2'] = 'Cena (brutto)'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_e192956d901dff59c35fd2c477ed28d6'] = 'Cena (netto)'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_dba03ee64be6e500032c6aa0e6621666'] = 'Dostępnych'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_bef7a703b57f594877ee057052345617'] = 'Wybierz ilość'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_11554327412be059a74c4868e210cca9'] = 'Wariant'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_c4c95c36570d5a8834be5e88e2f0f6b2'] = 'Informacje'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_63d5049791d9d79d86e9a108b0a999ca'] = 'Index'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_462c4392551aed97c4d512e0351aa9b1'] = 'Ean'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_f0a8011e2482cf9351b7bf565c7950ad'] = 'Cena (brutto)'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_4da86e0470f0b14e4e516442202a8d26'] = 'Cena (netto)'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_c6281feb3603f7295b43a7c7c871cb9d'] = 'Dostępnych'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_3ecf2642759a04bd3616642bd56bed59'] = 'szt.'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplaycustomattributeslisttable_8ee84ed07edaed371d95b76ea08d08a0'] = 'Dodaj wybrane do koszyka'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontentgrid_0c5de1f9de238ec26b6a26a2ba3488a6'] = 'Inny wariant'; +$_MODULE['<{pdproductattributeslist}prestashop>hookdisplayproducttabcontentgrid_2d0f6b8300be19cf35e89e66f0677f95'] = 'Do koszyka'; diff --git a/modules/pdproductattributeslist/views/css/dragtable.mod.min.css b/modules/pdproductattributeslist/views/css/dragtable.mod.min.css new file mode 100644 index 00000000..bcd580d9 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/dragtable.mod.min.css @@ -0,0 +1 @@ +.dragtable-sortable{list-style-type:none;margin:0;padding:0;-moz-user-select:none;z-index:10}.dragtable-sortable li{margin:0;padding:0;float:left;font-size:1em}.dragtable-sortable table{margin-top:0}.dragtable-sortable td,.dragtable-sortable th{border-left:0}.dragtable-sortable li:first-child td,.dragtable-sortable li:first-child th{border-left:1px solid #ccc}.ui-sortable-helper{opacity:.7}.ui-sortable-placeholder{-moz-box-shadow:4px 5px 4px rgba(0,0,0,.2) inset;-webkit-box-shadow:4px 5px 4px rgba(0,0,0,.2) inset;box-shadow:4px 5px 4px rgba(0,0,0,.2) inset;border-bottom:1px solid rgba(0,0,0,.2);border-top:1px solid rgba(0,0,0,.2);visibility:visible!important;background:#efefef}.ui-sortable-placeholder *{opacity:0;visibility:hidden}.table-handle,.table-handle-disabled{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyIiBoZWlnaHQ9IjEzIj48cmVjdCBzdHlsZT0iZmlsbDojMzMzO2ZpbGwtb3BhY2l0eTouODsiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHg9IjEiIHk9IjIiLz4JPHJlY3Qgc3R5bGU9ImZpbGw6IzMzMztmaWxsLW9wYWNpdHk6Ljg7IiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4PSIxIiB5PSI0Ii8+CTxyZWN0IHN0eWxlPSJmaWxsOiMzMzM7ZmlsbC1vcGFjaXR5Oi44OyIgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iNiIvPjxyZWN0IHN0eWxlPSJmaWxsOiMzMzM7ZmlsbC1vcGFjaXR5Oi44OyIgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iOCIvPjxyZWN0IHN0eWxlPSJmaWxsOiMzMzM7ZmlsbC1vcGFjaXR5Oi44OyIgd2lkdGg9IjEiIGhlaWdodD0iMSIgeD0iMSIgeT0iMTAiLz48L3N2Zz4=);background-repeat:repeat-x;height:13px;margin:0 1px;cursor:move}.table-handle-disabled{opacity:0;cursor:not-allowed}.dragtable-sortable table{margin-bottom:0} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/filter.formatter.min.css b/modules/pdproductattributeslist/views/css/filter.formatter.min.css new file mode 100644 index 00000000..9a10baf9 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/filter.formatter.min.css @@ -0,0 +1 @@ +.tablesorter .tablesorter-filter-row td{text-align:center;font-size:.9em;font-weight:400}.tablesorter .ui-slider,.tablesorter input.range{width:90%;margin:2px auto 2px auto;font-size:.8em}.tablesorter .ui-slider{top:12px}.tablesorter .ui-slider .ui-slider-handle{width:.9em;height:.9em}.tablesorter .ui-datepicker{font-size:.8em}.tablesorter .ui-slider-horizontal{height:.5em}.tablesorter .value-popup:after{content:attr(data-value);position:absolute;bottom:14px;left:-7px;min-width:18px;height:12px;background-color:#444;background-image:-webkit-gradient(linear,left top,left bottom,from(#444),to(#999));background-image:-webkit-linear-gradient(top,#444,#999);background-image:-moz-linear-gradient(top,#444,#999);background-image:-o-linear-gradient(top,#444,#999);background-image:linear-gradient(to bottom,#444,#999);-webkit-border-radius:3px;border-radius:3px;-webkit-background-clip:padding-box;background-clip:padding-box;-webkit-box-shadow:0 0 4px 0 #777;box-shadow:0 0 4px 0 #777;border:#444 1px solid;color:#fff;font:1em/1.1em Arial,Sans-Serif;padding:1px;text-align:center}.tablesorter .value-popup:before{content:"";position:absolute;width:0;height:0;border-top:8px solid #777;border-left:8px solid transparent;border-right:8px solid transparent;top:-8px;left:50%;margin-left:-8px;margin-top:-1px}.tablesorter .dateFrom,.tablesorter .dateTo{width:80px;margin:2px 5px}.tablesorter .button{width:14px;height:14px;background:#fcfff4;background:-webkit-linear-gradient(top,#fcfff4 0,#dfe5d7 40%,#b3bead 100%);background:-moz-linear-gradient(top,#fcfff4 0,#dfe5d7 40%,#b3bead 100%);background:-o-linear-gradient(top,#fcfff4 0,#dfe5d7 40%,#b3bead 100%);background:-ms-linear-gradient(top,#fcfff4 0,#dfe5d7 40%,#b3bead 100%);background:linear-gradient(top,#fcfff4 0,#dfe5d7 40%,#b3bead 100%);margin:1px 5px 1px 1px;-webkit-border-radius:25px;-moz-border-radius:25px;border-radius:25px;-webkit-box-shadow:inset 0 1px 1px #fff,0 1px 3px rgba(0,0,0,.5);-moz-box-shadow:inset 0 1px 1px #fff,0 1px 3px rgba(0,0,0,.5);box-shadow:inset 0 1px 1px #fff,0 1px 3px rgba(0,0,0,.5);position:relative;top:3px;display:inline-block}.tablesorter .button label{cursor:pointer;position:absolute;width:10px;height:10px;-webkit-border-radius:25px;-moz-border-radius:25px;border-radius:25px;left:2px;top:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.5),0 1px 0 #fff;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.5),0 1px 0 #fff;box-shadow:inset 0 1px 1px rgba(0,0,0,.5),0 1px 0 #fff;background:#45484d;background:-webkit-linear-gradient(top,#222 0,#45484d 100%);background:-moz-linear-gradient(top,#222 0,#45484d 100%);background:-o-linear-gradient(top,#222 0,#45484d 100%);background:-ms-linear-gradient(top,#222 0,#45484d 100%);background:linear-gradient(top,#222 0,#45484d 100%)}.tablesorter .button label:after{opacity:0;content:'';position:absolute;width:8px;height:8px;background:#55f;background:-webkit-linear-gradient(top,#aaf 0,#55f 100%);background:-moz-linear-gradient(top,#aaf 0,#55f 100%);background:-o-linear-gradient(top,#aaf 0,#55f 100%);background:-ms-linear-gradient(top,#aaf 0,#55f 100%);background:linear-gradient(top,#aaf 0,#55f 100%);-webkit-border-radius:25px;-moz-border-radius:25px;border-radius:25px;top:1px;left:1px;-webkit-box-shadow:inset 0 1px 1px #fff,0 1px 3px rgba(0,0,0,.5);-moz-box-shadow:inset 0 1px 1px #fff,0 1px 3px rgba(0,0,0,.5);box-shadow:inset 0 1px 1px #fff,0 1px 3px rgba(0,0,0,.5)}.tablesorter .button label:hover::after{opacity:.3}.tablesorter .button input[type=checkbox]{visibility:hidden}.tablesorter .button input[type=checkbox]:checked+label:after{opacity:1}.tablesorter .colorpicker{width:30px;height:18px}.tablesorter .ui-spinner-input{width:100px;height:18px}.tablesorter .currentColor,.tablesorter .ui-spinner{position:relative}.tablesorter input.number{position:relative}.tablesorter .tablesorter-filter-row.hideme td *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/highlights.min.css b/modules/pdproductattributeslist/views/css/highlights.min.css new file mode 100644 index 00000000..6db668ab --- /dev/null +++ b/modules/pdproductattributeslist/views/css/highlights.min.css @@ -0,0 +1 @@ +table.focus-highlight td:before,table.hover-highlight td:before{background:#fff}.focus-highlight .odd td:before,.focus-highlight .odd th:before,.hover-highlight .odd td:before,.hover-highlight .odd th:before{background:#ebf2fa}.focus-highlight .even td:before,.focus-highlight .even th:before,.hover-highlight .even td:before,.hover-highlight .even th:before{background-color:#fff}.focus-highlight td:focus::before,.focus-highlight th:focus::before{background-color:#add8e6}.focus-highlight td:focus::after,.focus-highlight th:focus::after{background-color:#add8e6}.focus-highlight .even td:focus,.focus-highlight .even th:focus,.focus-highlight .odd td:focus,.focus-highlight .odd th:focus,.focus-highlight td:focus,.focus-highlight th:focus{background-color:#d9d9d9;color:#333}table.hover-highlight tbody>tr.even:hover>td,table.hover-highlight tbody>tr.odd:hover>td,table.hover-highlight tbody>tr:hover>td{background-color:#ffa}.hover-highlight tbody tr td:hover::after,.hover-highlight tbody tr th:hover::after{background-color:#ffa}.focus-highlight td:focus::after,.focus-highlight th:focus::after,.hover-highlight td:hover::after,.hover-highlight th:hover::after{content:'';position:absolute;width:100%;height:999em;left:0;top:-555em;z-index:-1}.focus-highlight td:focus::before,.focus-highlight th:focus::before{content:'';position:absolute;width:999em;height:100%;left:-555em;top:0;z-index:-2}.focus-highlight,.hover-highlight{overflow:hidden}.focus-highlight td,.focus-highlight th,.hover-highlight td,.hover-highlight th{position:relative;outline:0}table.focus-highlight,table.focus-highlight tbody tr.even>td,table.focus-highlight tbody tr.even>th,table.focus-highlight tbody tr.odd>td,table.focus-highlight tbody tr.odd>th,table.focus-highlight tbody>tr>td,table.hover-highlight,table.hover-highlight tbody tr.even>td,table.hover-highlight tbody tr.even>th,table.hover-highlight tbody tr.odd>td,table.hover-highlight tbody tr.odd>th,table.hover-highlight tbody>tr>td{background:0 0}table.focus-highlight td:before,table.hover-highlight td:before{content:'';position:absolute;width:100%;height:100%;left:0;top:0;z-index:-3} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/images/black-asc.gif b/modules/pdproductattributeslist/views/css/images/black-asc.gif new file mode 100644 index 00000000..730533fa Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/black-asc.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/black-desc.gif b/modules/pdproductattributeslist/views/css/images/black-desc.gif new file mode 100644 index 00000000..4c3b6102 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/black-desc.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/black-unsorted.gif b/modules/pdproductattributeslist/views/css/images/black-unsorted.gif new file mode 100644 index 00000000..5647f658 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/black-unsorted.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/bootstrap-black-unsorted.png b/modules/pdproductattributeslist/views/css/images/bootstrap-black-unsorted.png new file mode 100644 index 00000000..3190f29a Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/bootstrap-black-unsorted.png differ diff --git a/modules/pdproductattributeslist/views/css/images/bootstrap-white-unsorted.png b/modules/pdproductattributeslist/views/css/images/bootstrap-white-unsorted.png new file mode 100644 index 00000000..368c66dd Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/bootstrap-white-unsorted.png differ diff --git a/modules/pdproductattributeslist/views/css/images/dragtable-handle.png b/modules/pdproductattributeslist/views/css/images/dragtable-handle.png new file mode 100644 index 00000000..52a1a565 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/dragtable-handle.png differ diff --git a/modules/pdproductattributeslist/views/css/images/dragtable-handle.svg b/modules/pdproductattributeslist/views/css/images/dragtable-handle.svg new file mode 100644 index 00000000..041ec1de --- /dev/null +++ b/modules/pdproductattributeslist/views/css/images/dragtable-handle.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/images/dropbox-asc-hovered.png b/modules/pdproductattributeslist/views/css/images/dropbox-asc-hovered.png new file mode 100644 index 00000000..4e625e02 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/dropbox-asc-hovered.png differ diff --git a/modules/pdproductattributeslist/views/css/images/dropbox-asc.png b/modules/pdproductattributeslist/views/css/images/dropbox-asc.png new file mode 100644 index 00000000..7b6615bc Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/dropbox-asc.png differ diff --git a/modules/pdproductattributeslist/views/css/images/dropbox-desc-hovered.png b/modules/pdproductattributeslist/views/css/images/dropbox-desc-hovered.png new file mode 100644 index 00000000..806707dd Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/dropbox-desc-hovered.png differ diff --git a/modules/pdproductattributeslist/views/css/images/dropbox-desc.png b/modules/pdproductattributeslist/views/css/images/dropbox-desc.png new file mode 100644 index 00000000..868a37cc Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/dropbox-desc.png differ diff --git a/modules/pdproductattributeslist/views/css/images/first.png b/modules/pdproductattributeslist/views/css/images/first.png new file mode 100644 index 00000000..7e505d68 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/first.png differ diff --git a/modules/pdproductattributeslist/views/css/images/green-asc.gif b/modules/pdproductattributeslist/views/css/images/green-asc.gif new file mode 100644 index 00000000..4cfba095 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/green-asc.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/green-desc.gif b/modules/pdproductattributeslist/views/css/images/green-desc.gif new file mode 100644 index 00000000..4f881765 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/green-desc.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/green-header.gif b/modules/pdproductattributeslist/views/css/images/green-header.gif new file mode 100644 index 00000000..cc746b70 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/green-header.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/green-unsorted.gif b/modules/pdproductattributeslist/views/css/images/green-unsorted.gif new file mode 100644 index 00000000..0afe2c02 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/green-unsorted.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/ice-asc.gif b/modules/pdproductattributeslist/views/css/images/ice-asc.gif new file mode 100644 index 00000000..0961d9aa Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/ice-asc.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/ice-desc.gif b/modules/pdproductattributeslist/views/css/images/ice-desc.gif new file mode 100644 index 00000000..0330fcca Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/ice-desc.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/ice-unsorted.gif b/modules/pdproductattributeslist/views/css/images/ice-unsorted.gif new file mode 100644 index 00000000..c1afde55 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/ice-unsorted.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/last.png b/modules/pdproductattributeslist/views/css/images/last.png new file mode 100644 index 00000000..41e248cc Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/last.png differ diff --git a/modules/pdproductattributeslist/views/css/images/loading.gif b/modules/pdproductattributeslist/views/css/images/loading.gif new file mode 100644 index 00000000..72054717 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/loading.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/metro-black-asc.png b/modules/pdproductattributeslist/views/css/images/metro-black-asc.png new file mode 100644 index 00000000..61c4f801 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/metro-black-asc.png differ diff --git a/modules/pdproductattributeslist/views/css/images/metro-black-desc.png b/modules/pdproductattributeslist/views/css/images/metro-black-desc.png new file mode 100644 index 00000000..fc2188c6 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/metro-black-desc.png differ diff --git a/modules/pdproductattributeslist/views/css/images/metro-loading.gif b/modules/pdproductattributeslist/views/css/images/metro-loading.gif new file mode 100644 index 00000000..ae274c6c Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/metro-loading.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/metro-unsorted.png b/modules/pdproductattributeslist/views/css/images/metro-unsorted.png new file mode 100644 index 00000000..e67ab2a6 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/metro-unsorted.png differ diff --git a/modules/pdproductattributeslist/views/css/images/metro-white-asc.png b/modules/pdproductattributeslist/views/css/images/metro-white-asc.png new file mode 100644 index 00000000..a850fbf1 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/metro-white-asc.png differ diff --git a/modules/pdproductattributeslist/views/css/images/metro-white-desc.png b/modules/pdproductattributeslist/views/css/images/metro-white-desc.png new file mode 100644 index 00000000..fc05607e Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/metro-white-desc.png differ diff --git a/modules/pdproductattributeslist/views/css/images/next.png b/modules/pdproductattributeslist/views/css/images/next.png new file mode 100644 index 00000000..aebf14d9 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/next.png differ diff --git a/modules/pdproductattributeslist/views/css/images/prev.png b/modules/pdproductattributeslist/views/css/images/prev.png new file mode 100644 index 00000000..7d1d049e Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/prev.png differ diff --git a/modules/pdproductattributeslist/views/css/images/white-asc.gif b/modules/pdproductattributeslist/views/css/images/white-asc.gif new file mode 100644 index 00000000..2173b0a0 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/white-asc.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/white-desc.gif b/modules/pdproductattributeslist/views/css/images/white-desc.gif new file mode 100644 index 00000000..7109c3ea Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/white-desc.gif differ diff --git a/modules/pdproductattributeslist/views/css/images/white-unsorted.gif b/modules/pdproductattributeslist/views/css/images/white-unsorted.gif new file mode 100644 index 00000000..9bfc3459 Binary files /dev/null and b/modules/pdproductattributeslist/views/css/images/white-unsorted.gif differ diff --git a/modules/pdproductattributeslist/views/css/index.php b/modules/pdproductattributeslist/views/css/index.php new file mode 100644 index 00000000..93974122 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/index.php @@ -0,0 +1,35 @@ + +* @copyright 2007-2013 PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/modules/pdproductattributeslist/views/css/jquery.tablesorter.pager.min.css b/modules/pdproductattributeslist/views/css/jquery.tablesorter.pager.min.css new file mode 100644 index 00000000..17bc885c --- /dev/null +++ b/modules/pdproductattributeslist/views/css/jquery.tablesorter.pager.min.css @@ -0,0 +1 @@ +.tablesorter-pager{padding:5px}td.tablesorter-pager{background-color:#e6eeee;margin:0}.tablesorter-pager img{vertical-align:middle;margin-right:2px;cursor:pointer}.tablesorter-pager .pagedisplay{padding:0 5px 0 5px;width:auto;white-space:nowrap;text-align:center}.tablesorter-pager select{margin:0;padding:0}.tablesorter-pager.disabled{display:none}.tablesorter-pager .disabled{opacity:.5;cursor:default} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/less/bootstrap.less b/modules/pdproductattributeslist/views/css/less/bootstrap.less new file mode 100644 index 00000000..d71e2208 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/less/bootstrap.less @@ -0,0 +1,328 @@ +/* Tablesorter Custom Bootstrap v3 LESS Theme by Rob Garrison + +To create your own theme, modify the code below and run it through +a LESS compiler, like this one: http://leafo.net/lessphp/editor.html +or download less.js from http://lesscss.org/ + +Test out these customization files live + Basic LESS Theme : http://codepen.io/Mottie/pen/eqBbn + Bootstrap LESS : http://codepen.io/Mottie/pen/Ltzpi + Metro LESS Style : http://codepen.io/Mottie/pen/gCslk + Basic SCSS : http://codepen.io/Mottie/pen/LbXdNR + +*/ + +/*** theme ***/ +@theme : tablesorter-bootstrap; + +/*** fonts ***/ +@tableHeaderFont : 14px bold Arial, Sans-serif; +@tableBodyFont : 14px "Helvetica Neue", Helvetica, Arial, sans-serif; + +/*** color definitions ***/ +/* for best results, only change the hue (240), + leave the saturation (60%) and luminosity (80%) alone + pick the color from here: http://hslpicker.com/#99E699 */ +@headerBackground : hsl(240, 60%, 80%); +@borderAndBackground : #cdcdcd; +@overallBorder : @borderAndBackground 1px solid; +@headerTextColor : #000; + +@bodyBackground : #fff; +@bodyTextColor : #000; + +@headerAsc : darken(spin(@headerBackground, 5), 10%); /* darken(@headerBackground, 10%); */ +@headerDesc : lighten(spin(@headerBackground, -5), 10%); /* desaturate(@headerAsc, 5%); */ + +@captionBackground : #fff; /* it might be best to match the document body background color here */ +@errorBackground : #e6bf99; /* ajax error message (added to thead) */ + +@filterCellBackground : #eee; +@filterElementTextColor: #333; +@filterElementBkgd : #fff; +@filterElementBorder : 1px solid #bbb; +@filterTransitionTime : 0.1s; +@filterRowHiddenHeight : 4px; /* becomes height using padding (so it's divided by 2) */ + +@overallPadding : 4px; +/* 20px should be slightly wider than the icon width to avoid overlap */ +@headerPadding : 4px 20px 4px 4px; +@headerMargin : 0 0 18px; + +/* url(icons/loading.gif); */ +@processingIcon : url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs='); + +/* zebra striping */ +.allRows { + background-color: @bodyBackground; + color: @bodyTextColor; +} +.evenRows { + background-color: lighten(@headerBackground, 35%); +} +.oddRows { + background-color: lighten(@headerBackground, 18%); +} + +/* hovered rows */ +.oddHovered { + background-color: desaturate(@headerBackground, 60%); +} +.evenHovered { + background-color: lighten( desaturate(@headerBackground, 60%), 10% ); +} + +/* Columns widget */ +@primaryOdd : spin(@headerBackground, 10); /* saturate( darken( desaturate(@headerBackground, 10%), 10% ), 30%); */ +@primaryEven : lighten( @primaryOdd, 10% ); +@secondaryOdd : @primaryEven; +@secondaryEven : lighten( @primaryEven, 5% ); +@tertiaryOdd : @secondaryEven; +@tertiaryEven : lighten( @secondaryEven, 5% ); + +/* Filter widget transition */ +.filterWidgetTransition { + -webkit-transition: line-height @filterTransitionTime ease; + -moz-transition: line-height @filterTransitionTime ease; + -o-transition: line-height @filterTransitionTime ease; + transition: line-height @filterTransitionTime ease; +} + +/*** icon block ***/ +.iconPosition { + font-size: 11px; + position: absolute; + right: 2px; + top: 50%; + margin-top: -7px; /* half the icon height; older IE doesn't like this */ + width: 14px; + height: 14px; + background-repeat: no-repeat; + line-height: 14px; +} + +/* black */ +@unsortedBlack : url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAYAAAD5YeaVAAAA20lEQVR4AWJABpKSkoxALCstLb0aUAsZaCAMhVEY6B0amx8YZWDDEDSBa2AGe7XeIiAAClYwVGBvsAcIllsf/mvcC9DgOOd8h90fxWvngVEUbZIkuWRZZlE8eQjcisgZMM9zi+LJ6ZfwegmWZflZDugdHMfxTcGqql7TNBlUB/QObtv2VBSFrev6OY7jngzFk9OT/fn73fWYpqnlXNyXDMWT0zuYx/Bvel9ej+LJ6R08DMOu67q7DkTkrSA5vYPneV71fX/QASdTkJwezhs0TfMARn0wMDDGXEPgF4oijqwM5YjNAAAAAElFTkSuQmCC); + +/* white */ +@unsortedWhite : url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAYAAAD5YeaVAAAAe0lEQVR4AbXQoRWDMBiF0Sh2QLAAQ8SxJGugWSA6A2STW1PxTsnB9cnkfuYvv8OGC1t5G3Y0QMP+Bm857keAdQIzWBP3+Bw4MADQE18B6/etRnCV/w9nnGuLezfAmXhABGtAGIkruvk6auIFRwQJDywllsEAjCecB20GP59BQQ+gtlRLAAAAAElFTkSuQmCC); + +/* automatically choose the correct arrow/text color */ +.headerText (@a) when (lightness(@a) >= 50%) { + color: @headerTextColor; +} +.headerText (@a) when (lightness(@a) < 50%) { + color: lighten(@headerTextColor, 90%); +} +.unsorted (@a) when (lightness(@a) >= 50%) { + background-image: @unsortedBlack; + color: @headerTextColor; +} +.unsorted (@a) when (lightness(@a) < 50%) { + background-image: @unsortedWhite; + color: lighten(@headerTextColor, 90%); +} + +/* variable theme name - requires less.js 1.3+; + or just replace (!".@{theme}") with the contents of @theme +*/ +.@{theme} { + font: @tableBodyFont; + background-color: @borderAndBackground; + width: 100%; + + /* style th's outside of the thead */ + th, thead td { + font: @tableHeaderFont; + font-weight: bold; + background-color: @headerBackground; + .headerText(@headerBackground); + border-collapse: collapse; + margin: @headerMargin; + padding: @overallPadding; + } + + tbody td, tfoot th, tfoot td { + padding: @overallPadding; + vertical-align: top; + } + + /* style header */ + .tablesorter-header { + cursor: pointer; + } + + .tablesorter-header-inner { + position: relative; + padding: @headerPadding; + } + + /* bootstrap uses for icons */ + .tablesorter-header-inner i.tablesorter-icon { + .iconPosition + } + + .tablesorter-header.sorter-false { + cursor: default; + + i.tablesorter-icon { + display: none; + } + .tablesorter-header-inner { + padding: @overallPadding; + } + } + + .tablesorter-headerAsc { + background-color: @headerAsc; + } + + .tablesorter-headerDesc { + background-color: @headerDesc; + } + + .bootstrap-icon-unsorted { + .unsorted(@headerBackground); + } + + + /* tfoot */ + tfoot .tablesorter-headerAsc, + tfoot .tablesorter-headerDesc { + /* remove sort arrows from footer */ + background-image: none; + } + + /* optional disabled input styling */ + .disabled { + opacity: 0.5; + filter: alpha(opacity=50); + cursor: not-allowed; + } + + /* body */ + tbody { + + td { + .allRows; + padding: @overallPadding; + vertical-align: top; + } + + /* Zebra Widget - row alternating colors */ + tr.odd > td { + .oddRows; + } + tr.even > td { + .evenRows; + } + + } + + /* hovered row colors + you'll need to add additional lines for + rows with more than 2 child rows + */ + tbody > tr.hover > td, + tbody > tr:hover > td, + tbody > tr:hover + tr.tablesorter-childRow > td, + tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, + tbody > tr.even.hover > td, + tbody > tr.even:hover > td, + tbody > tr.even:hover + tr.tablesorter-childRow > td, + tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { + .evenHovered; + } + tbody > tr.odd.hover > td, + tbody > tr.odd:hover > td, + tbody > tr.odd:hover + tr.tablesorter-childRow > td, + tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { + .oddHovered; + } + + /* table processing indicator - indeterminate spinner */ + .tablesorter-processing { + background-image: @processingIcon; + background-position: center center; + background-repeat: no-repeat; + } + + /* Column Widget - column sort colors */ + tr.odd td.primary { + background-color: @primaryOdd; + } + td.primary, tr.even td.primary { + background-color: @primaryEven; + } + tr.odd td.secondary { + background-color: @secondaryOdd; + } + td.secondary, tr.even td.secondary { + background-color: @secondaryEven; + } + tr.odd td.tertiary { + background-color: @tertiaryOdd; + } + td.tertiary, tr.even td.tertiary { + background-color: @tertiaryEven; + } + + /* caption (non-theme matching) */ + caption { + background-color: @captionBackground ; + } + + /* filter widget */ + .tablesorter-filter-row input, + .tablesorter-filter-row select{ + width: 98%; + margin: 0; + padding: @overallPadding; + color: @filterElementTextColor; + background-color: @filterElementBkgd; + border: @filterElementBorder; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + .filterWidgetTransition; + } + .tablesorter-filter-row { + background-color: @filterCellBackground; + } + .tablesorter-filter-row td { + text-align: center; + background-color: @filterCellBackground; + line-height: normal; + text-align: center; /* center the input */ + .filterWidgetTransition; + } + /* hidden filter row */ + .tablesorter-filter-row.hideme td { + padding: @filterRowHiddenHeight / 2; + margin: 0; + line-height: 0; + cursor: pointer; + } + .tablesorter-filter-row.hideme * { + height: 1px; + min-height: 0; + border: 0; + padding: 0; + margin: 0; + /* don't use visibility: hidden because it disables tabbing */ + opacity: 0; + filter: alpha(opacity=0); + } + /* rows hidden by filtering (needed for child rows) */ + .filtered { + display: none; + } + + /* ajax error row */ + .tablesorter-errorRow td { + text-align: center; + cursor: pointer; + background-color: @errorBackground; + } + +} diff --git a/modules/pdproductattributeslist/views/css/less/metro.less b/modules/pdproductattributeslist/views/css/less/metro.less new file mode 100644 index 00000000..5fd989fe --- /dev/null +++ b/modules/pdproductattributeslist/views/css/less/metro.less @@ -0,0 +1,357 @@ +/* Tablesorter Custom Metro LESS Theme by Rob Garrison + +To create your own theme, modify the code below and run it through +a LESS compiler, like this one: http://leafo.net/lessphp/editor.html +or download less.js from http://lesscss.org/ + +Test out these customization files live + Basic LESS Theme : http://codepen.io/Mottie/pen/eqBbn + Bootstrap LESS : http://codepen.io/Mottie/pen/Ltzpi + Metro LESS Style : http://codepen.io/Mottie/pen/gCslk + Basic SCSS : http://codepen.io/Mottie/pen/LbXdNR + +*/ + +/*** theme ***/ +@theme : tablesorter-metro; + +/*** fonts ***/ +@tableHeaderFont : 14px 'Segoe UI Semilight', 'Open Sans', Verdana, Arial, Helvetica, sans-serif; +@tableBodyFont : 14px 'Segoe UI Semilight', 'Open Sans', Verdana, Arial, Helvetica, sans-serif; + +/*** color definitions ***/ +/* for best results, only change the hue (120), + leave the saturation (60%) and luminosity (75%) alone + pick the color from here: http://hslpicker.com/#825a2b + + Inspired by http://www.jtable.org/ metro themes: + Blue: hsl(212, 86%, 35%) + Brown hsl(32, 50%, 30%) + Crimson hsl(0, 100%, 38%) + Dark Grey hsl(0, 0%, 27%) + Dark Orange hsl(13, 70%, 51%) + Green hsl(120, 100%, 32%) + Light Gray hsl(0, 0%, 44%) + Pink hsl(297, 100%, 33%) + Purple hsl(257, 51%, 48%) + Red hsl(5, 100%, 40%) +*/ +@headerBackground : hsl(32, 50%, 30%); +@borderAndBackground : #cdcdcd; +@headerTextColor : #eee; + +@bodyBackground : #fff; +@bodyTextColor : #000; + +@captionBackground : #fff; /* it might be best to match the document body background color here */ +@errorBackground : #e6bf99; /* ajax error message (added to thead) */ + +@filterCellBackground : #eee; +@filterElementTextColor: #333; +@filterElementBkgd : #fff; +@filterElementBorder : 1px solid #bbb; +@filterTransitionTime : 0.1s; +@filterRowHiddenHeight : 4px; /* becomes height using padding (so it's divided by 2) */ + +@overallPadding : 4px; +/* 20px should be slightly wider than the icon width to avoid overlap */ +@headerPadding : 4px 20px 4px 4px; + +/* url(icons/loading.gif); */ +@processingIcon : url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///1VVVdbW1oCAgFVVVZaWlqurq7a2tiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA=='); + +/* zebra striping */ +.allRows { + background-color: @bodyBackground; + color: @bodyTextColor; +} +.evenRows { + background-color: lighten( desaturate(@headerBackground, 80%), 70%); + color: @bodyTextColor; +} +.oddRows { + background-color: lighten( desaturate(@headerBackground, 80%), 50%); +} + +/* hovered rows */ +.oddHovered { + background-color: lighten( desaturate(@headerBackground, 50%), 40%); + color: @bodyTextColor; +} +.evenHovered { + background-color: lighten( desaturate(@headerBackground, 50%), 30%); + color: @bodyTextColor; +} + +/* Columns widget */ +@primaryOdd : lighten( spin(@headerBackground, 10), 40%); +@primaryEven : lighten( @primaryOdd, 8% ); +@secondaryOdd : @primaryEven; +@secondaryEven : lighten( @primaryEven, 8% ); +@tertiaryOdd : @secondaryEven; +@tertiaryEven : lighten( @secondaryEven, 8% ); + +/* Filter widget transition */ +.filterWidgetTransition { + -webkit-transition: line-height @filterTransitionTime ease; + -moz-transition: line-height @filterTransitionTime ease; + -o-transition: line-height @filterTransitionTime ease; + transition: line-height @filterTransitionTime ease; +} + +/*** Arrows ***/ +@arrowPosition : right 5px center; + +/* black */ +@unsortedBlack : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABt0UjBAAAACnRSTlMAMwsqXt+gIBUGxGoDMAAAAFlJREFUCNctzC0SQAAUReEzGNQ3AlHRiSRZFCVZYgeswRL8hLdK7834wj3tAlGP6y7fYHpKS6w6WwbVG0I1NZVnZPG8/DYxOYlnhUYkA06R1s9ESsxR4NIdPhkPFDFYuEnMAAAAAElFTkSuQmCC); +@sortAscBlack : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABt0UjBAAAACnRSTlMAMwsqXt+gIBUGxGoDMAAAAFlJREFUCNctzC0SQAAUReEzGNQ3AlHRiSRZFCVZYgeswRL8hLdK7834wj3tAlGP6y7fYHpKS6w6WwbVG0I1NZVnZPG8/DYxOYlnhUYkA06R1s9ESsxR4NIdPhkPFDFYuEnMAAAAAElFTkSuQmCC); +@sortDescBlack : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAALVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADBoCg+AAAADnRSTlMAMiweCQITTvDctZZqaTlM310AAABcSURBVAjXY2BgYEtgAAFHERDJqigUAKSYBQUNgFSioKAYAwOLIBA4MASBKFUGQxAlzAAF+94BwWuGKBC1lIFl3rt3Lx0YGCzevWsGSjK9e6cAUlT3HKyW9wADAwDRrBiDy6bKzwAAAABJRU5ErkJggg==); + +/* white */ +@unsortedWhite : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAElBMVEUAAADu7u7u7u7u7u7u7u7u7u7yb344AAAABnRSTlMAMhIHKyAHBrhHAAAATElEQVQI12NgYGBSYAABQ2Ew5SgCIlkFBQOAlKKgoBADA7MgEBgwsIAoB4ZAECXKAAFQHkg9WIejoCBIv4mgoDOQYgZpAxkDNARqEQBTkAYuMZEHPgAAAABJRU5ErkJggg==); +@sortAscWhite : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAHlBMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u4+jEeEAAAACXRSTlMAMwkqFV7roCD4hW+/AAAAWUlEQVQI1y3MrQ5AABSG4Xd+Rj0jiDabjKZxB6qqaarGNRh27tY5myd8b/uAeML1l2+wPqUlUd0ss+oNoZqG2rOwe15+p5iC1HNAK5IBlUjnZyIlZsxx0QAfzokSZgp96u4AAAAASUVORK5CYII=); +@sortDescWhite : url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAJ1BMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u4RJgHSAAAADHRSTlMAMiweCQITaU7olrlu2HdvAAAAXElEQVQI12NgYGBLYAABRxEQyaooFACkmAUFDYBUoqCgGAMDiyAQODAEgShVBkMQJcwABWvOAMEphmgQtZWBZc6ZMycdGBhszpw5DJRkOnNGAaSo5wRYLXsBAwMAi4YWQHRX4F0AAAAASUVORK5CYII=); + +/* automatically choose the correct arrow/text color */ +.headerText (@a) when (lightness(@a) >= 50%) { + color: @headerTextColor; +} +.headerText (@a) when (lightness(@a) < 50%) { + color: lighten(@headerTextColor, 90%); +} +.unsorted (@a) when (lightness(@a) >= 50%) { + background-image: @unsortedBlack; +} +.unsorted (@a) when (lightness(@a) < 50%) { + background-image: @unsortedWhite; +} +.sortAsc (@a) when (lightness(@a) >= 50%) { + background-image: @sortAscBlack; +} +.sortAsc (@a) when (lightness(@a) < 50%) { + background-image: @sortAscWhite; +} +.sortDesc (@a) when (lightness(@a) >= 50%) { + background-image: @sortDescBlack; +} +.sortDesc (@a) when (lightness(@a) < 50%) { + background-image: @sortDescWhite; +} + +/* variable theme name - requires less.js 1.3+; + or just replace (!".@{theme}") with the contents of @theme +*/ +.@{theme} { + font: @tableBodyFont; + background-color: @borderAndBackground; + margin: 10px 0 15px; + width: 100%; + text-align: left; + border-spacing: 0; + border: 0; + + th, td { + border: 0; + } + + /* style th's outside of the thead */ + th, thead td { + font: @tableHeaderFont; + font-weight: bold; + background-color: @headerBackground; + color: @headerTextColor; + .headerText(@headerBackground); + border-collapse: collapse; + padding: @overallPadding; + } + + .dark-row th, .dark-row td, caption.dark-row { + background-color: darken( @headerBackground, 10% ); + } + + tbody td, tfoot th, tfoot td { + padding: @overallPadding; + vertical-align: top; + } + + /* style header */ + .tablesorter-header { + .unsorted(@headerBackground); + background-repeat: no-repeat; + background-position: @arrowPosition; + cursor: pointer; + white-space: normal; + } + + .tablesorter-header-inner { + padding: @headerPadding; + } + + .tablesorter-header.sorter-false { + background-image: none; + cursor: default; + padding: @overallPadding; + } + + .tablesorter-headerAsc { + .sortAsc(@headerBackground); + } + + .tablesorter-headerDesc { + .sortDesc(@headerBackground); + } + + /* tfoot */ + tfoot .tablesorter-headerAsc, + tfoot .tablesorter-headerDesc { + /* remove sort arrows from footer */ + background-image: none; + } + + /* optional disabled input styling */ + .disabled { + opacity: 0.5; + filter: alpha(opacity=50); + cursor: not-allowed; + } + + /* body */ + tbody { + + td { + .allRows; + padding: @overallPadding; + vertical-align: top; + } + + /* Zebra Widget - row alternating colors */ + tr.odd > td { + .oddRows; + } + tr.even > td { + .evenRows; + } + + } + + /* hovered row colors + you'll need to add additional lines for + rows with more than 2 child rows + */ + tbody > tr.hover > td, + tbody > tr:hover > td, + tbody > tr:hover + tr.tablesorter-childRow > td, + tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, + tbody > tr.even.hover > td, + tbody > tr.even:hover > td, + tbody > tr.even:hover + tr.tablesorter-childRow > td, + tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { + .evenHovered; + } + tbody > tr.odd.hover > td, + tbody > tr.odd:hover > td, + tbody > tr.odd:hover + tr.tablesorter-childRow > td, + tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { + .oddHovered; + } + + /* table processing indicator - indeterminate spinner */ + .tablesorter-processing { + background-image: @processingIcon; + background-position: center center; + background-repeat: no-repeat; + } + + /* pager */ + div.tablesorter-pager { + button { + background-color: lighten( @headerBackground, 7% ); + color: @headerTextColor; + border: lighten( @headerBackground, 15% ) 1px solid; + cursor: pointer; + } + button:hover { + background-color: lighten( @headerBackground, 15% ); + } + } + + /* Column Widget - column sort colors */ + tr.odd td.primary { + background-color: @primaryOdd; + } + td.primary, tr.even td.primary { + background-color: @primaryEven; + } + tr.odd td.secondary { + background-color: @secondaryOdd; + } + td.secondary, tr.even td.secondary { + background-color: @secondaryEven; + } + tr.odd td.tertiary { + background-color: @tertiaryOdd; + } + td.tertiary, tr.even td.tertiary { + background-color: @tertiaryEven; + } + + /* caption (non-theme matching) */ + caption { + background-color: @captionBackground ; + } + + /* filter widget */ + .tablesorter-filter-row input, + .tablesorter-filter-row select{ + width: 98%; + height: auto; + margin: 0; + padding: @overallPadding; + color: @filterElementTextColor; + background-color: @filterElementBkgd; + border: @filterElementBorder; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + .filterWidgetTransition; + } + .tablesorter-filter-row { + background-color: @filterCellBackground; + } + .tablesorter-filter-row td { + text-align: center; + background-color: @filterCellBackground; + line-height: normal; + text-align: center; /* center the input */ + .filterWidgetTransition; + } + /* hidden filter row */ + .tablesorter-filter-row.hideme td { + padding: @filterRowHiddenHeight / 2; + margin: 0; + line-height: 0; + cursor: pointer; + } + .tablesorter-filter-row.hideme * { + height: 1px; + min-height: 0; + border: 0; + padding: 0; + margin: 0; + /* don't use visibility: hidden because it disables tabbing */ + opacity: 0; + filter: alpha(opacity=0); + } + /* rows hidden by filtering (needed for child rows) */ + .filtered { + display: none; + } + + /* ajax error row */ + .tablesorter-errorRow td { + text-align: center; + cursor: pointer; + background-color: @errorBackground; + } + +} diff --git a/modules/pdproductattributeslist/views/css/less/theme.less b/modules/pdproductattributeslist/views/css/less/theme.less new file mode 100644 index 00000000..e645227a --- /dev/null +++ b/modules/pdproductattributeslist/views/css/less/theme.less @@ -0,0 +1,330 @@ +/* Tablesorter Custom LESS Theme by Rob Garrison + + To create your own theme, modify the code below and run it through + a LESS compiler, like this one: http://leafo.net/lessphp/editor.html + or download less.js from http://lesscss.org/ + +Test out these custom less files live + Basic Theme : http://codepen.io/Mottie/pen/eqBbn + Bootstrap : http://codepen.io/Mottie/pen/Ltzpi + Metro Style : http://codepen.io/Mottie/pen/gCslk + Basic SCSS : http://codepen.io/Mottie/pen/LbXdNR + + */ + +/*** theme ***/ +@theme : tablesorter-custom; + +/*** fonts ***/ +@tableHeaderFont : 11px 'trebuchet ms', verdana, arial; +@tableBodyFont : 11px 'trebuchet ms', verdana, arial; + +/*** color definitions ***/ +/* for best results, only change the hue (120), + leave the saturation (60%) and luminosity (75%) alone + pick the color from here: http://hslpicker.com/#99E699 */ +@headerBackground : hsl(120, 60%, 75%); +@borderAndBackground : #cdcdcd; +@overallBorder : @borderAndBackground 1px solid; +@headerTextColor : #000; + +@bodyBackground : #fff; +@bodyTextColor : #000; + +@headerAsc : darken(spin(@headerBackground, 5), 10%); /* darken(@headerBackground, 10%); */ +@headerDesc : lighten(spin(@headerBackground, -5), 10%); /* desaturate(@headerAsc, 5%); */ + +@captionBackground : #fff; /* it might be best to match the document body background color here */ +@errorBackground : #e6bf99; /* ajax error message (added to thead) */ + +@filterCellBackground : #eee; +@filterElementTextColor: #333; +@filterElementBkgd : #fff; +@filterElementBorder : 1px solid #bbb; +@filterTransitionTime : 0.1s; +@filterRowHiddenHeight : 4px; /* becomes height using padding (so it's divided by 2) */ + +@overallPadding : 4px; +/* 20px should be slightly wider than the icon width to avoid overlap */ +@headerPadding : 4px 20px 4px 4px; + +/* url(icons/loading.gif); */ +@processingIcon : url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs='); + +/* zebra striping */ +.allRows { + background-color: @bodyBackground; + color: @bodyTextColor; +} +.evenRows { + background-color: lighten(@headerBackground, 40%); + color: @bodyTextColor; +} +.oddRows { + background-color: lighten(@headerBackground, 20%); +} + +/* hovered rows */ +.oddHovered { + background-color: desaturate(@headerBackground, 60%); + color: @bodyTextColor; +} +.evenHovered { + background-color: lighten( desaturate(@headerBackground, 60%), 10% ); + color: @bodyTextColor; +} + +/* Columns widget */ +@primaryOdd : spin(@headerBackground, 10); /* saturate( darken( desaturate(@headerBackground, 10%), 10% ), 30%); */ +@primaryEven : lighten( @primaryOdd, 10% ); +@secondaryOdd : @primaryEven; +@secondaryEven : lighten( @primaryEven, 5% ); +@tertiaryOdd : @secondaryEven; +@tertiaryEven : lighten( @secondaryEven, 5% ); + +/* Filter widget transition */ +.filterWidgetTransition { + -webkit-transition: line-height @filterTransitionTime ease; + -moz-transition: line-height @filterTransitionTime ease; + -o-transition: line-height @filterTransitionTime ease; + transition: line-height @filterTransitionTime ease; +} + +/*** Arrows ***/ +@arrowPosition : right 5px center; + +/* black */ +@unsortedBlack : url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); +@sortAscBlack : url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); +@sortDescBlack : url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); + +/* white */ +@unsortedWhite : url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); +@sortAscWhite : url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); +@sortDescWhite : url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); + +/* automatically choose the correct arrow/text color */ +.headerText (@a) when (lightness(@a) >= 50%) { + color: @headerTextColor; +} +.headerText (@a) when (lightness(@a) < 50%) { + color: lighten(@headerTextColor, 90%); +} +.unsorted (@a) when (lightness(@a) >= 50%) { + background-image: @unsortedBlack; +} +.unsorted (@a) when (lightness(@a) < 50%) { + background-image: @unsortedWhite; +} +.sortAsc (@a) when (lightness(@a) >= 50%) { + background-image: @sortAscBlack; +} +.sortAsc (@a) when (lightness(@a) < 50%) { + background-image: @sortAscWhite; +} +.sortDesc (@a) when (lightness(@a) >= 50%) { + background-image: @sortDescBlack; +} +.sortDesc (@a) when (lightness(@a) < 50%) { + background-image: @sortDescWhite; +} + +/* variable theme name - requires less.js 1.3+; + or just replace (!".@{theme}") with the contents of @theme + */ +.@{theme} { + font: @tableBodyFont; + background-color: @borderAndBackground; + margin: 10px 0 15px; + width: 100%; + text-align: left; + border-spacing: 0; + border: @overallBorder; + border-width: 1px 0 0 1px; + + th, td { + border: @overallBorder; + border-width: 0 1px 1px 0; + } + + /* style th's outside of the thead */ + th, thead td { + font: @tableHeaderFont; + font-weight: bold; + background-color: @headerBackground; + .headerText(@headerBackground); + border-collapse: collapse; + padding: @overallPadding; + } + + tbody td, tfoot th, tfoot td { + padding: @overallPadding; + vertical-align: top; + } + + /* style header */ + .tablesorter-header { + .unsorted(@headerBackground); + background-repeat: no-repeat; + background-position: @arrowPosition; + padding: @headerPadding; + cursor: pointer; + } + + .tablesorter-header.sorter-false { + background-image: none; + cursor: default; + padding: @overallPadding; + } + + .tablesorter-headerAsc { + background-color: @headerAsc; + .sortAsc(@headerBackground); + } + + .tablesorter-headerDesc { + background-color: @headerDesc; + .sortDesc(@headerBackground); + } + + /* tfoot */ + tfoot .tablesorter-headerAsc, + tfoot .tablesorter-headerDesc { + /* remove sort arrows from footer */ + background-image: none; + } + + /* optional disabled input styling */ + .disabled { + opacity: 0.5; + filter: alpha(opacity=50); + cursor: not-allowed; + } + + /* body */ + tbody { + + td { + .allRows; + padding: @overallPadding; + vertical-align: top; + } + + /* Zebra Widget - row alternating colors */ + tr.odd > td { + .oddRows; + } + tr.even > td { + .evenRows; + } + + } + + /* hovered row colors + you'll need to add additional lines for + rows with more than 2 child rows + */ + tbody > tr.hover td, + tbody > tr:hover td, + tbody > tr:hover + tr.tablesorter-childRow > td, + tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, + tbody > tr.even.hover > td, + tbody > tr.even:hover > td, + tbody > tr.even:hover + tr.tablesorter-childRow > td, + tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { + .evenHovered; + } + tbody > tr.odd.hover > td, + tbody > tr.odd:hover > td, + tbody > tr.odd:hover + tr.tablesorter-childRow > td, + tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { + .oddHovered; + } + + /* table processing indicator - indeterminate spinner */ + .tablesorter-processing { + background-image: @processingIcon; + background-position: center center; + background-repeat: no-repeat; + } + + /* Column Widget - column sort colors */ + tr.odd td.primary { + background-color: @primaryOdd; + } + td.primary, tr.even td.primary { + background-color: @primaryEven; + } + tr.odd td.secondary { + background-color: @secondaryOdd; + } + td.secondary, tr.even td.secondary { + background-color: @secondaryEven; + } + tr.odd td.tertiary { + background-color: @tertiaryOdd; + } + td.tertiary, tr.even td.tertiary { + background-color: @tertiaryEven; + } + + /* caption (non-theme matching) */ + caption { + background-color: @captionBackground ; + } + + /* filter widget */ + .tablesorter-filter-row input, + .tablesorter-filter-row select { + width: 98%; + height: auto; + margin: 0; + padding: @overallPadding; + color: @filterElementTextColor; + background-color: @filterElementBkgd; + border: @filterElementBorder; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + .filterWidgetTransition; + } + .tablesorter-filter-row { + background-color: @filterCellBackground; + } + .tablesorter-filter-row td { + text-align: center; + background-color: @filterCellBackground; + line-height: normal; + text-align: center; /* center the input */ + .filterWidgetTransition; + } + /* hidden filter row */ + .tablesorter-filter-row.hideme td { + padding: @filterRowHiddenHeight / 2; + margin: 0; + line-height: 0; + cursor: pointer; + } + .tablesorter-filter-row.hideme * { + height: 1px; + min-height: 0; + border: 0; + padding: 0; + margin: 0; + /* don't use visibility: hidden because it disables tabbing */ + opacity: 0; + filter: alpha(opacity=0); + } + /* rows hidden by filtering (needed for child rows) */ + .filtered { + display: none; + } + + /* ajax error row */ + .tablesorter-errorRow td { + text-align: center; + cursor: pointer; + background-color: @errorBackground; + } + +} diff --git a/modules/pdproductattributeslist/views/css/pdproductattributeslist.css b/modules/pdproductattributeslist/views/css/pdproductattributeslist.css new file mode 100644 index 00000000..ea20d353 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/pdproductattributeslist.css @@ -0,0 +1,253 @@ + +#pdproductattributeslist { + width:100%; + margin-top: 15px; + margin-right: 9px; + margin-left: 9px; +} + +#pdproductattributeslist table {} + +#pdproductattributeslist input.quantity { + +} +#pdproductattributeslist .old_price { + font-size: 12px; + text-decoration: line-through; + display: inline-block; +} + +#pdproductattributeslist .price { + font-weight: bold; +} + +#pdproductattributeslist .bootstrap-touchspin .input-group-btn-vertical i { + left: 4px; +} +#pdproductattributeslist table td.option_infos .product-title { + text-transform: capitalize; + margin: .5rem 0; + text-align: unset; +} + +/** RESPOINSIVE TABLE **/ + +#pdproductattributeslist td, #pdproductattributeslist th { + vertical-align: middle; + text-align: center; + padding-top: .75rem; + padding-bottom: .75rem; +} + +#pdproductattributeslist th { + font-size: 13px; +} + +#pdproductattributeslist td img {max-width: 100%;} + +#pdproductattributeslist .option_image a.hidden {display:none;} + + +#pdproductattributeslist th.product_image {width:10%;} +#pdproductattributeslist th.product_infos {} +#pdproductattributeslist th.product_price {width:12%;} +#pdproductattributeslist th.product_variant {width:10%;} +#pdproductattributeslist th.product_qty {width:10%;} +#pdproductattributeslist th.product_btn {width:12%;} + + +#pdproductattributeslist .footer_actions { background:#ddd; } + +#pdproductattributeslist b, #pdproductattributeslist strong { + margin-bottom: 0.3rem; + display: inline-block; +} + + +#category .product-quantity > .col { + margin-bottom: .0rem; +} + + + +#pdproductattributeslist .option_gty .product-quantity {max-width:200px; } + +#pdproductattributeslist .product-quantity .qty {width:100%} + +#pdproductattributeslist .add-to-cart-pdproductattributeslist { + width: 100%; +} + +#pdproductattributeslist .product-quantity .quantity { + width: 3rem; + height: 2.75rem; + padding: .175rem .5rem; + color: #232323; + background-color: #fff; +} + +#pdproductattributeslist .product-quantity .bootstrap-touchspin { + float: unset; + text-align: center; + margin: 0 auto; +} + +/* +Max width before this PARTICULAR table gets nasty +This query will take effect for any screen smaller than 760px +and also iPads specifically. +*/ +@media +only screen and (max-width: 760px), +(min-device-width: 768px) and (max-device-width: 1024px) { + + #pdproductattributeslist table { + width: 100%; + } + + /* Force table to not be like tables anymore */ + #pdproductattributeslist table, + #pdproductattributeslist thead, + #pdproductattributeslist tbody, + #pdproductattributeslist th, + #pdproductattributeslist td, + #pdproductattributeslist tr { + display: block; + } + + /* Hide table headers (but not display: none;, for accessibility) */ + #pdproductattributeslist thead tr { + position: absolute; + top: -9999px; + left: -9999px; + } + + #pdproductattributeslist tr { border: 1px solid #ccc; } + + #pdproductattributeslist td { + /* Behave like a "row" */ + border: none; + border-bottom: 1px solid #eee; + position: relative; + padding-left: 50%; + } + + #pdproductattributeslist td:before { + /* Now like a table header */ + position: absolute; + /* Top/left values mimic padding */ + top: 6px; + left: 6px; + width: 45%; + padding-right: 10px; + white-space: nowrap; + /* Label the data */ + content: attr(data-column); + + color: #000; + font-weight: bold; + text-align: center; + } +} + +#pdproductattributeslist .grid .product-description { + height: 120px; +} + +#pdproductattributeslist .grid .thumbnail-container { + height: 388px; +} + +#pdproductattributeslist .grid .thumbnail-container form { + text-align: center; + margin: 10px 0 10px 0; +} + +#pdproductattributeslist .grid .thumbnail-container:hover .highlighted-informations { + bottom: 8.625rem; +} + +#pdproductattributeslist .grid .thumbnail-container:hover .highlighted-informations.no-variants { + bottom: 6.375rem; +} + +#pdproductattributeslist .grid .add-to-cart-or-refresh {text-align: center;} + +#pdproductattributeslist .grid input.qtyfield { + padding: 0 6px; + margin: 0 5px 0 5px; + vertical-align: bottom; + display: inline; + float: unset; +} + +#pdproductattributeslist .grid .product-quantity input.qtyfield { + width: 100%; + text-align: center; + height: 48px; + border: 0; + border-radius: 5px; +} + +#pdproductattributeslist .grid .product-quantity .qty { + margin-right: 10px; +} + + +@media (max-width: 768px) { + #pdproductattributeslist .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + overflow-x: scroll; + border: 1px solid #d6d4d4; } + #pdproductattributeslist .table-responsive > .table { + margin-bottom: 0; + background-color: #fff; } + #pdproductattributeslist .table-responsive > .table > thead > tr > th, + #pdproductattributeslist .table-responsive > .table > thead > tr > td, + #pdproductattributeslist .table-responsive > .table > tbody > tr > th, + #pdproductattributeslist .table-responsive > .table > tbody > tr > td, + #pdproductattributeslist .table-responsive > .table > tfoot > tr > th, + #pdproductattributeslist .table-responsive > .table > tfoot > tr > td { + white-space: nowrap; } + #pdproductattributeslist .table-responsive > .table-bordered { + border: 0; } + #pdproductattributeslist .table-responsive > .table-bordered > thead > tr > th:first-child, + #pdproductattributeslist .table-responsive > .table-bordered > thead > tr > td:first-child, + #pdproductattributeslist .table-responsive > .table-bordered > tbody > tr > th:first-child, + #pdproductattributeslist .table-responsive > .table-bordered > tbody > tr > td:first-child, + #pdproductattributeslist .table-responsive > .table-bordered > tfoot > tr > th:first-child, + #pdproductattributeslist .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; } + #pdproductattributeslist .table-responsive > .table-bordered > thead > tr > th:last-child, + #pdproductattributeslist .table-responsive > .table-bordered > thead > tr > td:last-child, + #pdproductattributeslist .table-responsive > .table-bordered > tbody > tr > th:last-child, + #pdproductattributeslist .table-responsive > .table-bordered > tbody > tr > td:last-child, + #pdproductattributeslist .table-responsive > .table-bordered > tfoot > tr > th:last-child, + #pdproductattributeslist .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; } + #pdproductattributeslist .table-responsive > .table-bordered > thead > tr:last-child > th, + #pdproductattributeslist .table-responsive > .table-bordered > thead > tr:last-child > td, + #pdproductattributeslist .table-responsive > .table-bordered > tbody > tr:last-child > th, + #pdproductattributeslist .table-responsive > .table-bordered > tbody > tr:last-child > td, + #pdproductattributeslist .table-responsive > .table-bordered > tfoot > tr:last-child > th, + #pdproductattributeslist .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; } + + #pdproductattributeslist tr.footer_actions td {height:50px;} +} + + + +#pdproductattributeslist_grid .product-quantity, +#pdproductattributeslist_grid button.add-to-cart {width:100%;margin-top:10px;} + +#pdproductattributeslist_grid .product-quantity .bootstrap-touchspin input.form-control, +#pdproductattributeslist_grid .product-quantity .bootstrap-touchspin input.input-group { + width: auto; + height: 2.75rem; +} + +#pdproductattributeslist_grid .product-quantity .bootstrap-touchspin {margin:0 auto;} + diff --git a/modules/pdproductattributeslist/views/css/scss/theme.scss b/modules/pdproductattributeslist/views/css/scss/theme.scss new file mode 100644 index 00000000..f8a940c7 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/scss/theme.scss @@ -0,0 +1,327 @@ +/* Tablesorter Custom SCSS Theme by Dan Feidt (https://github.com/HongPong) + Converted from Custom LESS Theme by Rob Garrison + + To create your own theme, modify the code below and run it through + a SCSS compiler, like this one: http://beautifytools.com/scss-compiler.php + or download sass.js from https://github.com/medialize/sass.js + +Test out these customization files live + Basic LESS Theme : http://codepen.io/Mottie/pen/eqBbn + Bootstrap LESS : http://codepen.io/Mottie/pen/Ltzpi + Metro LESS Style : http://codepen.io/Mottie/pen/gCslk + Basic SCSS : http://codepen.io/Mottie/pen/LbXdNR + + */ + +/*** theme ***/ +$theme : tablesorter-custom; + +/*** fonts ***/ +$tableHeaderFont : 11px 'trebuchet ms', verdana, arial; +$tableBodyFont : 11px 'trebuchet ms', verdana, arial; + +/*** color definitions ***/ +/* for best results, only change the hue (120), + leave the saturation (60%) and luminosity (75%) alone + pick the color from here: http://hslpicker.com/#99E699 */ +$headerBackground : hsl(0, 60%, 75%); +$borderAndBackground : #cdcdcd; +$overallBorder : $borderAndBackground 1px solid; +$headerTextColor : #000; + +$bodyBackground : #fff; +$bodyTextColor : #000; + +$headerAsc : darken(adjust-hue($headerBackground, 5), 10%); /* darken($headerBackground, 10%); */ +$headerDesc : lighten(adjust-hue($headerBackground, -5), 10%); /* desaturate($headerAsc, 5%); */ + +$captionBackground : #fff; /* it might be best to match the document body background color here */ +$errorBackground : #e6bf99; /* ajax error message (added to thead) */ + +$filterCellBackground : #eee; +$filterElementTextColor: #333; +$filterElementBkgd : #fff; +$filterElementBorder : 1px solid #bbb; +$filterTransitionTime : 0.1s; +$filterRowHiddenHeight : 4px; /* becomes height using padding (so it's divided by 2) */ + +$overallPadding : 4px; +/* 20px should be slightly wider than the icon width to avoid overlap */ +$headerPadding : 4px 20px 4px 4px; + +/* url(icons/loading.gif); */ +$processingIcon : url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs='); + +/* zebra striping */ +@mixin allRows { + background-color: $bodyBackground; + color: $bodyTextColor; +} +@mixin evenRows { + background-color: lighten($headerBackground, 40%); + color: $bodyTextColor; +} +@mixin oddRows { + background-color: lighten($headerBackground, 20%); +} + +/* hovered rows */ +@mixin oddHovered { + background-color: desaturate($headerBackground, 60%); + color: $bodyTextColor; +} +@mixin evenHovered { + background-color: lighten( desaturate($headerBackground, 60%), 10% ); + color: $bodyTextColor; +} + +/* Columns widget */ +$primaryOdd : adjust-hue($headerBackground, 10); /* saturate( darken( desaturate($headerBackground, 10%), 10% ), 30%); */ +$primaryEven : lighten( $primaryOdd, 10% ); +$secondaryOdd : $primaryEven; +$secondaryEven : lighten( $primaryEven, 5% ); +$tertiaryOdd : $secondaryEven; +$tertiaryEven : lighten( $secondaryEven, 5% ); + +/* Filter widget transition */ +@mixin filterWidgetTransition { + -webkit-transition: line-height $filterTransitionTime ease; + -moz-transition: line-height $filterTransitionTime ease; + -o-transition: line-height $filterTransitionTime ease; + transition: line-height $filterTransitionTime ease; +} + +/*** Arrows ***/ +$arrowPosition : right 5px center; + +/* black */ +$unsortedBlack : url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); +$sortAscBlack : url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); +$sortDescBlack : url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); + +/* white */ +$unsortedWhite : url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); +$sortAscWhite : url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); +$sortDescWhite : url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); + +/* automatically choose the correct arrow/text color */ +@function set-lightness($a, $b) { + @if (lightness($headerBackground) >= 50) { + @return $a; + } @else { + @return $b; + } +} +@mixin headerText { + color: set-lightness($headerTextColor, lighten($headerTextColor, 90%)); +} + +@mixin unsorted { + background-image: set-lightness($unsortedBlack, $unsortedWhite); +} +@mixin sortAsc { + background-image: set-lightness($sortAscBlack, $sortAscWhite); +} +@mixin sortDesc { + background-image: set-lightness($sortDescBlack, $sortDescWhite); +} + +/* variable theme name - requires less.js 1.3+; + or just replace (!".#{$theme}") with the contents of $theme + */ +.#{$theme} { + font: $tableBodyFont; + background-color: $borderAndBackground; + margin: 10px 0 15px; + width: 100%; + text-align: left; + border-spacing: 0; + border: $overallBorder; + border-width: 1px 0 0 1px; + + th, td { + border: $overallBorder; + border-width: 0 1px 1px 0; + } + + /* style th's outside of the thead */ + th, thead td { + font: $tableHeaderFont; + font-weight: bold; + background-color: $headerBackground; + @include headerText; + border-collapse: collapse; + padding: $overallPadding; + } + + tbody td, tfoot th, tfoot td { + padding: $overallPadding; + vertical-align: top; + } + + /* style header */ + .tablesorter-header { + @include unsorted; + background-repeat: no-repeat; + background-position: $arrowPosition; + padding: $headerPadding; + cursor: pointer; + } + + .tablesorter-header.sorter-false { + background-image: none; + cursor: default; + padding: $overallPadding; + } + + .tablesorter-headerAsc { + background-color: $headerAsc; + @include sortAsc; + } + + .tablesorter-headerDesc { + background-color: $headerDesc; + @include sortDesc; + } + + /* tfoot */ + tfoot .tablesorter-headerAsc, + tfoot .tablesorter-headerDesc { + /* remove sort arrows from footer */ + background-image: none; + } + + /* optional disabled input styling */ + .disabled { + opacity: 0.5; + filter: alpha(opacity=50); + cursor: not-allowed; + } + + /* body */ + tbody { + + td { + @include allRows; + padding: $overallPadding; + vertical-align: top; + } + + /* Zebra Widget - row alternating colors */ + tr.odd > td { + @include oddRows; + } + tr.even > td { + @include evenRows; + } + + } + + /* hovered row colors + you'll need to add additional lines for + rows with more than 2 child rows + */ + tbody > tr.hover td, + tbody > tr:hover td, + tbody > tr:hover + tr.tablesorter-childRow > td, + tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, + tbody > tr.even.hover > td, + tbody > tr.even:hover > td, + tbody > tr.even:hover + tr.tablesorter-childRow > td, + tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { + @include evenHovered; + } + tbody > tr.odd.hover > td, + tbody > tr.odd:hover > td, + tbody > tr.odd:hover + tr.tablesorter-childRow > td, + tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { + @include oddHovered; + } + + /* table processing indicator - indeterminate spinner */ + .tablesorter-processing { + background-image: $processingIcon; + background-position: center center; + background-repeat: no-repeat; + } + + /* Column Widget - column sort colors */ + tr.odd td.primary { + background-color: $primaryOdd; + } + td.primary, tr.even td.primary { + background-color: $primaryEven; + } + tr.odd td.secondary { + background-color: $secondaryOdd; + } + td.secondary, tr.even td.secondary { + background-color: $secondaryEven; + } + tr.odd td.tertiary { + background-color: $tertiaryOdd; + } + td.tertiary, tr.even td.tertiary { + background-color: $tertiaryEven; + } + + /* caption (non-theme matching) */ + caption { + background-color: $captionBackground ; + } + + /* filter widget */ + .tablesorter-filter-row input, + .tablesorter-filter-row select { + width: 98%; + height: auto; + margin: 0; + padding: $overallPadding; + color: $filterElementTextColor; + background-color: $filterElementBkgd; + border: $filterElementBorder; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + @include filterWidgetTransition; + } + .tablesorter-filter-row { + background-color: $filterCellBackground; + } + .tablesorter-filter-row td { + text-align: center; + background-color: $filterCellBackground; + line-height: normal; + text-align: center; /* center the input */ + @include filterWidgetTransition; + } + /* hidden filter row */ + .tablesorter-filter-row.hideme td { + padding: $filterRowHiddenHeight / 2; + margin: 0; + line-height: 0; + cursor: pointer; + } + .tablesorter-filter-row.hideme * { + height: 1px; + min-height: 0; + border: 0; + padding: 0; + margin: 0; + /* don't use visibility: hidden because it disables tabbing */ + opacity: 0; + filter: alpha(opacity=0); + } + /* rows hidden by filtering (needed for child rows) */ + .filtered { + display: none; + } + + /* ajax error row */ + .tablesorter-errorRow td { + text-align: center; + cursor: pointer; + background-color: $errorBackground; + } + +} diff --git a/modules/pdproductattributeslist/views/css/theme.blackice.min.css b/modules/pdproductattributeslist/views/css/theme.blackice.min.css new file mode 100644 index 00000000..b2d7b6b3 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.blackice.min.css @@ -0,0 +1 @@ +.tablesorter-blackice{width:100%;margin-right:auto;margin-left:auto;font:11px/18px Arial,Sans-serif;text-align:left;background-color:#000;border-collapse:collapse;border-spacing:0}.tablesorter-blackice th,.tablesorter-blackice thead td{padding:4px;font:13px/20px Arial,Sans-serif;font-weight:700;color:#e5e5e5;text-align:left;text-shadow:0 1px 0 rgba(0,0,0,.7);background-color:#111;border:1px solid #232323}.tablesorter-blackice .header,.tablesorter-blackice .tablesorter-header{padding:4px 20px 4px 4px;cursor:pointer;background-image:url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);background-position:center right;background-repeat:no-repeat}.tablesorter-blackice .headerSortUp,.tablesorter-blackice .tablesorter-headerAsc,.tablesorter-blackice .tablesorter-headerSortUp{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);color:#fff}.tablesorter-blackice .headerSortDown,.tablesorter-blackice .tablesorter-headerDesc,.tablesorter-blackice .tablesorter-headerSortDown{color:#fff;background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7)}.tablesorter-blackice thead .sorter-false{background-image:none;cursor:default;padding:4px}.tablesorter-blackice tfoot .tablesorter-headerAsc,.tablesorter-blackice tfoot .tablesorter-headerDesc,.tablesorter-blackice tfoot .tablesorter-headerSortDown,.tablesorter-blackice tfoot .tablesorter-headerSortUp{background-image:none}.tablesorter-blackice td{padding:4px;color:#ccc;vertical-align:top;background-color:#333;border:1px solid #232323}.tablesorter-blackice tbody>tr.even:hover>td,.tablesorter-blackice tbody>tr.hover>td,.tablesorter-blackice tbody>tr.odd:hover>td,.tablesorter-blackice tbody>tr:hover>td{background-color:#000}.tablesorter-blackice .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-blackice tr.odd>td{background-color:#333}.tablesorter-blackice tr.even>td{background-color:#393939}.tablesorter-blackice td.primary,.tablesorter-blackice tr.odd td.primary{background-color:#2f3a40}.tablesorter-blackice tr.even td.primary{background-color:#3f4a50}.tablesorter-blackice td.secondary,.tablesorter-blackice tr.odd td.secondary{background-color:#3f4a50}.tablesorter-blackice tr.even td.secondary{background-color:#4f5a60}.tablesorter-blackice td.tertiary,.tablesorter-blackice tr.odd td.tertiary{background-color:#4f5a60}.tablesorter-blackice tr.even td.tertiary{background-color:#5a646b}.tablesorter-blackice>caption{background-color:#fff}.tablesorter-blackice .tablesorter-filter-row{background-color:#222}.tablesorter-blackice .tablesorter-filter-row td{background-color:#222;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-blackice .tablesorter-filter-row .disabled{opacity:.5;cursor:not-allowed}.tablesorter-blackice .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-blackice .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter-blackice input.tablesorter-filter,.tablesorter-blackice select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.blue.css b/modules/pdproductattributeslist/views/css/theme.blue.css new file mode 100644 index 00000000..da90a81d --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.blue.css @@ -0,0 +1,229 @@ +/************* + Blue Theme + *************/ +/* overall */ +.tablesorter-blue { + width: 100%; + background-color: #fff; + margin: 10px 0 15px; + text-align: left; + border-spacing: 0; + border: #cdcdcd 1px solid; + border-width: 1px 0 0 1px; +} +.tablesorter-blue th, +.tablesorter-blue td { + border: #cdcdcd 1px solid; + border-width: 0 1px 1px 0; +} + +/* header */ +.tablesorter-blue th, +.tablesorter-blue thead td { + font: 12px/18px Arial, Sans-serif; + font-weight: bold; + color: #000; + background-color: #99bfe6; + border-collapse: collapse; + padding: 4px; + text-shadow: 0 1px 0 rgba(204, 204, 204, 0.7); +} +.tablesorter-blue tbody td, +.tablesorter-blue tfoot th, +.tablesorter-blue tfoot td { + padding: 4px; + vertical-align: top; +} +.tablesorter-blue .header, +.tablesorter-blue .tablesorter-header { + /* black (unsorted) double arrow */ + background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); + /* white (unsorted) double arrow */ + /* background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); */ + /* image */ + /* background-image: url(images/black-unsorted.gif); */ + background-repeat: no-repeat; + background-position: center right; + padding: 4px 18px 4px 4px; + white-space: normal; + cursor: pointer; +} +.tablesorter-blue .headerSortUp, +.tablesorter-blue .tablesorter-headerSortUp, +.tablesorter-blue .tablesorter-headerAsc { + background-color: #9fbfdf; + /* black asc arrow */ + background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); + /* white asc arrow */ + /* background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); */ + /* image */ + /* background-image: url(images/black-asc.gif); */ +} +.tablesorter-blue .headerSortDown, +.tablesorter-blue .tablesorter-headerSortDown, +.tablesorter-blue .tablesorter-headerDesc { + background-color: #8cb3d9; + /* black desc arrow */ + background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); + /* white desc arrow */ + /* background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); */ + /* image */ + /* background-image: url(images/black-desc.gif); */ +} +.tablesorter-blue thead .sorter-false { + background-image: none; + cursor: default; + padding: 4px; +} + +/* tfoot */ +.tablesorter-blue tfoot .tablesorter-headerSortUp, +.tablesorter-blue tfoot .tablesorter-headerSortDown, +.tablesorter-blue tfoot .tablesorter-headerAsc, +.tablesorter-blue tfoot .tablesorter-headerDesc { + /* remove sort arrows from footer */ + background-image: none; +} + +/* tbody */ +.tablesorter-blue td { + color: #3d3d3d; + background-color: #fff; + padding: 4px; + vertical-align: top; +} + +/* hovered row colors + you'll need to add additional lines for + rows with more than 2 child rows + */ +.tablesorter-blue tbody > tr.hover > td, +.tablesorter-blue tbody > tr:hover > td, +.tablesorter-blue tbody > tr:hover + tr.tablesorter-childRow > td, +.tablesorter-blue tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td, +.tablesorter-blue tbody > tr.even.hover > td, +.tablesorter-blue tbody > tr.even:hover > td, +.tablesorter-blue tbody > tr.even:hover + tr.tablesorter-childRow > td, +.tablesorter-blue tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { + background-color: #d9d9d9; +} +.tablesorter-blue tbody > tr.odd.hover > td, +.tablesorter-blue tbody > tr.odd:hover > td, +.tablesorter-blue tbody > tr.odd:hover + tr.tablesorter-childRow > td, +.tablesorter-blue tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td { + background-color: #bfbfbf; +} + +/* table processing indicator */ +.tablesorter-blue .tablesorter-processing { + background-position: center center !important; + background-repeat: no-repeat !important; + /* background-image: url(images/loading.gif) !important; */ + background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important; +} + +/* Zebra Widget - row alternating colors */ +.tablesorter-blue tbody tr.odd > td { + background-color: #ebf2fa; +} +.tablesorter-blue tbody tr.even > td { + background-color: #fff; +} + +/* Column Widget - column sort colors */ +.tablesorter-blue td.primary, +.tablesorter-blue tr.odd td.primary { + background-color: #99b3e6; +} +.tablesorter-blue tr.even td.primary { + background-color: #c2d1f0; +} +.tablesorter-blue td.secondary, +.tablesorter-blue tr.odd td.secondary { + background-color: #c2d1f0; +} +.tablesorter-blue tr.even td.secondary { + background-color: #d6e0f5; +} +.tablesorter-blue td.tertiary, +.tablesorter-blue tr.odd td.tertiary { + background-color: #d6e0f5; +} +.tablesorter-blue tr.even td.tertiary { + background-color: #ebf0fa; +} + +/* caption */ +.tablesorter-blue > caption { + background-color: #fff; +} + +/* filter widget */ +.tablesorter-blue .tablesorter-filter-row { + background-color: #eee; +} +.tablesorter-blue .tablesorter-filter-row td { + background-color: #eee; + line-height: normal; + text-align: center; /* center the input */ + -webkit-transition: line-height 0.1s ease; + -moz-transition: line-height 0.1s ease; + -o-transition: line-height 0.1s ease; + transition: line-height 0.1s ease; +} +/* optional disabled input styling */ +.tablesorter-blue .tablesorter-filter-row .disabled { + opacity: 0.5; + filter: alpha(opacity=50); + cursor: not-allowed; +} +/* hidden filter row */ +.tablesorter-blue .tablesorter-filter-row.hideme td { + /*** *********************************************** ***/ + /*** change this padding to modify the thickness ***/ + /*** of the closed filter row (height = padding x 2) ***/ + padding: 2px; + /*** *********************************************** ***/ + margin: 0; + line-height: 0; + cursor: pointer; +} +.tablesorter-blue .tablesorter-filter-row.hideme * { + height: 1px; + min-height: 0; + border: 0; + padding: 0; + margin: 0; + /* don't use visibility: hidden because it disables tabbing */ + opacity: 0; + filter: alpha(opacity=0); +} +/* filters */ +.tablesorter-blue input.tablesorter-filter, +.tablesorter-blue select.tablesorter-filter { + width: 98%; + height: auto; + margin: 0; + padding: 4px; + background-color: #fff; + border: 1px solid #bbb; + color: #333; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + -webkit-transition: height 0.1s ease; + -moz-transition: height 0.1s ease; + -o-transition: height 0.1s ease; + transition: height 0.1s ease; +} +/* rows hidden by filtering (needed for child rows) */ +.tablesorter .filtered { + display: none; +} + +/* ajax error row */ +.tablesorter .tablesorter-errorRow td { + text-align: center; + cursor: pointer; + background-color: #e6bf99; +} diff --git a/modules/pdproductattributeslist/views/css/theme.blue.min.css b/modules/pdproductattributeslist/views/css/theme.blue.min.css new file mode 100644 index 00000000..e4043d5e --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.blue.min.css @@ -0,0 +1 @@ +.tablesorter-blue{width:100%;background-color:#fff;margin:10px 0 15px;text-align:left;border-spacing:0;border:#cdcdcd 1px solid;border-width:1px 0 0 1px}.tablesorter-blue td,.tablesorter-blue th{border:#cdcdcd 1px solid;border-width:0 1px 1px 0}.tablesorter-blue th,.tablesorter-blue thead td{font:12px/18px Arial,Sans-serif;font-weight:700;color:#000;background-color:#99bfe6;border-collapse:collapse;padding:4px;text-shadow:0 1px 0 rgba(204,204,204,.7)}.tablesorter-blue tbody td,.tablesorter-blue tfoot td,.tablesorter-blue tfoot th{padding:4px;vertical-align:top}.tablesorter-blue .header,.tablesorter-blue .tablesorter-header{background-image:url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);background-repeat:no-repeat;background-position:center right;padding:4px 18px 4px 4px;white-space:normal;cursor:pointer}.tablesorter-blue .headerSortUp,.tablesorter-blue .tablesorter-headerAsc,.tablesorter-blue .tablesorter-headerSortUp{background-color:#9fbfdf;background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7)}.tablesorter-blue .headerSortDown,.tablesorter-blue .tablesorter-headerDesc,.tablesorter-blue .tablesorter-headerSortDown{background-color:#8cb3d9;background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7)}.tablesorter-blue thead .sorter-false{background-image:none;cursor:default;padding:4px}.tablesorter-blue tfoot .tablesorter-headerAsc,.tablesorter-blue tfoot .tablesorter-headerDesc,.tablesorter-blue tfoot .tablesorter-headerSortDown,.tablesorter-blue tfoot .tablesorter-headerSortUp{background-image:none}.tablesorter-blue td{color:#3d3d3d;background-color:#fff;padding:4px;vertical-align:top}.tablesorter-blue tbody>tr.even.hover>td,.tablesorter-blue tbody>tr.even:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-blue tbody>tr.even:hover+tr.tablesorter-childRow>td,.tablesorter-blue tbody>tr.even:hover>td,.tablesorter-blue tbody>tr.hover>td,.tablesorter-blue tbody>tr:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-blue tbody>tr:hover+tr.tablesorter-childRow>td,.tablesorter-blue tbody>tr:hover>td{background-color:#d9d9d9}.tablesorter-blue tbody>tr.odd.hover>td,.tablesorter-blue tbody>tr.odd:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-blue tbody>tr.odd:hover+tr.tablesorter-childRow>td,.tablesorter-blue tbody>tr.odd:hover>td{background-color:#bfbfbf}.tablesorter-blue .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-blue tbody tr.odd>td{background-color:#ebf2fa}.tablesorter-blue tbody tr.even>td{background-color:#fff}.tablesorter-blue td.primary,.tablesorter-blue tr.odd td.primary{background-color:#99b3e6}.tablesorter-blue tr.even td.primary{background-color:#c2d1f0}.tablesorter-blue td.secondary,.tablesorter-blue tr.odd td.secondary{background-color:#c2d1f0}.tablesorter-blue tr.even td.secondary{background-color:#d6e0f5}.tablesorter-blue td.tertiary,.tablesorter-blue tr.odd td.tertiary{background-color:#d6e0f5}.tablesorter-blue tr.even td.tertiary{background-color:#ebf0fa}.tablesorter-blue>caption{background-color:#fff}.tablesorter-blue .tablesorter-filter-row{background-color:#eee}.tablesorter-blue .tablesorter-filter-row td{background-color:#eee;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-blue .tablesorter-filter-row .disabled{opacity:.5;cursor:not-allowed}.tablesorter-blue .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-blue .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter-blue input.tablesorter-filter,.tablesorter-blue select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.bootstrap.min.css b/modules/pdproductattributeslist/views/css/theme.bootstrap.min.css new file mode 100644 index 00000000..12734bdc --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.bootstrap.min.css @@ -0,0 +1 @@ +.tablesorter-bootstrap{width:100%}.tablesorter-bootstrap tfoot td,.tablesorter-bootstrap tfoot th,.tablesorter-bootstrap thead td,.tablesorter-bootstrap thead th{font:14px/20px Arial,Sans-serif;font-weight:700;padding:4px;margin:0 0 18px;background-color:#eee}.tablesorter-bootstrap .tablesorter-header{cursor:pointer}.tablesorter-bootstrap .sorter-false{cursor:default}.tablesorter-bootstrap .tablesorter-header.sorter-false i.tablesorter-icon{display:none}.tablesorter-bootstrap .tablesorter-header-inner{position:relative;padding:4px 18px 4px 4px}.tablesorter-bootstrap .sorter-false .tablesorter-header-inner{padding:4px}.tablesorter-bootstrap .tablesorter-header i.tablesorter-icon{font-size:11px;position:absolute;right:2px;top:50%;margin-top:-7px;width:14px;height:14px;background-repeat:no-repeat;line-height:14px;display:inline-block}.tablesorter-bootstrap .bootstrap-icon-unsorted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAYAAAD5YeaVAAAA20lEQVR4AWJABpKSkoxALCstLb0aUAsZaCAMhVEY6B0amx8YZWDDEDSBa2AGe7XeIiAAClYwVGBvsAcIllsf/mvcC9DgOOd8h90fxWvngVEUbZIkuWRZZlE8eQjcisgZMM9zi+LJ6ZfwegmWZflZDugdHMfxTcGqql7TNBlUB/QObtv2VBSFrev6OY7jngzFk9OT/fn73fWYpqnlXNyXDMWT0zuYx/Bvel9ej+LJ6R08DMOu67q7DkTkrSA5vYPneV71fX/QASdTkJwezhs0TfMARn0wMDDGXEPgF4oijqwM5YjNAAAAAElFTkSuQmCC)}.tablesorter-bootstrap .bootstrap-icon-white.bootstrap-icon-unsorted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAYAAAD5YeaVAAAAe0lEQVR4AbXQoRWDMBiF0Sh2QLAAQ8SxJGugWSA6A2STW1PxTsnB9cnkfuYvv8OGC1t5G3Y0QMP+Bm857keAdQIzWBP3+Bw4MADQE18B6/etRnCV/w9nnGuLezfAmXhABGtAGIkruvk6auIFRwQJDywllsEAjCecB20GP59BQQ+gtlRLAAAAAElFTkSuQmCC)}.tablesorter-bootstrap>tbody>tr.odd>td,.tablesorter-bootstrap>tbody>tr.tablesorter-hasChildRow.odd:hover~tr.tablesorter-hasChildRow.odd~.tablesorter-childRow.odd>td{background-color:#f9f9f9}.tablesorter-bootstrap>tbody>tr.even:hover>td,.tablesorter-bootstrap>tbody>tr.hover>td,.tablesorter-bootstrap>tbody>tr.odd:hover>td,.tablesorter-bootstrap>tbody>tr.tablesorter-hasChildRow.even:hover~.tablesorter-childRow.even>td,.tablesorter-bootstrap>tbody>tr.tablesorter-hasChildRow.odd:hover~.tablesorter-childRow.odd>td{background-color:#f5f5f5}.tablesorter-bootstrap>tbody>tr.even>td,.tablesorter-bootstrap>tbody>tr.tablesorter-hasChildRow.even:hover~tr.tablesorter-hasChildRow.even~.tablesorter-childRow.even>td{background-color:#fff}.tablesorter-bootstrap .tablesorter-processing{background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=);background-position:center center!important;background-repeat:no-repeat!important}.tablesorter-bootstrap>tbody>tr.odd td.primary{background-color:#bfbfbf}.tablesorter-bootstrap>tbody>tr td.primary,.tablesorter-bootstrap>tbody>tr.even td.primary{background-color:#d9d9d9}.tablesorter-bootstrap>tbody>tr.odd td.secondary{background-color:#d9d9d9}.tablesorter-bootstrap>tbody>tr td.secondary,.tablesorter-bootstrap>tbody>tr.even td.secondary{background-color:#e6e6e6}.tablesorter-bootstrap>tbody>tr.odd td.tertiary{background-color:#e6e6e6}.tablesorter-bootstrap>tbody>tr td.tertiary,.tablesorter-bootstrap>tbody>tr.even td.tertiary{background-color:#f2f2f2}.tablesorter-bootstrap>.caption{background-color:#fff}.tablesorter-bootstrap .tablesorter-filter-row input.tablesorter-filter,.tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter{width:98%;margin:0;padding:4px 6px;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter-bootstrap .tablesorter-filter-row .tablesorter-filter.disabled{background-color:#eee;color:#555;cursor:not-allowed;border:1px solid #ccc;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.075) inset;box-sizing:border-box;transition:height .1s ease}.tablesorter-bootstrap .tablesorter-filter-row{background-color:#efefef}.tablesorter-bootstrap .tablesorter-filter-row td{background-color:#efefef;line-height:normal;text-align:center;padding:4px 6px;vertical-align:middle;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-bootstrap .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0}.tablesorter-bootstrap .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter .filtered{display:none}.tablesorter-bootstrap .tablesorter-pager select{padding:4px 6px}.tablesorter-bootstrap .tablesorter-pager .pagedisplay{border:0}.tablesorter-bootstrap tfoot i{font-size:11px}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.bootstrap_2.min.css b/modules/pdproductattributeslist/views/css/theme.bootstrap_2.min.css new file mode 100644 index 00000000..073d37fc --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.bootstrap_2.min.css @@ -0,0 +1 @@ +.tablesorter-bootstrap{width:100%}.tablesorter-bootstrap .tablesorter-header,.tablesorter-bootstrap tfoot td,.tablesorter-bootstrap tfoot th{font:14px/20px Arial,Sans-serif;font-weight:700;position:relative;padding:8px;margin:0 0 18px;list-style:none;background-color:#fbfbfb;background-image:-moz-linear-gradient(top,#fff,#efefef);background-image:-ms-linear-gradient(top,#fff,#efefef);background-image:-webkit-gradient(linear,0 0,0 100%,from(white),to(#efefef));background-image:-webkit-linear-gradient(top,#fff,#efefef);background-image:-o-linear-gradient(top,#fff,#efefef);background-image:linear-gradient(to bottom,#fff,#efefef);background-repeat:repeat-x;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.tablesorter-bootstrap .tablesorter-header{cursor:pointer}.tablesorter-bootstrap .sorter-false{cursor:default}.tablesorter-bootstrap .tablesorter-header.sorter-false i.tablesorter-icon{display:none}.tablesorter-bootstrap .tablesorter-header-inner{position:relative;padding:4px 18px 4px 4px}.tablesorter-bootstrap .sorter-false .tablesorter-header-inner{padding:4px}.tablesorter-bootstrap .tablesorter-header i.tablesorter-icon{position:absolute;right:2px;top:50%;margin-top:-7px;width:14px;height:14px;background-repeat:no-repeat;line-height:14px;display:inline-block}.tablesorter-bootstrap .bootstrap-icon-unsorted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAYAAAD5YeaVAAABGUlEQVR4AZWQAUfEYBzGC07fILfrbnfgqG1jmxliDitmYIaxb9Y3CEIEVHDaUGMfYF8gIyBqbd7eH7wWofB6/J7nN+x/IIRQbz6fH8p3slgsrkl4uv8QNU071XX9wTAMQcLTD6bi2WazubUsq3ddV5AwPftU1tbr9Z0UPhGDIHgjYXp2JS+Xy71t2wNCFEV113UxCdOzKznLshvf9z+SJHlp23ZHR8L07Er+6/u/LO96td1u3zmX/BmdjoTp2ZUchmHted4o/16sVqt7KR6TMD27kpumOc/z/EkOvWmaQp7rlYTp2ZU8juOsqqqLoij2UvhyHEeQMD27knl93x+VZXmZpukz9yVh+l+vMQzDrK7rXRzHjyQ83b8BlglBGLw1Kb4AAAAASUVORK5CYII=)}.tablesorter-bootstrap .icon-white.bootstrap-icon-unsorted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAYAAAD5YeaVAAAAe0lEQVR4AbXQoRWDMBiF0Sh2QLAAQ8SxJGugWSA6A2STW1PxTsnB9cnkfuYvv8OGC1t5G3Y0QMP+Bm857keAdQIzWBP3+Bw4MADQE18B6/etRnCV/w9nnGuLezfAmXhABGtAGIkruvk6auIFRwQJDywllsEAjCecB20GP59BQQ+gtlRLAAAAAElFTkSuQmCC)}.tablesorter-bootstrap tr.odd>td{background-color:#f9f9f9}.tablesorter-bootstrap tbody>.even:hover>td,.tablesorter-bootstrap tbody>.odd:hover>td,.tablesorter-bootstrap tbody>tr.hover>td{background-color:#f5f5f5}.tablesorter-bootstrap tbody>tr.even>td{background-color:#fff}.tablesorter-bootstrap .tablesorter-processing{background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=);position:absolute;z-index:1000}.tablesorter-bootstrap>tbody>tr.odd td.primary{background-color:#bfbfbf}.tablesorter-bootstrap>tbody>tr td.primary,.tablesorter-bootstrap>tbody>tr.even td.primary{background-color:#d9d9d9}.tablesorter-bootstrap>tbody>tr.odd td.secondary{background-color:#d9d9d9}.tablesorter-bootstrap>tbody>tr td.secondary,.tablesorter-bootstrap>tbody>tr.even td.secondary{background-color:#e6e6e6}.tablesorter-bootstrap>tbody>tr.odd td.tertiary{background-color:#e6e6e6}.tablesorter-bootstrap>tbody>tr td.tertiary,.tablesorter-bootstrap>tbody>tr.even td.tertiary{background-color:#f2f2f2}.tablesorter-bootstrap>caption{background-color:#fff}.tablesorter-bootstrap .tablesorter-filter-row input.tablesorter-filter,.tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter{height:28px;width:98%;margin:0;padding:4px 6px;background-color:#fff;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter-bootstrap .tablesorter-filter-row .tablesorter-filter.disabled{background-color:#eee;cursor:not-allowed}.tablesorter-bootstrap .tablesorter-filter-row{background-color:#ddd}.tablesorter-bootstrap .tablesorter-filter-row td{background-color:#eee;line-height:normal;text-align:center;padding:4px 6px;vertical-align:middle;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-bootstrap tr.tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0}.tablesorter-bootstrap tr.tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter .filtered{display:none}.tablesorter-bootstrap .tablesorter-pager select{padding:4px 6px}.tablesorter-bootstrap .tablesorter-pager .pagedisplay{border:0}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.bootstrap_3.min.css b/modules/pdproductattributeslist/views/css/theme.bootstrap_3.min.css new file mode 100644 index 00000000..12734bdc --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.bootstrap_3.min.css @@ -0,0 +1 @@ +.tablesorter-bootstrap{width:100%}.tablesorter-bootstrap tfoot td,.tablesorter-bootstrap tfoot th,.tablesorter-bootstrap thead td,.tablesorter-bootstrap thead th{font:14px/20px Arial,Sans-serif;font-weight:700;padding:4px;margin:0 0 18px;background-color:#eee}.tablesorter-bootstrap .tablesorter-header{cursor:pointer}.tablesorter-bootstrap .sorter-false{cursor:default}.tablesorter-bootstrap .tablesorter-header.sorter-false i.tablesorter-icon{display:none}.tablesorter-bootstrap .tablesorter-header-inner{position:relative;padding:4px 18px 4px 4px}.tablesorter-bootstrap .sorter-false .tablesorter-header-inner{padding:4px}.tablesorter-bootstrap .tablesorter-header i.tablesorter-icon{font-size:11px;position:absolute;right:2px;top:50%;margin-top:-7px;width:14px;height:14px;background-repeat:no-repeat;line-height:14px;display:inline-block}.tablesorter-bootstrap .bootstrap-icon-unsorted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAYAAAD5YeaVAAAA20lEQVR4AWJABpKSkoxALCstLb0aUAsZaCAMhVEY6B0amx8YZWDDEDSBa2AGe7XeIiAAClYwVGBvsAcIllsf/mvcC9DgOOd8h90fxWvngVEUbZIkuWRZZlE8eQjcisgZMM9zi+LJ6ZfwegmWZflZDugdHMfxTcGqql7TNBlUB/QObtv2VBSFrev6OY7jngzFk9OT/fn73fWYpqnlXNyXDMWT0zuYx/Bvel9ej+LJ6R08DMOu67q7DkTkrSA5vYPneV71fX/QASdTkJwezhs0TfMARn0wMDDGXEPgF4oijqwM5YjNAAAAAElFTkSuQmCC)}.tablesorter-bootstrap .bootstrap-icon-white.bootstrap-icon-unsorted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAYAAAD5YeaVAAAAe0lEQVR4AbXQoRWDMBiF0Sh2QLAAQ8SxJGugWSA6A2STW1PxTsnB9cnkfuYvv8OGC1t5G3Y0QMP+Bm857keAdQIzWBP3+Bw4MADQE18B6/etRnCV/w9nnGuLezfAmXhABGtAGIkruvk6auIFRwQJDywllsEAjCecB20GP59BQQ+gtlRLAAAAAElFTkSuQmCC)}.tablesorter-bootstrap>tbody>tr.odd>td,.tablesorter-bootstrap>tbody>tr.tablesorter-hasChildRow.odd:hover~tr.tablesorter-hasChildRow.odd~.tablesorter-childRow.odd>td{background-color:#f9f9f9}.tablesorter-bootstrap>tbody>tr.even:hover>td,.tablesorter-bootstrap>tbody>tr.hover>td,.tablesorter-bootstrap>tbody>tr.odd:hover>td,.tablesorter-bootstrap>tbody>tr.tablesorter-hasChildRow.even:hover~.tablesorter-childRow.even>td,.tablesorter-bootstrap>tbody>tr.tablesorter-hasChildRow.odd:hover~.tablesorter-childRow.odd>td{background-color:#f5f5f5}.tablesorter-bootstrap>tbody>tr.even>td,.tablesorter-bootstrap>tbody>tr.tablesorter-hasChildRow.even:hover~tr.tablesorter-hasChildRow.even~.tablesorter-childRow.even>td{background-color:#fff}.tablesorter-bootstrap .tablesorter-processing{background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=);background-position:center center!important;background-repeat:no-repeat!important}.tablesorter-bootstrap>tbody>tr.odd td.primary{background-color:#bfbfbf}.tablesorter-bootstrap>tbody>tr td.primary,.tablesorter-bootstrap>tbody>tr.even td.primary{background-color:#d9d9d9}.tablesorter-bootstrap>tbody>tr.odd td.secondary{background-color:#d9d9d9}.tablesorter-bootstrap>tbody>tr td.secondary,.tablesorter-bootstrap>tbody>tr.even td.secondary{background-color:#e6e6e6}.tablesorter-bootstrap>tbody>tr.odd td.tertiary{background-color:#e6e6e6}.tablesorter-bootstrap>tbody>tr td.tertiary,.tablesorter-bootstrap>tbody>tr.even td.tertiary{background-color:#f2f2f2}.tablesorter-bootstrap>.caption{background-color:#fff}.tablesorter-bootstrap .tablesorter-filter-row input.tablesorter-filter,.tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter{width:98%;margin:0;padding:4px 6px;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter-bootstrap .tablesorter-filter-row .tablesorter-filter.disabled{background-color:#eee;color:#555;cursor:not-allowed;border:1px solid #ccc;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.075) inset;box-sizing:border-box;transition:height .1s ease}.tablesorter-bootstrap .tablesorter-filter-row{background-color:#efefef}.tablesorter-bootstrap .tablesorter-filter-row td{background-color:#efefef;line-height:normal;text-align:center;padding:4px 6px;vertical-align:middle;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-bootstrap .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0}.tablesorter-bootstrap .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter .filtered{display:none}.tablesorter-bootstrap .tablesorter-pager select{padding:4px 6px}.tablesorter-bootstrap .tablesorter-pager .pagedisplay{border:0}.tablesorter-bootstrap tfoot i{font-size:11px}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.bootstrap_4.min.css b/modules/pdproductattributeslist/views/css/theme.bootstrap_4.min.css new file mode 100644 index 00000000..3b91e8d1 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.bootstrap_4.min.css @@ -0,0 +1 @@ +.tablesorter-bootstrap{width:100%}.tablesorter-bootstrap tfoot td,.tablesorter-bootstrap tfoot th,.tablesorter-bootstrap thead td,.tablesorter-bootstrap thead th{font:14px/20px Arial,Sans-serif;font-weight:700;padding:4px;margin:0 0 18px}.tablesorter-bootstrap thead .tablesorter-header{background-position:right 5px center;background-repeat:no-repeat;cursor:pointer;white-space:normal}.tablesorter-bootstrap:not(.table-dark) tfoot td,.tablesorter-bootstrap:not(.table-dark) tfoot th,.tablesorter-bootstrap:not(.table-dark) thead:not(.thead-dark) .tablesorter-header{background-color:#eee}.tablesorter-bootstrap thead .sorter-false{cursor:default;background-image:none}.tablesorter-bootstrap .tablesorter-header-inner{position:relative;padding:4px 18px 4px 4px}.tablesorter-bootstrap .sorter-false .tablesorter-header-inner{padding:4px}.tablesorter-bootstrap thead .tablesorter-headerUnSorted:not(.sorter-false){background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE0IDIwIj48cGF0aCBkPSJNMTQgMTNsLTIuNS0yLjVMNyAxNWwtNC41LTQuNUwwIDEzbDcgN3pNMTQgNy41TDExLjUgMTAgNyA1LjUgMi41IDEwIDAgNy41bDctN3oiLz48L3N2Zz4=)}.tablesorter-bootstrap thead .tablesorter-headerAsc{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDE0IDE0Ij48cGF0aCBkPSJNMTQgOS41TDExLjUgMTIgNyA3LjUgMi41IDEyIDAgOS41bDctN3oiLz48L3N2Zz4=)}.tablesorter-bootstrap thead .tablesorter-headerDesc{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDE0IDE0Ij48cGF0aCBkPSJNMTQgNWwtMi41LTIuNS00LjUgNC41LTQuNS00LjVMMCA1IDcgMTJ6Ii8+PC9zdmc+)}.tablesorter-bootstrap thead.thead-dark .tablesorter-headerUnSorted:not(.sorter-false),.tablesorter-bootstrap.table-dark thead .tablesorter-headerUnSorted:not(.sorter-false){background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE0IDIwIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTQgMTNsLTIuNS0yLjVMNyAxNWwtNC41LTQuNUwwIDEzbDcgN3pNMTQgNy41TDExLjUgMTAgNyA1LjUgMi41IDEwIDAgNy41bDctN3oiLz48L3N2Zz4=)}.tablesorter-bootstrap thead.thead-dark .tablesorter-headerAsc,.tablesorter-bootstrap.table-dark thead .tablesorter-headerAsc{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDE0IDE0Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTQgOS41TDExLjUgMTIgNyA3LjUgMi41IDEyIDAgOS41bDctN3oiLz48L3N2Zz4=)}.tablesorter-bootstrap thead.thead-dark .tablesorter-headerDesc,.tablesorter-bootstrap.table-dark thead .tablesorter-headerDesc{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDE0IDE0Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTQgNWwtMi41LTIuNS00LjUgNC41LTQuNS00LjVMMCA1IDcgMTJ6Ii8+PC9zdmc+)}.tablesorter-bootstrap:not(.table-dark)>tbody>tr.odd>td,.tablesorter-bootstrap:not(.table-dark)>tbody>tr.tablesorter-hasChildRow.odd:hover~tr.tablesorter-hasChildRow.odd~.tablesorter-childRow.odd>td{background-color:#f9f9f9}.tablesorter-bootstrap:not(.table-dark)>tbody>tr.even:hover>td,.tablesorter-bootstrap:not(.table-dark)>tbody>tr.hover>td,.tablesorter-bootstrap:not(.table-dark)>tbody>tr.odd:hover>td,.tablesorter-bootstrap:not(.table-dark)>tbody>tr.tablesorter-hasChildRow.even:hover~.tablesorter-childRow.even>td,.tablesorter-bootstrap:not(.table-dark)>tbody>tr.tablesorter-hasChildRow.odd:hover~.tablesorter-childRow.odd>td{background-color:#f5f5f5}.tablesorter-bootstrap:not(.table-dark)>tbody>tr.even>td,.tablesorter-bootstrap:not(.table-dark)>tbody>tr.tablesorter-hasChildRow.even:hover~tr.tablesorter-hasChildRow.even~.tablesorter-childRow.even>td{background-color:#fff}.tablesorter-bootstrap .tablesorter-processing{background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=);background-position:center center!important;background-repeat:no-repeat!important}.tablesorter-bootstrap:not(.table-dark)>tbody>tr.odd td.primary{background-color:#bfbfbf}.tablesorter-bootstrap:not(.table-dark)>tbody>tr td.primary,.tablesorter-bootstrap:not(.table-dark)>tbody>tr.even td.primary{background-color:#d9d9d9}.tablesorter-bootstrap:not(.table-dark)>tbody>tr.odd td.secondary{background-color:#d9d9d9}.tablesorter-bootstrap:not(.table-dark)>tbody>tr td.secondary,.tablesorter-bootstrap:not(.table-dark)>tbody>tr.even td.secondary{background-color:#e6e6e6}.tablesorter-bootstrap:not(.table-dark)>tbody>tr.odd td.tertiary{background-color:#e6e6e6}.tablesorter-bootstrap:not(.table-dark)>tbody>tr td.tertiary,.tablesorter-bootstrap:not(.table-dark)>tbody>tr.even td.tertiary{background-color:#f2f2f2}.tablesorter-bootstrap:not(.table-dark)>.caption{background-color:#fff}.tablesorter-bootstrap .tablesorter-filter-row input.tablesorter-filter,.tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter{width:98%;margin:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter-bootstrap:not(.table-dark) .tablesorter-filter-row{background-color:#efefef}.tablesorter-bootstrap:not(.table-dark) .tablesorter-filter-row input.tablesorter-filter,.tablesorter-bootstrap:not(.table-dark) .tablesorter-filter-row select.tablesorter-filter{color:#333}.tablesorter-bootstrap .tablesorter-filter-row .tablesorter-filter.disabled{cursor:not-allowed;box-shadow:0 1px 1px rgba(0,0,0,.075) inset;box-sizing:border-box;transition:height .1s ease}.tablesorter-bootstrap:not(.table-dark) .tablesorter-filter-row td{line-height:normal;text-align:center;padding:4px 6px;vertical-align:middle;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-bootstrap .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0}.tablesorter-bootstrap .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter .filtered{display:none}.tablesorter-bootstrap .tablesorter-pager .pagedisplay{border:0}.tablesorter:not(.table-dark) .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.dark.min.css b/modules/pdproductattributeslist/views/css/theme.dark.min.css new file mode 100644 index 00000000..c0658786 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.dark.min.css @@ -0,0 +1 @@ +.tablesorter-dark{width:100%;font:11px/18px Arial,Sans-serif;color:#ccc;text-align:left;background-color:#000;border-spacing:0}.tablesorter-dark th,.tablesorter-dark thead td{padding:4px;font:12px/20px Arial,Sans-serif;font-weight:700;color:#fff;background-color:#000;border-collapse:collapse}.tablesorter-dark thead th{border-bottom:#333 2px solid}.tablesorter-dark .header,.tablesorter-dark .tablesorter-header{padding:4px 20px 4px 4px;cursor:pointer;background-image:url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);background-position:center right;background-repeat:no-repeat}.tablesorter-dark thead .headerSortUp,.tablesorter-dark thead .tablesorter-headerAsc,.tablesorter-dark thead .tablesorter-headerSortUp{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);border-bottom:#888 1px solid}.tablesorter-dark thead .headerSortDown,.tablesorter-dark thead .tablesorter-headerDesc,.tablesorter-dark thead .tablesorter-headerSortDown{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);border-bottom:#888 1px solid}.tablesorter-dark thead .sorter-false{background-image:none;cursor:default;padding:4px}.tablesorter-dark tfoot .tablesorter-headerAsc,.tablesorter-dark tfoot .tablesorter-headerDesc,.tablesorter-dark tfoot .tablesorter-headerSortDown,.tablesorter-dark tfoot .tablesorter-headerSortUp{border-top:#888 1px solid;background-image:none}.tablesorter-dark td{padding:4px;background-color:#000;border-bottom:#333 1px solid;color:#ccc}.tablesorter-dark tbody>tr.even:hover>td,.tablesorter-dark tbody>tr.hover>td,.tablesorter-dark tbody>tr.odd:hover>td,.tablesorter-dark tbody>tr:hover>td{background-color:#000}.tablesorter-dark .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-dark tr.odd>td{background-color:#202020}.tablesorter-dark tr.even>td{background-color:#101010}.tablesorter-dark td.primary,.tablesorter-dark tr.odd td.primary{background-color:#0a0a0a}.tablesorter-dark tr.even td.primary{background-color:#050505}.tablesorter-dark td.secondary,.tablesorter-dark tr.odd td.secondary{background-color:#0f0f0f}.tablesorter-dark tr.even td.secondary{background-color:#0a0a0a}.tablesorter-dark td.tertiary,.tablesorter-dark tr.odd td.tertiary{background-color:#191919}.tablesorter-dark tr.even td.tertiary{background-color:#0f0f0f}.tablesorter-dark>caption{background-color:#202020}.tablesorter-dark .tablesorter-filter-row{background-color:#202020}.tablesorter-dark .tablesorter-filter-row td{background-color:#202020;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-dark .tablesorter-filter-row .disabled{opacity:.5;cursor:not-allowed}.tablesorter-dark .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-dark .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter-dark input.tablesorter-filter,.tablesorter-dark select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#111;border:1px solid #222;color:#ddd;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.default.min.css b/modules/pdproductattributeslist/views/css/theme.default.min.css new file mode 100644 index 00000000..78f2f73f --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.default.min.css @@ -0,0 +1 @@ +.tablesorter-default{width:100%;font:12px/18px Arial,Sans-serif;color:#333;background-color:#fff;border-spacing:0;margin:10px 0 15px;text-align:left}.tablesorter-default th,.tablesorter-default thead td{font-weight:700;color:#000;background-color:#fff;border-collapse:collapse;border-bottom:#ccc 2px solid;padding:0}.tablesorter-default tfoot td,.tablesorter-default tfoot th{border:0}.tablesorter-default .header,.tablesorter-default .tablesorter-header{background-image:url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);background-position:center right;background-repeat:no-repeat;cursor:pointer;white-space:normal;padding:4px 20px 4px 4px}.tablesorter-default thead .headerSortUp,.tablesorter-default thead .tablesorter-headerAsc,.tablesorter-default thead .tablesorter-headerSortUp{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);border-bottom:#000 2px solid}.tablesorter-default thead .headerSortDown,.tablesorter-default thead .tablesorter-headerDesc,.tablesorter-default thead .tablesorter-headerSortDown{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);border-bottom:#000 2px solid}.tablesorter-default thead .sorter-false{background-image:none;cursor:default;padding:4px}.tablesorter-default tfoot .tablesorter-headerAsc,.tablesorter-default tfoot .tablesorter-headerDesc,.tablesorter-default tfoot .tablesorter-headerSortDown,.tablesorter-default tfoot .tablesorter-headerSortUp{border-top:#000 2px solid}.tablesorter-default td{background-color:#fff;border-bottom:#ccc 1px solid;padding:4px;vertical-align:top}.tablesorter-default tbody>tr.even:hover>td,.tablesorter-default tbody>tr.hover>td,.tablesorter-default tbody>tr.odd:hover>td,.tablesorter-default tbody>tr:hover>td{background-color:#fff;color:#000}.tablesorter-default .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-default tr.odd>td{background-color:#dfdfdf}.tablesorter-default tr.even>td{background-color:#efefef}.tablesorter-default tr.odd td.primary{background-color:#bfbfbf}.tablesorter-default td.primary,.tablesorter-default tr.even td.primary{background-color:#d9d9d9}.tablesorter-default tr.odd td.secondary{background-color:#d9d9d9}.tablesorter-default td.secondary,.tablesorter-default tr.even td.secondary{background-color:#e6e6e6}.tablesorter-default tr.odd td.tertiary{background-color:#e6e6e6}.tablesorter-default td.tertiary,.tablesorter-default tr.even td.tertiary{background-color:#f2f2f2}.tablesorter-default>caption{background-color:#fff}.tablesorter-default .tablesorter-filter-row{background-color:#eee}.tablesorter-default .tablesorter-filter-row td{background-color:#eee;border-bottom:#ccc 1px solid;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-default .tablesorter-filter-row .disabled{opacity:.5;cursor:not-allowed}.tablesorter-default .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-default .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter-default input.tablesorter-filter,.tablesorter-default select.tablesorter-filter{width:95%;height:auto;margin:4px auto;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.dropbox.min.css b/modules/pdproductattributeslist/views/css/theme.dropbox.min.css new file mode 100644 index 00000000..04e05fe2 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.dropbox.min.css @@ -0,0 +1 @@ +.tablesorter-dropbox{width:100%;font:13px/32px "Open Sans","lucida grande","Segoe UI",arial,verdana,"lucida sans unicode",tahoma,sans-serif;color:#555;text-align:left;background-color:#fff;border-collapse:collapse;border-top:1px solid #82cffa;border-spacing:0}.tablesorter-dropbox tfoot td,.tablesorter-dropbox tfoot th,.tablesorter-dropbox th,.tablesorter-dropbox thead td{background-color:#f0f9ff;border-color:#82cffa #e7f2fb #96c4ea;border-style:solid;border-width:1px;padding:3px 6px;font-size:13px;font-weight:400;line-height:29px;color:#2281cf;text-align:left}.tablesorter-dropbox .header,.tablesorter-dropbox .tablesorter-headerRow,.tablesorter-dropbox thead tr{background-color:#f0f9ff;border-bottom:1px solid #96c4ea;box-shadow:0 1px 1px rgba(0,0,0,.12),0 0 0 #000 inset;white-space:normal}.tablesorter-dropbox .tablesorter-headerAsc,.tablesorter-dropbox .tablesorter-headerDesc,.tablesorter-dropbox .tablesorter-headerSortDown,.tablesorter-dropbox .tablesorter-headerSortUp{font-weight:600}.tablesorter-dropbox .tablesorter-header{cursor:pointer}.tablesorter-dropbox .tablesorter-header i.tablesorter-icon{width:9px;height:9px;padding:0 10px 0 4px;display:inline-block;background-position:center right;background-repeat:no-repeat;content:""}.tablesorter-dropbox .tablesorter-headerAsc i.tablesorter-icon,.tablesorter-dropbox .tablesorter-headerSortUp i.tablesorter-icon{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALhJREFUeNpi/P//PwMhwILMiexYx8bIxNTy/9+/muUVQb9g4kzIitg4edI4+YRLQTSyOCPMupjerUI8whK3OXgEhH58+fDuy9sXqkuKvd+hmMTOxdvCxS8sxMUvxACiQXwU6+Im7DDg5BNKY+fiY2BmYWMA0SA+SByuiJ2bbzIHrwAzMxsb0AGMDCAaxAeJg+SZ7wtaqfAISfQAdTIwMUM8ywhUyMTEzPD/71+5FXvPLWUkJpwAAgwAZqYvvHStbD4AAAAASUVORK5CYII=)}.tablesorter-dropbox .tablesorter-headerAsc:hover i.tablesorter-icon,.tablesorter-dropbox .tablesorter-headerSortUp:hover i.tablesorter-icon{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALVJREFUeNpi/P//PwMhwILMCc+qZGNkYmr5/+9fzcpp7b9g4kzIitjYOdM4uXlLQTSyOCPMuqi8OiEefsHbHFzcQj++fX335eN71WWTmt6hmMTOwdXCycMnBDSJAUSD+CjWxRQ0GHBw86Sxc3AyMDOzMIBoEB8kDlfEzsk1mYOLByjPCnQAIwOIBvFB4iB55rsfmVS4+QV7QNYwMTNDHApUyMTExPDv/z+5Feu3L2UkJpwAAgwA244u+I9CleAAAAAASUVORK5CYII=)}.tablesorter-dropbox .tablesorter-headerDesc i.tablesorter-icon,.tablesorter-dropbox .tablesorter-headerSortDown i.tablesorter-icon{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALdJREFUeNpi/P//PwMhwBLdtVGFhZ3zNhMzC4bkv79/GP78/K7KCDIpZ9mVw+xcfDaMTExwBf///WP4+e3TkSlROrZg7UxMLLns3HxnmFnZmGGK/v7+9ff3j2+5YHkQMSlC48Kv719m/f//D2IKkAbxQeJwRSDw4/OHmr+/fr0DqmAA0SA+TA6uaEq0zjugG+r//vkFcks9iA/3HbJvvn18O+vf379yP758mMXAoAAXZyQmnAACDADX316BiTFbMQAAAABJRU5ErkJggg==)}.tablesorter-dropbox .tablesorter-headerDesc:hover i.tablesorter-icon,.tablesorter-dropbox .tablesorter-headerSortDown:hover i.tablesorter-icon{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALNJREFUeNpi/P//PwMhwBJf3uP879e3PUzMzBiS//7+ZWBi43JhBJmU2z7nIzMzEx8jIyNcAUj8799/nyZXpvCzgARYuXjTWBkZVjCzIEz7++cvw+//DGkgNiPMTWVT1l5hZvynDTINbMp/pqtdOcE6IDkmmM5fv3/5//v37z9QBQOIBvFhcnBFEwoj7/5jZFnz9+8fBhAN4sN9h+ybH9++JrGxscr/+vE1CVmckZhwAggwANvlUyq5Dd1wAAAAAElFTkSuQmCC)}.tablesorter-dropbox thead .sorter-false{cursor:default}.tablesorter-dropbox thead .sorter-false i.tablesorter-icon{display:none}.tablesorter-dropbox td{padding:5px 6px;line-height:32px;color:#555;text-align:left;border-top:1px solid #edf1f5;border-bottom:1px solid #edf1f5}.tablesorter-dropbox tbody>tr.even:hover>td,.tablesorter-dropbox tbody>tr.hover>td,.tablesorter-dropbox tbody>tr.odd:hover>td,.tablesorter-dropbox tbody>tr:hover>td{background-color:rgba(230,245,255,.3);border-right:0;border-left:0;border-color:#c6d8e4;border-style:double}.tablesorter-dropbox .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-dropbox>caption{background-color:#fff}.tablesorter-dropbox .tablesorter-filter-row{background-color:#fff}.tablesorter-dropbox .tablesorter-filter-row td{background-color:#fff;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-dropbox .tablesorter-filter-row .disabled{opacity:.5;cursor:not-allowed}.tablesorter-dropbox .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-dropbox .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter-dropbox input.tablesorter-filter,.tablesorter-dropbox select.tablesorter-filter{width:98%;height:auto;margin:0;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.green.min.css b/modules/pdproductattributeslist/views/css/theme.green.min.css new file mode 100644 index 00000000..b5d17ea8 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.green.min.css @@ -0,0 +1 @@ +.tablesorter-green{width:100%;text-align:left;border-spacing:0;border:#cdcdcd 1px solid;border-width:1px 0 0 1px}.tablesorter-green td,.tablesorter-green th{font:12px/18px Arial,Sans-serif;border:#cdcdcd 1px solid;border-width:0 1px 1px 0}.tablesorter-green tfoot tr,.tablesorter-green thead tr .tablesorter-header{background-position:center center;background-repeat:repeat-x;background-image:url(data:image/gif;base64,R0lGODlhAQBkAOYAAN/e39XU1fX19tTU1eXm5uTl5ePk5OLj4+Hi4vX29fT19PP08/Lz8vHy8fDx8O/w7+7v7uzt7Orr6ufo5/T08/Pz8ufn5uLi4eDg39/f3t3d3Nzc29HR0NDQz8/Pzuvq6urp6eno6Ojn5+fm5tfW1tbV1dTT09PS0tLR0dHQ0NDPz/f39/b29vX19fT09PPz8/Ly8vHx8e/v7+7u7u3t7ezs7Ovr6+rq6unp6ejo6Ofn5+bm5uXl5eTk5OPj4+Li4uHh4eDg4N/f397e3t3d3dzc3Nvb29ra2tnZ2djY2NfX19XV1dPT09LS0tHR0dDQ0M/Pz8rKysXFxf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAFMALAAAAAABAGQAAAdegCsrLC0tLi+ILi6FCSwsCS0KkhQVDA0OMjM0NTYfICEiIzw9P0AYGUQaG0ZHSEoDTU9Qs08pTk1MSyRJR0VDQT8+PTw7Ojg3NTMyMTAvi4WOhC0vMTI1OT9GTlFSgQA7)}.tablesorter-green th,.tablesorter-green thead td{font-weight:700;border-right:#cdcdcd 1px solid;border-collapse:collapse;padding:6px}.tablesorter-green .header,.tablesorter-green .tablesorter-header-inner{background-position:5px center;background-repeat:no-repeat;background-image:url(data:image/gif;base64,R0lGODlhEAAQAOYAAA5NDBBYDlWWUzRUM5DVjp7inJ/fnQ1ECiCsGhyYFxqKFRFdDhBXDQxCCiO8HSK2HCCqGh2aGByUFxuPFhqNFhmHFRZ2EhVvERRpEBBVDSS8HiGyHB+mGh6fGRuTFxiAFBd5Eww/Cgs5CRp7Fiu+JRx8GCy/JjHAKyynKCuhJzXCMDbCMDnDMyNuHz3EODy9N0LFPSl7JkvIRjycOFDKS1LKTVPLT1XLUFTCT17OWTBkLmbQYnDTbHXVcXnWdoXago/djGmUZ112XCJEIEdjRf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAEUALAAAAAAQABAAAAdlgEWCg4SFhoIvh4cVLECKhCMeJjwFj0UlEwgaMD4Gii0WFAkRHQ47BIY6IQAZDAwBCyAPOJa1toRBGBAwNTY3OT0/AoZCDQoOKi4yNDOKRCIfGycrKZYDBxIkKLZDFxy3RTHgloEAOw==);border-collapse:collapse;white-space:normal;cursor:pointer}.tablesorter-green thead .headerSortUp .tablesorter-header-inner,.tablesorter-green thead .tablesorter-headerAsc .tablesorter-header-inner,.tablesorter-green thead .tablesorter-headerSortUp .tablesorter-header-inner{background-image:url(data:image/gif;base64,R0lGODlhEAAQANUAAA5NDBBYDpDVjp7inJ/fnSCsGhyYFxFdDhBXDSO8HSK2HB2aGBuPFhqNFhmHFRZ2EhBVDSS8Hh6fGRuTFxd5Eww/Chp7Fhx8GCy/JjnDMyNuHzy9N0LFPVTCTzBkLmbQYnDTbHnWdo/djP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACMALAAAAAAQABAAAAY4wJFwSCwaj8ikcslMbpojR0bEtEwwoIHywihEOCECUvNoGBaSxEdg9FQAEAQicKAoOtC8fs8fBgEAOw==)}.tablesorter-green thead .headerSortDown .tablesorter-header-inner,.tablesorter-green thead .tablesorter-headerDesc .tablesorter-header-inner,.tablesorter-green thead .tablesorter-headerSortDown .tablesorter-header-inner{background-image:url(data:image/gif;base64,R0lGODlhEAAQANUAAFWWUzRUMw1EChqKFQxCCiO8HSCqGhyUFxVvERRpECGyHB+mGhiAFAs5CSu+JTHAKyynKCuhJzXCMDbCMD3EOELFPSl7JkvIRjycOFDKS1LKTVPLT1XLUF7OWXXVcYXagmmUZ112XCJEIEdjRf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACQALAAAAAAQABAAAAY4QJJwSCwaj8ikcskkghKGimbD6Xg+AGOIMChIKJcMBjlqMBSPSUQZEBwcEKYIsWiSLPa8fs9HBgEAOw==)}.tablesorter-green td.tablesorter-header .tablesorter-header-inner,.tablesorter-green th.tablesorter-header .tablesorter-header-inner{padding-left:23px}.tablesorter-green thead .tablesorter-header.sorter-false .tablesorter-header-inner{background-image:none;cursor:default;padding-left:6px}.tablesorter-green tbody td,.tablesorter-green tfoot th{padding:6px;vertical-align:top}.tablesorter-green td{color:#3d3d3d;padding:6px}.tablesorter-green tbody>tr.even.hover>td,.tablesorter-green tbody>tr.even:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-green tbody>tr.even:hover+tr.tablesorter-childRow>td,.tablesorter-green tbody>tr.even:hover>td,.tablesorter-green tbody>tr.hover>td,.tablesorter-green tbody>tr:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-green tbody>tr:hover+tr.tablesorter-childRow>td,.tablesorter-green tbody>tr:hover>td{background-color:#d9d9d9}.tablesorter-green tbody>tr.odd.hover>td,.tablesorter-green tbody>tr.odd:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-green tbody>tr.odd:hover+tr.tablesorter-childRow>td,.tablesorter-green tbody>tr.odd:hover>td{background-color:#bfbfbf}.tablesorter-green .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-green tr.odd>td{background-color:#ebfaeb}.tablesorter-green tr.even>td{background-color:#fff}.tablesorter-green td.primary,.tablesorter-green tr.odd td.primary{background-color:#99e6a6}.tablesorter-green tr.even td.primary{background-color:#c2f0c9}.tablesorter-green td.secondary,.tablesorter-green tr.odd td.secondary{background-color:#c2f0c9}.tablesorter-green tr.even td.secondary{background-color:#d6f5db}.tablesorter-green td.tertiary,.tablesorter-green tr.odd td.tertiary{background-color:#d6f5db}.tablesorter-green tr.even td.tertiary{background-color:#ebfaed}.tablesorter-green>caption{background-color:#fff}.tablesorter-green .tablesorter-filter-row{background-color:#eee}.tablesorter-green .tablesorter-filter-row td{background-color:#eee;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-green .tablesorter-filter-row .disabled{opacity:.5;cursor:not-allowed}.tablesorter-green .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-green .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter-green input.tablesorter-filter,.tablesorter-green select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.grey.min.css b/modules/pdproductattributeslist/views/css/theme.grey.min.css new file mode 100644 index 00000000..18ec538b --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.grey.min.css @@ -0,0 +1 @@ +.tablesorter-grey{width:100%;margin:10px 0 15px;text-align:left;border-spacing:0;border-left:#555 1px solid}.tablesorter-grey th,.tablesorter-grey thead td{font:bold 12px/18px Arial,Sans-serif;color:#c8c8c8;background-color:#3c3c3c;background-image:-moz-linear-gradient(top,#555,#3c3c3c);background-image:-ms-linear-gradient(top,#555,#3c3c3c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#555),to(#3c3c3c));background-image:-webkit-linear-gradient(top,#555,#3c3c3c);background-image:-o-linear-gradient(top,#555,#3c3c3c);background-image:linear-gradient(to bottom,#555,#3c3c3c);background-repeat:repeat-x;border-right:#555 1px solid;text-shadow:0 1px 0 rgba(128,128,128,.7);-webkit-box-shadow:inset 0 1px 0 #222;-moz-box-shadow:inset 0 1px 0 #222;box-shadow:inset 0 1px 0 #222;padding:4px}.tablesorter-grey .tablesorter-header-inner{position:relative;padding:4px 15px 4px 4px}.tablesorter-grey .header,.tablesorter-grey .tablesorter-header{cursor:pointer}.tablesorter-grey .header i,.tablesorter-grey .tablesorter-header i.tablesorter-icon{width:18px;height:10px;position:absolute;right:2px;top:50%;margin-top:-10px;background-image:url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);background-repeat:no-repeat;background-position:center right;padding:4px;white-space:normal}.tablesorter-grey th.headerSortDown,.tablesorter-grey th.headerSortUp,.tablesorter-grey th.tablesorter-headerSortDown,.tablesorter-grey th.tablesorter-headerSortUp{color:#ddd;background-color:#135185;background-image:-moz-linear-gradient(top,#195c93,#0e4776);background-image:-ms-linear-gradient(top,#195c93,#0e4776);background-image:-webkit-gradient(linear,0 0,0 100%,from(#195c93),to(#0e4776));background-image:-webkit-linear-gradient(top,#195c93,#0e4776);background-image:-o-linear-gradient(top,#195c93,#0e4776);background-image:linear-gradient(to bottom,#195c93,#0e4776)}.tablesorter-grey .headerSortUp i.tablesorter-icon,.tablesorter-grey .tablesorter-headerAsc i.tablesorter-icon,.tablesorter-grey .tablesorter-headerSortUp i.tablesorter-icon{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7)}.tablesorter-grey .headerSortDown i.tablesorter-icon,.tablesorter-grey .tablesorter-headerDesc i.tablesorter-icon,.tablesorter-grey .tablesorter-headerSortDown i.tablesorter-icon{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7)}.tablesorter-grey thead .sorter-false{cursor:default}.tablesorter-grey thead .sorter-false i.tablesorter-icon{display:none}.tablesorter-grey tbody td,.tablesorter-grey tfoot td,.tablesorter-grey tfoot th{padding:4px;vertical-align:top;border-right:#555 1px solid}.tablesorter-grey tfoot td,.tablesorter-grey tfoot th{padding:8px}.tablesorter-grey td{color:#eee;background-color:#6d6d6d;padding:4px;vertical-align:top}.tablesorter-grey tbody>tr.even.hover>td,.tablesorter-grey tbody>tr.even:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-grey tbody>tr.even:hover+tr.tablesorter-childRow>td,.tablesorter-grey tbody>tr.even:hover>td,.tablesorter-grey tbody>tr.hover>td,.tablesorter-grey tbody>tr:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-grey tbody>tr:hover+tr.tablesorter-childRow>td,.tablesorter-grey tbody>tr:hover>td{background-color:#134b78}.tablesorter-grey tbody>tr.odd.hover>td,.tablesorter-grey tbody>tr.odd:hover+tr.tablesorter-childRow+tr.tablesorter-childRow>td,.tablesorter-grey tbody>tr.odd:hover+tr.tablesorter-childRow>td,.tablesorter-grey tbody>tr.odd:hover>td{background-color:#134b78}.tablesorter-grey .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-grey tbody tr.odd>td{background-color:#5e5e5e}.tablesorter-grey tbody tr.even>td{background-color:#6d6d6d}.tablesorter-grey td.primary,.tablesorter-grey tr.odd td.primary{color:#ddd;background-color:#165388}.tablesorter-grey tr.even td.primary{color:#ddd;background-color:#195c93}.tablesorter-grey td.secondary,.tablesorter-grey tr.odd td.secondary{color:#ddd;background-color:#185c9a}.tablesorter-grey tr.even td.secondary{color:#ddd;background-color:#1d67a5}.tablesorter-grey td.tertiary,.tablesorter-grey tr.odd td.tertiary{color:#ddd;background-color:#1b67ad}.tablesorter-grey tr.even td.tertiary{color:#ddd;background-color:#2073b7}.tablesorter-grey>caption{background-color:#fff}.tablesorter-grey .tablesorter-filter-row{background-color:#3c3c3c}.tablesorter-grey .tablesorter-filter-row td{background-color:#3c3c3c;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-grey .tablesorter-filter-row .disabled{opacity:.5;cursor:not-allowed}.tablesorter-grey .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-grey .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter-grey input.tablesorter-filter,.tablesorter-grey select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#6d6d6d;border:1px solid #555;color:#ddd;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.ice.min.css b/modules/pdproductattributeslist/views/css/theme.ice.min.css new file mode 100644 index 00000000..490ad259 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.ice.min.css @@ -0,0 +1 @@ +.tablesorter-ice{width:100%;background-color:#fff;margin:10px 0 15px;text-align:left;border-spacing:0;border:#ccc 1px solid;border-width:1px 0 0 1px}.tablesorter-ice td,.tablesorter-ice th{border:#ccc 1px solid;border-width:0 1px 1px 0}.tablesorter-ice th,.tablesorter-ice thead td{font:12px/18px Arial,Sans-serif;color:#555;background-color:#f6f8f9;border-collapse:collapse;padding:4px;text-shadow:0 1px 0 rgba(255,255,255,.7)}.tablesorter-ice tbody td,.tablesorter-ice tfoot td,.tablesorter-ice tfoot th{padding:4px;vertical-align:top}.tablesorter-ice .header,.tablesorter-ice .tablesorter-header{background-color:#f6f8f9;background-position:center right;background-repeat:no-repeat;background-image:url(data:image/gif;base64,R0lGODlhDAAMAMQAAAJEjAJCiwJBigJAiANFjgNGjgNEjQRIkQRHkANIkAVMlAVQmAZWnQZUnAdYoAhdpAhZoAlhqQlepQliqQppsApmrQxutgtutQtutAxwtwxwtg1yug1zugxtsw1yuP8A/yH5BAEAAB8ALAAAAAAMAAwAAAUx4Cd+3GiOW4ado2d9VMVm1xg9ptadTsP+QNZEcjoQTBDGCAFgLRSfQgCYMAiCn8EvBAA7);padding:4px 20px 4px 4px;white-space:normal;cursor:pointer}.tablesorter-ice .headerSortUp,.tablesorter-ice .tablesorter-headerAsc,.tablesorter-ice .tablesorter-headerSortUp{color:#333;background-color:#ebedee;background-position:center right;background-repeat:no-repeat;background-image:url(data:image/gif;base64,R0lGODlhDAAMANUAAAJCiwNHkANFjgNEjQRIkQNJkQRMlARKkwRKkgVPlwZSmgdaogdYnwhfpghcowlhqgliqglgqAlgpwljqwporwpmrQplrAtsswtqsgtrsgtqsQxttAtvtQtttAxyuQxwtwxxtwxvtg10uw1zuQ1xuP8A/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACUALAAAAAAMAAwAAAY6wJKwJBoahyNQ6Dj0fDoZCpPEuWgqk4jxs8FQLI+Gg8Esm5kQydFQMC7IwkOAqUiUCAIzIjA4lwBlQQA7)}.tablesorter-ice .headerSortDown,.tablesorter-ice .tablesorter-headerDesc,.tablesorter-ice .tablesorter-headerSortDown{color:#333;background-color:#ebedee;background-position:center right;background-repeat:no-repeat;background-image:url(data:image/gif;base64,R0lGODlhDAAMANUAAAE/iAJBigNFjgNEjQNFjQNDiwRHkQRHjwNHjwROlgRMlQRMlARJkgRKkgZQmAVPlgZWnQZSmgZRmAdXoAdXnwdUnAdbogdZoQhbowlhqAlepglkrAliqQtstAtqsQxyugxyuQxwuAxxuAxxtwxwtgxvtQ10vA12vA10u/8A/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACkALAAAAAAMAAwAAAY6wJQwdRoah6bP6DhEiVIdDxNEGm4yxlDpiJkwv2AmR2OhVCSJBsJ4gUQeCwOB6VAwBAXwYRAIpwBfQQA7)}.tablesorter-ice thead .sorter-false{background-image:none;cursor:default;padding:4px}.tablesorter-ice tfoot .tablesorter-headerAsc,.tablesorter-ice tfoot .tablesorter-headerDesc,.tablesorter-ice tfoot .tablesorter-headerSortDown,.tablesorter-ice tfoot .tablesorter-headerSortUp{background-color:#ebedee}.tablesorter-ice td{color:#333}.tablesorter-ice tbody>tr.even:hover>td,.tablesorter-ice tbody>tr.hover>td,.tablesorter-ice tbody>tr.odd:hover>td,.tablesorter-ice tbody>tr:hover>td{background-color:#ebf2fa}.tablesorter-ice .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-ice tr.odd>td{background-color:#dfdfdf}.tablesorter-ice tr.even>td{background-color:#efefef}.tablesorter-ice td.primary,.tablesorter-ice tr.odd td.primary{background-color:#9ae5e5}.tablesorter-ice tr.even td.primary{background-color:#c2f0f0}.tablesorter-ice td.secondary,.tablesorter-ice tr.odd td.secondary{background-color:#c2f0f0}.tablesorter-ice tr.even td.secondary{background-color:#d5f5f5}.tablesorter-ice td.tertiary,.tablesorter-ice tr.odd td.tertiary{background-color:#d5f5f5}.tablesorter-ice tr.even td.tertiary{background-color:#ebfafa}.tablesorter-ice.containsStickyHeaders thead tr:nth-child(1) td,.tablesorter-ice.containsStickyHeaders thead tr:nth-child(1) th{border-top:#ccc 1px solid}.tablesorter-ice>caption{background-color:#fff}.tablesorter-ice .tablesorter-filter-row{background-color:#eee}.tablesorter-ice .tablesorter-filter-row td{background-color:#eee;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-ice .tablesorter-filter-row .disabled{opacity:.5;cursor:not-allowed}.tablesorter-ice .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-ice .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter-ice input.tablesorter-filter,.tablesorter-ice select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.jui.min.css b/modules/pdproductattributeslist/views/css/theme.jui.min.css new file mode 100644 index 00000000..4b674220 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.jui.min.css @@ -0,0 +1 @@ +.tablesorter-jui{width:100%;border-collapse:separate;border-spacing:2px;margin:10px 0 15px;padding:5px;font-size:.8em}.tablesorter-jui tfoot td,.tablesorter-jui tfoot th,.tablesorter-jui thead td,.tablesorter-jui thead th{position:relative;background-repeat:no-repeat;background-position:right center;font-weight:700!important;border-width:1px!important;text-align:left;padding:8px}.tablesorter-jui .header,.tablesorter-jui .tablesorter-header{cursor:pointer;white-space:normal}.tablesorter-jui .tablesorter-header-inner{padding-right:20px}.tablesorter-jui thead tr th .ui-icon{position:absolute;right:3px;top:50%;margin-top:-8px}.tablesorter-jui thead .sorter-false{cursor:default}.tablesorter-jui thead tr .sorter-false .ui-icon{display:none}.tablesorter-jui tfoot td,.tablesorter-jui tfoot th{font-weight:400!important;font-size:.9em;padding:2px}.tablesorter-jui td{padding:4px;vertical-align:top}.tablesorter-jui tbody>tr.hover>td,.tablesorter-jui tbody>tr:hover>td{opacity:.7}.tablesorter-jui .tablesorter-processing .tablesorter-header-inner{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-jui tr.ui-state-default{background-image:none;font-weight:400}.tablesorter-jui .tablesorter-processing{background-color:#ddd;background-color:rgba(255,255,255,.8)}.tablesorter-jui>caption{border:0}.tablesorter-jui .tablesorter-filter-row{background-color:transparent}.tablesorter-jui .tablesorter-filter-row td{background-color:transparent;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-jui .tablesorter-filter-row .disabled{opacity:.5;cursor:not-allowed}.tablesorter-jui .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-jui .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter-jui input.tablesorter-filter,.tablesorter-jui select.tablesorter-filter{width:98%;height:auto;margin:0;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.materialize.min.css b/modules/pdproductattributeslist/views/css/theme.materialize.min.css new file mode 100644 index 00000000..ba3488bb --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.materialize.min.css @@ -0,0 +1 @@ +.tablesorter-materialize{width:100%}.tablesorter-materialize tfoot td,.tablesorter-materialize tfoot th,.tablesorter-materialize thead td,.tablesorter-materialize thead th{font:14px/20px Arial,Sans-serif;font-weight:700;padding:4px;margin:0 0 18px;background-color:#eee}.tablesorter-materialize .tablesorter-header{cursor:pointer}.tablesorter-materialize .sorter-false{cursor:default}.tablesorter-materialize .tablesorter-header-inner{position:relative;padding:4px 18px 4px 4px}.tablesorter-materialize thead .tablesorter-header{background-repeat:no-repeat;background-position:center right;padding:4px 18px 4px 4px;white-space:normal;cursor:pointer}.tablesorter-materialize thead .tablesorter-headerUnSorted{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDI0IDE2Ij48cGF0aCBkPSJNMTUgOCAxIDggOCAwek0xNSA5IDEgOSA4IDE2eiIgZmlsbD0iIzIyMiIvPjwvc3ZnPg==)}.tablesorter-materialize thead .tablesorter-headerAsc{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDI0IDE2Ij48cGF0aCBkPSJNMTUgMTEgMSAxMSA4IDN6IiBmaWxsPSIjMjIyIi8+PC9zdmc+)}.tablesorter-materialize thead .tablesorter-headerDesc{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDI0IDE2Ij48cGF0aCBkPSJNMTUgNiAxIDYgOCAxM3oiIGZpbGw9IiMyMjIiLz48L3N2Zz4=)}.tablesorter-materialize-dark thead .tablesorter-headerUnSorted{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDI0IDE2Ij48cGF0aCBkPSJNMTUgOCAxIDggOCAwek0xNSA5IDEgOSA4IDE2eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==)}.tablesorter-materialize-dark thead .tablesorter-headerAsc{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDI0IDE2Ij48cGF0aCBkPSJNMTUgMTEgMSAxMSA4IDN6IiBmaWxsPSIjZmZmIi8+PC9zdmc+)}.tablesorter-materialize-dark thead .tablesorter-headerDesc{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDI0IDE2Ij48cGF0aCBkPSJNMTUgNiAxIDYgOCAxM3oiIGZpbGw9IiNmZmYiLz48L3N2Zz4=)}.tablesorter-materialize>tbody>tr.odd>td,.tablesorter-materialize>tbody>tr.tablesorter-hasChildRow.odd:hover~tr.tablesorter-hasChildRow.odd~.tablesorter-childRow.odd>td{background-color:#f9f9f9}.tablesorter-materialize>tbody>tr.even:hover>td,.tablesorter-materialize>tbody>tr.hover>td,.tablesorter-materialize>tbody>tr.odd:hover>td,.tablesorter-materialize>tbody>tr.tablesorter-hasChildRow.even:hover~.tablesorter-childRow.even>td,.tablesorter-materialize>tbody>tr.tablesorter-hasChildRow.odd:hover~.tablesorter-childRow.odd>td{background-color:#f5f5f5}.tablesorter-materialize>tbody>tr.even>td,.tablesorter-materialize>tbody>tr.tablesorter-hasChildRow.even:hover~tr.tablesorter-hasChildRow.even~.tablesorter-childRow.even>td{background-color:#fff}.tablesorter-materialize .tablesorter-processing{background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=);background-position:center center!important;background-repeat:no-repeat!important}.tablesorter-materialize>.caption{background-color:#fff}.tablesorter-materialize .tablesorter-filter-row input.tablesorter-filter,.tablesorter-materialize .tablesorter-filter-row select.tablesorter-filter{width:98%;margin:0;padding:4px 6px;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter-materialize .tablesorter-filter-row .tablesorter-filter.disabled{background-color:#eee;color:#555;cursor:not-allowed;border:1px solid #ccc;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.075) inset;box-sizing:border-box;transition:height .1s ease}.tablesorter-materialize .tablesorter-filter-row{background-color:#efefef}.tablesorter-materialize .tablesorter-filter-row td{background-color:#efefef;line-height:normal;text-align:center;padding:4px 6px;vertical-align:middle;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-materialize .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0}.tablesorter-materialize .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter .filtered{display:none}.tablesorter-materialize .tablesorter-pager select{padding:4px 6px;display:inline-block;width:auto}.tablesorter-materialize .tablesorter-pager .pagedisplay{border:0}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/theme.metro-dark.min.css b/modules/pdproductattributeslist/views/css/theme.metro-dark.min.css new file mode 100644 index 00000000..f406edb0 --- /dev/null +++ b/modules/pdproductattributeslist/views/css/theme.metro-dark.min.css @@ -0,0 +1 @@ +.tablesorter-metro-dark{width:100%;font:12px/18px 'Segoe UI Semilight','Open Sans',Verdana,Arial,Helvetica,sans-serif;color:#000;background-color:#333;border-spacing:0;margin:10px 0 15px;text-align:left}.tablesorter-metro-dark caption.dark-row,.tablesorter-metro-dark tr.dark-row td,.tablesorter-metro-dark tr.dark-row th{background-color:#222;color:#fff;padding:2px;text-align:left;font-size:14px}.tablesorter-metro-dark caption,.tablesorter-metro-dark tfoot td,.tablesorter-metro-dark tfoot th,.tablesorter-metro-dark th,.tablesorter-metro-dark thead td{font-weight:300;font-size:15px;color:#ddd;background-color:#333;padding:4px}.tablesorter-metro-dark .header,.tablesorter-metro-dark .tablesorter-header{background-image:url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAGFBMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u5jNePWAAAACHRSTlMAMxIHKwEgMWD59H4AAABSSURBVAjXY2BgYFJgAAHzYhDJ6igSAKTYBAUTgJSioKAQAwNzoaCguAFDiCAQuDIkgigxBgiA8cJAVCpQt6AgSL+JoKAzA0gjUBsQqBcBCYhFAAE/CV4zeSzxAAAAAElFTkSuQmCC);background-position:right 5px center;background-repeat:no-repeat;cursor:pointer;white-space:normal}.tablesorter-metro-dark .tablesorter-header-inner{padding:0 18px 0 4px}.tablesorter-metro-dark thead .headerSortUp,.tablesorter-metro-dark thead .tablesorter-headerAsc,.tablesorter-metro-dark thead .tablesorter-headerSortUp{background-image:url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u5meJAOAAAACnRSTlMAMwsqXt+gIBUGxGoDMAAAAFlJREFUCNctzC0SQAAUReEzGNQ3AlHRiSRZFCVZYgeswRL8hLdK7834wj3tAlGP6y7fYHpKS6w6WwbVG0I1NZVnZPG8/DYxOYlnhUYkA06R1s9ESsxR4NIdPhkPFDFYuEnMAAAAAElFTkSuQmCC)}.tablesorter-metro-dark thead .headerSortDown,.tablesorter-metro-dark thead .tablesorter-headerDesc,.tablesorter-metro-dark thead .tablesorter-headerSortDown{background-image:url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAALVBMVEUAAADu7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7u7i0NViAAAADnRSTlMAMiweCQITTvDctZZqaTlM310AAABcSURBVAjXY2BgYEtgAAFHERDJqigUAKSYBQUNgFSioKAYAwOLIBA4MASBKFUGQxAlzAAF+94BwWuGKBC1lIFl3rt3Lx0YGCzevWsGSjK9e6cAUlT3HKyW9wADAwDRrBiDy6bKzwAAAABJRU5ErkJggg==)}.tablesorter-metro-dark thead .sorter-false{background-image:none;cursor:default;padding:4px}.tablesorter-metro-dark td{background-color:#fff;padding:4px;vertical-align:top}.tablesorter-metro-dark tbody>tr.even:hover>td,.tablesorter-metro-dark tbody>tr.hover>td,.tablesorter-metro-dark tbody>tr.odd:hover>td,.tablesorter-metro-dark tbody>tr:hover>td{background-color:#bbb;color:#000}.tablesorter-metro-dark .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}.tablesorter-metro-dark .tablesorter-pager button{background-color:#444;color:#eee;border:#555 1px solid;cursor:pointer}.tablesorter-metro-dark .tablesorter-pager button:hover{background-color:#555}.tablesorter-metro-dark tr.odd>td{background-color:#eee}.tablesorter-metro-dark tr.even>td{background-color:#fff}.tablesorter-metro-dark tr.odd td.primary{background-color:#bfbfbf}.tablesorter-metro-dark td.primary,.tablesorter-metro-dark tr.even td.primary{background-color:#d9d9d9}.tablesorter-metro-dark tr.odd td.secondary{background-color:#d9d9d9}.tablesorter-metro-dark td.secondary,.tablesorter-metro-dark tr.even td.secondary{background-color:#e6e6e6}.tablesorter-metro-dark tr.odd td.tertiary{background-color:#e6e6e6}.tablesorter-metro-dark td.tertiary,.tablesorter-metro-dark tr.even td.tertiary{background-color:#f2f2f2}.tablesorter-metro-dark .tablesorter-filter-row{background-color:#eee}.tablesorter-metro-dark .tablesorter-filter-row td{background-color:#eee;line-height:normal;text-align:center;-webkit-transition:line-height .1s ease;-moz-transition:line-height .1s ease;-o-transition:line-height .1s ease;transition:line-height .1s ease}.tablesorter-metro-dark .tablesorter-filter-row .disabled{opacity:.5;cursor:not-allowed}.tablesorter-metro-dark .tablesorter-filter-row.hideme td{padding:2px;margin:0;line-height:0;cursor:pointer}.tablesorter-metro-dark .tablesorter-filter-row.hideme *{height:1px;min-height:0;border:0;padding:0;margin:0;opacity:0}.tablesorter-metro-dark input.tablesorter-filter,.tablesorter-metro-dark select.tablesorter-filter{width:95%;height:auto;margin:0;padding:4px;background-color:#fff;border:1px solid #bbb;color:#333;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height .1s ease;-moz-transition:height .1s ease;-o-transition:height .1s ease;transition:height .1s ease}.tablesorter .filtered{display:none}.tablesorter .tablesorter-errorRow td{text-align:center;cursor:pointer;background-color:#e6bf99} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/css/widget.grouping.min.css b/modules/pdproductattributeslist/views/css/widget.grouping.min.css new file mode 100644 index 00000000..0beb435a --- /dev/null +++ b/modules/pdproductattributeslist/views/css/widget.grouping.min.css @@ -0,0 +1 @@ +tr.group-header td{background:#eee}.group-name{text-transform:uppercase;font-weight:700}.group-count{color:#999}.group-hidden{display:none!important}.group-header,.group-header td{user-select:none;-moz-user-select:none}tr.group-header td i{display:inline-block;width:0;height:0;border-top:4px solid transparent;border-bottom:4px solid #888;border-right:4px solid #888;border-left:4px solid transparent;margin-right:7px;user-select:none;-moz-user-select:none}tr.group-header.collapsed td i{border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #888;border-right:0;margin-right:10px} \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/index.php b/modules/pdproductattributeslist/views/index.php new file mode 100644 index 00000000..93974122 --- /dev/null +++ b/modules/pdproductattributeslist/views/index.php @@ -0,0 +1,35 @@ + +* @copyright 2007-2013 PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/modules/pdproductattributeslist/views/js/extras/jquery.dragtable.mod.min.js b/modules/pdproductattributeslist/views/js/extras/jquery.dragtable.mod.min.js new file mode 100644 index 00000000..2d6a0fa5 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/extras/jquery.dragtable.mod.min.js @@ -0,0 +1,5 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! Dragtable Mod for TableSorter - updated 10/31/2015 (v2.24.0) */ +!function(T){"use strict";var u=T.tablesorter,t=(u.dragtable={create:function(t){var a,e=t.originalTable.el,i=t.options.dragHandle.replace(".","");e.children("thead").children().children("th,td").each(function(){var e=T(this);e.find(t.options.dragHandle+",."+i+"-disabled").length||(a=!t.options.dragaccept||e.hasClass(t.options.dragaccept.replace(".","")),e.wrapInner('
').prepend('
'))})},start:function(e){(e=T(e)[0])&&e.config&&(e.config.widgetOptions.dragtableLast={search:T(e).data("lastSearch"),order:u.dragtable.getOrder(e)})},update:function(e){var a,i,t=e.originalTable,r=t.el[0],n=T(r),o=r.config,l=o&&o.widgetOptions,s=t.startIndex-1,t=t.endIndex-1,d=u.dragtable.getOrder(r)||[],c=u.hasWidget(n,"filter")||!1,h=l&&l.dragtableLast||{},b=[];(h.order||[]).join("")!==d.join("")&&(o.sortList.length&&(a=T.extend(!0,[],o.sortList),T.each(d,function(e,t){i=u.isValueInArray(parseInt(t,10),a),t!==h.order[e]&&0<=i&&(o.sortList[i][0]=e)})),c&&T.each(h.search||[],function(e){b[e]=h.search[d[e]]}),(r=!!u.hasWidget(o.$table,"editable")&&l.editable_columnsArray)&&(o.widgetOptions.editable_columnsArray=u.dragtable.reindexArrayItem(r,s,t)),(r=!!u.hasWidget(o.$table,"math")&&l.math_ignore)&&(o.widgetOptions.math_ignore=u.dragtable.reindexArrayItem(r,s,t)),(r=!!u.hasWidget(o.$table,"resizable")&&l.resizable_widths)&&(l.resizable_widths=u.dragtable.moveArrayItem(r,s,t)),u.updateAll(o,!1,function(){c&&setTimeout(function(){o.lastCombinedFilter=null,o.$table.data("lastSearch",b),u.setFilters(n,b),T.isFunction(e.options.tablesorterComplete)&&e.options.tablesorterComplete(o.table)},10)}))},getOrder:function(e){return T(e).children("thead").children("."+u.css.headerRow).children().map(function(){return T(this).attr("data-column")}).get()||[]},startColumnMove:function(e){var t,a=e.el[0].config,i=e.startIndex-1,r=e.endIndex-1,e=a.columns-1,n=r!=e&&r<=i,e=a.$table.children().children("tr");a.debug&&console.log("Inserting column "+i+(n?" before":" after")+" column "+r),e.each(function(){(t=T(this).children()).eq(i)[n?"insertBefore":"insertAfter"](t.eq(r))}),(t=a.$table.children("colgroup").children()).eq(i)[n?"insertBefore":"insertAfter"](t.eq(r))},swapNodes:function(e,t){for(var a,i,r=e.length,n=0;n'),p=[],f=h.eq(0).children("th, td").length,r=0;r"+(u?'':"")+"",h.each(function(e){p[r]+=""+m[e].outerHTML+""}),p[r]+="",m=b.children(":nth-child("+(r+1)+")"),(m=1"+this.outerHTML+""}),p[r]+="",t.options.excludeFooter||(p[r]+=""+c.filter("tfoot").children("tr:visible").children()[r].outerHTML+""),p[r]+="
")}g+=p.join("")+"",this.sortableTable.el=this.originalTable.el.before(g).prev(),this.sortableTable.el.find("> li > table").each(function(e){T(this).css("width",s[e]+"px")}),this.sortableTable.selectedHandle=this.sortableTable.el.find("th .dragtable-handle-selected");var g=this.options.dragaccept?"li:has("+this.options.dragaccept+")":"li",e=(this.sortableTable.el.sortable({items:g,stop:this._rearrangeTable(),revert:this.options.revert,tolerance:this.options.tolerance,containment:this.options.containment,cursor:this.options.cursor,cursorAt:this.options.cursorAt,distance:this.options.distance,axis:this.options.axis}),this.originalTable.startIndex=T(e.target).closest("th,td").prevAll().length+1,this.options.beforeMoving(this.originalTable,this.sortableTable),this.sortableTable.movingRow=this.sortableTable.el.children("li:nth-child("+this.originalTable.startIndex+")"),g=T(''),T(document.head).append(g),T(document.body).attr("onselectstart","return false;").attr("unselectable","on"),window.getSelection?window.getSelection().removeAllRanges():document.selection.empty(),this.sortableTable.movingRow.trigger(T.extend(T.Event(e.type),{which:1,clientX:e.clientX,clientY:e.clientY,pageX:e.pageX,pageY:e.pageY,screenX:e.screenX,screenY:e.screenY})),this.sortableTable.el.find(".ui-sortable-placeholder"));0
')},bindTo:{},_create:function(){var t=this;t.originalTable={el:t.element,selectedHandle:T(),sortOrder:{},startIndex:0,endIndex:0},u.dragtable.create(t),t.bindTo="> thead > tr > "+(t.options.dragaccept||"th, td"),t.element.find(t.bindTo).find(t.options.dragHandle).length&&(t.bindTo+=" "+t.options.dragHandle),T.isFunction(t.options.restoreState)?t.options.restoreState(t.originalTable):t._restoreState(t.options.restoreState),t.originalTable.el.on("mousedown.dragtable",t.bindTo,function(e){1===e.which&&(u.dragtable.start(t.originalTable.el),!1!==t.options.beforeStart(t.originalTable))&&(clearTimeout(t.downTimer),t.downTimer=setTimeout(function(){t.originalTable.selectedHandle=T(t),t.originalTable.selectedHandle.addClass("dragtable-handle-selected"),t._generateSortable(e)},t.options.clickDelay))}).on("mouseup.dragtable",t.options.dragHandle,function(){clearTimeout(t.downTimer)})},redraw:function(){this.destroy(),this._create()},destroy:function(){this.originalTable.el.off("mousedown.dragtable mouseup.dragtable",this.bindTo),T.Widget.prototype.destroy.apply(this,arguments)}}),T(document.body).attr("onselectstart")),a=T(document.body).attr("unselectable")}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/extras/jquery.metadata.min.js b/modules/pdproductattributeslist/views/js/extras/jquery.metadata.min.js new file mode 100644 index 00000000..09455cbb --- /dev/null +++ b/modules/pdproductattributeslist/views/js/extras/jquery.metadata.min.js @@ -0,0 +1,2 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +!function($){$.extend({metadata:{defaults:{type:"class",name:"metadata",cre:/(\{.*\})/,single:"metadata"},setType:function(t,e){this.defaults.type=t,this.defaults.name=e},get:function(elem,opts){var data,m,e,attr,settings=$.extend({},this.defaults,opts);if(settings.single.length||(settings.single="metadata"),data=$.data(elem,settings.single),!data){if(data="{}","class"===settings.type)m=settings.cre.exec(elem.className),m&&(data=m[1]);else if("elem"===settings.type){if(!elem.getElementsByTagName)return;e=elem.getElementsByTagName(settings.name),e.length&&(data=$.trim(e[0].innerHTML))}else void 0!==elem.getAttribute&&(attr=elem.getAttribute(settings.name),attr)&&(data=attr);data.indexOf("{")<0&&(data="{"+data+"}"),data=eval("("+data+")"),$.data(elem,settings.single,data)}return data}}}),$.fn.metadata=function(t){return $.metadata.get(this[0],t)}}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/extras/jquery.tablesorter.pager.min.js b/modules/pdproductattributeslist/views/js/extras/jquery.tablesorter.pager.min.js new file mode 100644 index 00000000..b7334541 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/extras/jquery.tablesorter.pager.min.js @@ -0,0 +1,6 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! +* tablesorter (FORK) pager plugin +* updated 2020-03-03 (v2.31.3) +*/ +!function(E){"use strict";var L=E.tablesorter;E.extend({tablesorterPager:new function(){this.defaults={container:null,ajaxUrl:null,customAjaxUrl:function(e,t){return t},ajaxError:null,ajaxObject:{dataType:"json"},processAjaxOnInit:!0,ajaxProcessing:function(e){return e},output:"{startRow} to {endRow} of {totalRows} rows",updateArrows:!0,page:0,pageReset:0,size:10,maxOptionSize:20,savePages:!0,storageKey:"tablesorter-pager",fixedHeight:!1,countChildRows:!1,removeRows:!1,cssFirst:".first",cssPrev:".prev",cssNext:".next",cssLast:".last",cssGoto:".gotoPage",cssPageDisplay:".pagedisplay",cssPageSize:".pagesize",cssErrorRow:"tablesorter-errorRow",cssDisabled:"disabled",totalRows:0,totalPages:0,filteredRows:0,filteredPages:0,ajaxCounter:0,currentFilters:[],startRow:0,endRow:0,$size:null,last:{}};function l(e,t,a,i,s,r){if("function"==typeof a.ajaxProcessing){t.config.$tbodies.eq(0).empty();var o,n,l,g,c,d,p,f,u,h,w,b,R=t.config,z=R.$table,x="",e=a.ajaxProcessing(e,t,i)||[0,[]];if(L.showError(t),r)L.debug(R,"pager")&&console.error("Pager >> Ajax Error",i,s,r),L.showError(t,i,s,r),R.$tbodies.eq(0).children("tr").detach(),a.totalRows=0;else{if(E.isArray(e)?(s=e[(i=isNaN(e[0])&&!isNaN(e[1]))?1:0],a.totalRows=isNaN(s)?a.totalRows||0:s,R.totalRows=R.filteredRows=a.filteredRows=a.totalRows,h=0!==a.totalRows&&e[i?0:1]||[],u=e[2]):(a.ajaxData=e,R.totalRows=a.totalRows=e.total,R.filteredRows=a.filteredRows=void 0!==e.filteredRows?e.filteredRows:e.total,u=e.headers,h=e.rows||[]),w=h&&h.length,h instanceof E)a.processAjaxOnInit&&(R.$tbodies.eq(0).empty(),R.$tbodies.eq(0).append(h));else if(w){for(o=0;o",n=0;n"+h[o][n]+"";x+=""}a.processAjaxOnInit&&R.$tbodies.eq(0).html(x)}if(a.processAjaxOnInit=!0,u)for(c=(l=z.hasClass("hasStickyHeaders"))?R.widgetOptions.$sticky.children("thead:first").children("tr:not(."+R.cssIgnoreRow+")").children():"",g=z.find("tfoot tr:first").children(),b=(d=R.$headers.filter("th ")).length,n=0;n> Triggering pagerChange"),z.triggerHandler("pagerChange",a),L.applyWidget(t),j(t,a,!0)},0)})}a.initialized||F(t,a)}function d(e,t){t.page=0,S(e,t)}function u(e,t){t.page=$(e,t)-1,S(e,t)}function p(e,t){t.page++;var a=$(e,t)-1;t.page>=a&&(t.page=a),S(e,t)}function f(e,t){t.page--,t.page<=0&&(t.page=0),S(e,t)}function h(e,t,a){var i,s,r=e.config;t.$container.find(t.cssGoto+","+t.cssPageSize+",.ts-startRow, .ts-page").removeClass(t.cssDisabled).removeAttr("disabled").each(function(){this.ariaDisabled=!1}),t.isDisabled=!1,t.page=E.data(e,"pagerLastPage")||t.page||0,i=(s=t.$container.find(t.cssPageSize)).find("option[selected]").val(),t.size=E.data(e,"pagerLastSize")||N(t,i,"get"),t.totalPages="all"===t.size?1:Math.ceil($(e,t)/t.size),A(e,t.size,t),e.id&&!r.$table.attr("aria-describedby")&&((i=(s=t.$container.find(t.cssPageDisplay)).attr("id"))||(i=e.id+"_pager_info",s.attr("id",i)),r.$table.attr("aria-describedby",i)),P(e,t),a&&(L.update(r),A(e,t.size,t),S(e,t),m(e,t),L.debug(r,"pager"))&&console.log("Pager >> Enabled")}var w=this,b=function(e,t,a){var i="addClass",s="removeClass",r=t.cssDisabled,a=!!a,o=a||0===t.page,e=$(e,t),n=a||t.page===e-1||0===e;t.updateArrows&&((a=t.$container.find(t.cssFirst+","+t.cssPrev))[o?i:s](r),a.each(function(){this.ariaDisabled=o}),(a=t.$container.find(t.cssNext+","+t.cssLast))[n?i:s](r),a.each(function(){this.ariaDisabled=n}))},R=function(e,t){var a,i,s,r=e.config,e=r.$table.hasClass("hasFilters");if(e&&!t.ajax)if(L.isEmptyObject(r.cache))t.filteredRows=t.totalRows=r.$tbodies.eq(0).children("tr").not(t.countChildRows?"":"."+r.cssChildRow).length;else for(t.filteredRows=0,s=(a=r.cache[0].normalized).length,i=0;io.filteredRows&&t,o.page=a?o.pageReset||0:o.page,o.startRow=!a&&0===o.filteredRows?0:p*o.page+1,o.endRow=Math.min(o.filteredRows,o.totalRows,p*(o.page+1)),i=o.$container.find(o.cssPageDisplay),g="function"==typeof o.output?o.output(e,o):(g=i.attr("data-pager-output"+(o.filteredRows'):1'+l[r]+"";s.html(a).val(o.page+1)}i.length&&(i["INPUT"===i[0].nodeName?"val":"html"](g),i.find(".ts-startRow, .ts-page").unbind("change"+d).bind("change"+d,function(){var e=E(this).val(),e=E(this).hasClass("ts-startRow")?Math.floor(e/p)+1:e;c.$table.triggerHandler("pageSet"+d,[e])}))}b(e,o),x(e,o),o.initialized&&!1!==t&&(L.debug(c,"pager")&&console.log("Pager >> Triggering pagerComplete"),c.$table.triggerHandler("pagerComplete",o),o.savePages)&&L.storage&&L.storage(e,o.storageKey,{page:o.page,size:p===o.totalRows?"all":p})}},z=function(e,t){for(var a,i,s=$(e,t)||1,r=5*Math.ceil(s/t.maxOptionSize/5),o=s>t.maxOptionSize,e=t.page+1,n=r,l=s-r,g=[1],c=o?r:1;c<=s;)g[g.length]=c,c+=o?r:1;if(g[g.length]=s,o){for(a=[],s<(l=e+(i=Math.max(Math.floor(t.maxOptionSize/r)-1,5)))&&(l=s),c=n=(n=e-i)<1?1:n;c<=l;c++)a[a.length]=c;r/2<(e=(g=E.grep(g,function(e,t){return E.inArray(e,g)===t})).length)-(i=a.length)&&e+i>t.maxOptionSize&&(n=Math.floor(e/2)-Math.floor(i/2),Array.prototype.splice.apply(g,[n,i])),g=g.concat(a)}return g=E.grep(g,function(e,t){return E.inArray(e,g)===t}).sort(function(e,t){return e-t})},x=function(e,t){var a,i,s=e.config,r=s.$tbodies.eq(0);r.find("tr.pagerSavedHeightSpacer").remove(),t.fixedHeight&&!t.isDisabled&&(a=E.data(e,"pagerSavedHeight"))&&(i=0,1')},P=function(e,t){var a=e.config,i=a.$tbodies.eq(0);i.find("tr.pagerSavedHeightSpacer").remove(),i.children("tr:visible").length||i.append(' '),a=i.children("tr").eq(0).height()*("all"===t.size?t.totalRows:t.size),E.data(e,"pagerSavedHeight",a),x(e,t),E.data(e,"pagerLastSize",t.size)},v=function(e,t){if(!t.ajaxUrl){var a,i=0,s=e.config,r=s.$tbodies.eq(0).children("tr"),o=r.length,e="all"===t.size?t.totalRows:t.size,n=t.page*e,l=n+e,g=-1,c=0;for(t.cacheIndex=[],a=0;a> Ajax url = "+r);return r}(s,r),o=E(document),t=s.config,n=t.namespace+"pager";""!==e&&(t.showProcessing&&L.isProcessing(s,!0),o.bind("ajaxError"+n,function(e,t,a,i){l(null,s,r,t,a,i),o.unbind("ajaxError"+n)}),i=++r.ajaxCounter,r.last.ajaxUrl=e,r.ajaxObject.url=e,r.ajaxObject.success=function(e,t,a){i> Ajax initialized",r.ajaxObject),E.ajax(r.ajaxObject))},g=function(e,t,a){var i,s,r,o,n=E(e),l=e.config,g=L.debug(l,"pager"),c=l.$table.hasClass("hasFilters"),d=t&&t.length||0,p="all"===a.size?a.totalRows:a.size,f=a.page*p;if(d<1)g&&console.warn("Pager >> No rows for pager to render");else{if(a.page>=a.totalPages&&u(e,a),a.cacheIndex=[],a.isDisabled=!1,a.initialized&&(g&&console.log("Pager >> Triggering pagerChange"),n.triggerHandler("pagerChange",a)),a.removeRows){for(L.clearTableBody(e),i=L.processTbody(e,l.$tbodies.eq(0),!0),r=s=c?0:f,o=0;o> Triggering updateComplete"),n.triggerHandler("updateComplete",[e,!0]))}},y=function(e,t){var a,i,s;for(t.ajax?b(e,t,!0):(E.data(e,"pagerLastPage",t.page),E.data(e,"pagerLastSize",t.size),t.page=0,t.size=t.totalRows,t.totalPages=1,E(e).addClass("pagerDisabled").removeAttr("aria-describedby").find("tr.pagerSavedHeightSpacer").remove(),g(e,e.config.rowsCopy,t),t.isDisabled=!0,L.applyWidget(e),L.debug(e.config,"pager")&&console.log("Pager >> Disabled")),s=(i=t.$container.find(t.cssGoto+","+t.cssPageSize+", .ts-startRow, .ts-page")).length,a=0;a> Changing to page "+t.page),t.last={page:t.page,size:t.size,sortList:(i.sortList||[]).join(","),totalRows:t.totalRows,currentFilters:t.currentFilters||[],ajaxUrl:t.ajaxObject.url||"",optAjaxUrl:t.ajaxUrl||""},t.ajax?(t.processAjaxOnInit||L.isEmptyObject(t.initialRows)?n:(t.processAjaxOnInit=!0,o=t.initialRows,t.totalRows=void 0!==o.total?o.total:s&&console.error("Pager >> No initial total page set!")||0,t.filteredRows=void 0!==o.filtered?o.filtered:s&&console.error("Pager >> No initial filtered page set!")||0,F))(e,t):t.ajax||g(e,i.rowsCopy,t),E.data(e,"pagerLastPage",t.page),t.initialized&&!1!==a&&(s&&console.log("Pager >> Triggering pageMoved"),r.triggerHandler("pageMoved",t),L.applyWidget(e),e.isUpdating)&&(s&&console.log("Pager >> Triggering updateComplete"),r.triggerHandler("updateComplete",[e,!0]))))},$=function(e,t){return L.hasWidget(e,"filter")?Math.min(t.totalPages,t.filteredPages):t.totalPages},I=function(e,t){e=$(e,t)-1;return t.page=parseInt(t.page,10),(t.page<0||isNaN(t.page))&&(t.page=0),t.page>e&&0<=e&&(t.page=e),t.page},N=function(e,t,a){var i=parseInt(t,10)||e.size||e.settings.size||10;return e.initialized&&(/all/i.test(i+" "+t)||i===e.totalRows)?e.$container.find(e.cssPageSize+' option[value="all"]').length?"all":e.totalRows:"get"===a?i:e.size},A=function(e,t,a){a.size=N(a,t,"get"),a.$container.find(a.cssPageSize).val(a.size),E.data(e,"pagerLastPage",I(e,a)),E.data(e,"pagerLastSize",a.size),a.totalPages="all"===a.size?1:Math.ceil(a.totalRows/a.size),a.filteredPages="all"===a.size?1:Math.ceil(a.filteredRows/a.size)},F=function(e,t){t.initialized=!0,t.initializing=!1,L.debug(e.config,"pager")&&console.log("Pager >> Triggering pagerInitialized"),E(e).triggerHandler("pagerInitialized",t),L.applyWidget(e),j(e,t)},O=function(r,e){var s,o,i=r.config,t=i.widgetOptions,a=L.debug(i,"pager"),n=i.pager=E.extend(!0,{},E.tablesorterPager.defaults,e),l=i.$table,g=i.namespace+"pager",c=n.$container=E(n.container).addClass("tablesorter-pager").show();n.settings=E.extend(!0,{},E.tablesorterPager.defaults,e),a&&console.log("Pager >> Initializing"),n.oldAjaxSuccess=n.oldAjaxSuccess||n.ajaxObject.success,i.appender=w.appender,n.initializing=!0,n.savePages&&L.storage&&(e=L.storage(r,n.storageKey)||{},n.page=(isNaN(e.page)?n:e).page,n.size="all"===e.size?e.size:(isNaN(e.size)?n:e).size||n.setSize||10,A(r,n.size,n)),n.regexRows=new RegExp("("+(t.filter_filteredRow||"filtered")+"|"+i.selectorRemove.slice(1)+"|"+i.cssChildRow+")"),n.regexFiltered=new RegExp(t.filter_filteredRow||"filtered"),l.unbind("filterInit filterStart filterEnd sortEnd disablePager enablePager destroyPager updateComplete pageSize pageSet pageAndSize pagerUpdate refreshComplete ".split(" ").join(g+" ").replace(/\s+/g," ")).bind("filterInit filterStart ".split(" ").join(g+" "),function(e,t){if(n.currentFilters=E.isArray(t)?t:i.$table.data("lastSearch"),n.ajax&&"filterInit"===e.type)return S(r,n,!1);t=L.filter.equalFilters?L.filter.equalFilters(i,i.lastSearch,n.currentFilters):(i.lastSearch||[]).join("")!==(n.currentFilters||[]).join(""),"filterStart"!==e.type||!1===n.pageReset||t||(n.page=n.pageReset)}).bind("filterEnd sortEnd ".split(" ").join(g+" "),function(){n.currentFilters=i.$table.data("lastSearch"),(n.initialized||n.initializing)&&(i.delayInit&&i.rowsCopy&&0===i.rowsCopy.length&&C(r),j(r,n,!1),S(r,n,!1),L.applyWidget(r))}).bind("disablePager"+g,function(e){e.stopPropagation(),y(r,n)}).bind("enablePager"+g,function(e){e.stopPropagation(),h(r,n,!0)}).bind("destroyPager"+g,function(e){var t,a,i,s;e.stopPropagation(),e=n,a=(t=r).config,i=a.namespace+"pager",s=[e.cssFirst,e.cssPrev,e.cssNext,e.cssLast,e.cssGoto,e.cssPageSize].join(","),y(t,e),e.$container.hide().find(s).unbind(i),a.appender=null,a.$table.unbind(i),L.storage&&L.storage(t,e.storageKey,""),delete a.pager,delete a.rowsCopy}).bind("resetToLoadState"+g,function(e){var t;e.stopPropagation(),e=n,(t=r).config.pager=E.extend(!0,{},E.tablesorterPager.defaults,e.settings),O(t,e.settings)}).bind("updateComplete"+g,function(e,t,a){e.stopPropagation(),!t||a||n.ajax||(e=i.$tbodies.eq(0).children("tr").not(i.selectorRemove),n.totalRows=e.length-(n.countChildRows?0:e.filter("."+i.cssChildRow).length),n.totalPages="all"===n.size?1:Math.ceil(n.totalRows/n.size),e.length&&i.rowsCopy&&0===i.rowsCopy.length&&C(t),n.page>=n.totalPages&&u(t,n),v(t,n),P(t,n),j(t,n,!0))}).bind("pageSize refreshComplete ".split(" ").join(g+" "),function(e,t){e.stopPropagation(),A(r,N(n,t,"get"),n),S(r,n),v(r,n),j(r,n,!1)}).bind("pageSet pagerUpdate ".split(" ").join(g+" "),function(e,t){e.stopPropagation(),"pagerUpdate"===e.type&&(t=void 0===t?n.page+1:t,n.last.page=!0),n.page=(parseInt(t,10)||1)-1,S(r,n,!0),j(r,n,!1)}).bind("pageAndSize"+g,function(e,t,a){e.stopPropagation(),n.page=(parseInt(t,10)||1)-1,A(r,N(n,a,"get"),n),S(r,n,!0),v(r,n),j(r,n,!1)}),s=[n.cssFirst,n.cssPrev,n.cssNext,n.cssLast],o=[d,f,p,u],a&&!c.length&&console.warn('Pager >> "container" not found'),c.find(s.join(",")).attr("tabindex",0).unbind("click"+g).bind("click"+g,function(e){e.stopPropagation();var t,a=E(this),i=s.length;if(!a.hasClass(n.cssDisabled))for(t=0;t> "goto" selector not found'),(e=c.find(n.cssPageSize)).length?(e.find("option").removeAttr("selected"),e.unbind("change"+g).bind("change"+g,function(){var e;return E(this).hasClass(n.cssDisabled)||(e=E(this).val(),A(r,e,n),S(r,n),P(r,n)),!1})):a&&console.warn('Pager >> "size" selector not found'),n.initialized=!1,l.triggerHandler("pagerBeforeInitialized",n),h(r,n,!1),("string"==typeof n.ajaxUrl?(n.ajax=!0,i.widgetOptions.filter_serversideFiltering=!0,i.serverSideSorting=!0,S):(n.ajax=!1,L.appendCache(i,!0),m))(r,n),n.ajax||n.initialized||(n.initializing=!1,n.initialized=!0,A(r,n.size,n),S(r,n),a&&console.log("Pager >> Triggering pagerInitialized"),i.$table.triggerHandler("pagerInitialized",n),i.widgetOptions.filter_initialized&&L.hasWidget(r,"filter"))||j(r,n,!1),i.widgetInit.pager=!0};w.appender=function(e,t){var a=e.config,i=a.pager;i.ajax||(a.rowsCopy=t,i.totalRows=(i.countChildRows?a.$tbodies.eq(0).children("tr"):t).length,i.size=E.data(e,"pagerLastSize")||i.size||i.settings.size||10,i.totalPages="all"===i.size?1:Math.ceil(i.totalRows/i.size),g(e,t,i),j(e,i,!1))},w.construct=function(e){return this.each(function(){this.config&&this.hasInitialized&&O(this,e)})}}}),L.showError=function(e,t,a,i){function s(){r.$table.find("thead").find(r.selectorRemove).remove()}var e=E(e),r=e[0].config,o=r&&r.widgetOptions,n=r.pager&&r.pager.cssErrorRow||o&&o.pager_css&&o.pager_css.errorRow||"tablesorter-errorRow",l=typeof t,g=!0,c="";if(e.length){if("function"==typeof r.pager.ajaxError){if(!1===(g=r.pager.ajaxError(r,t,a,i)))return s();c=g}else if("function"==typeof o.pager_ajaxError){if(!1===(g=o.pager_ajaxError(r,t,a,i)))return s();c=g}if(""===c)if("object"==l)c=0===t.status?"Not connected, verify Network":404===t.status?"Requested page not found [404]":500===t.status?"Internal Server Error [500]":"parsererror"===i?"Requested JSON parse failed":"timeout"===i?"Time out error":"abort"===i?"Ajax Request aborted":"Uncaught error: "+t.statusText+" ["+t.status+"]";else{if("string"!=l)return s();c=t}E(/tr\>/.test(c)?c:''+c+"").click(function(){E(this).remove()}).appendTo(r.$table.find("thead:first")).addClass(n+" "+r.selectorRemove.slice(1)).attr({role:"alert","aria-live":"assertive"})}else console.error("tablesorter showError: no table parameter passed")},E.fn.extend({tablesorterPager:E.tablesorterPager.construct})}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/extras/semver-mod.min.js b/modules/pdproductattributeslist/views/js/extras/semver-mod.min.js new file mode 100644 index 00000000..f169e518 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/extras/semver-mod.min.js @@ -0,0 +1,2 @@ +/*! Modified semver.js for node.js (v4.3.3, 3/27/2015) */ +!function(){var n={exports:{}}.exports=b,c="object"==typeof process&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)?function(){var e=Array.prototype.slice.call(arguments,0);e.unshift("SEMVER"),console.log.apply(console,e)}:function(){},t=(n.SEMVER_SPEC_VERSION="2.0.0",256),i=Number.MAX_SAFE_INTEGER||9007199254740991,s=n.re=[],e=n.src=[],r=0,o=(r++,e[0]="0|[1-9]\\d*",r++,e[1]="[0-9]+",r++,e[2]="\\d*[a-zA-Z-][a-zA-Z0-9-]*",r++,e[3]="("+e[0]+")\\.("+e[0]+")\\.("+e[0]+")",r++,e[4]="("+e[1]+")\\.("+e[1]+")\\.("+e[1]+")",r++,e[5]="(?:"+e[0]+"|"+e[2]+")",r++,e[6]="(?:"+e[1]+"|"+e[2]+")",r++,e[7]="(?:-("+e[5]+"(?:\\."+e[5]+")*))",r++,e[8]="(?:-?("+e[6]+"(?:\\."+e[6]+")*))",r++,e[9]="[0-9A-Za-z-]+",r++,e[10]="(?:\\+("+e[9]+"(?:\\."+e[9]+")*))",r++),a="v?"+e[3]+e[7]+"?"+e[10]+"?",p=(e[o]="^"+a+"$","[v=\\s]*"+e[4]+e[8]+"?"+e[10]+"?"),u=r++,h=(e[u]="^"+p+"$",r++),f=(e[h]="((?:<|>)?=?)",r++,e[14]=e[1]+"|x|X|\\*",r++,e[15]=e[0]+"|x|X|\\*",r++),l=(e[f]="[v=\\s]*("+e[15]+")(?:\\.("+e[15]+")(?:\\.("+e[15]+")(?:"+e[7]+")?"+e[10]+"?)?)?",r++),m=(e[l]="[v=\\s]*("+e[14]+")(?:\\.("+e[14]+")(?:\\.("+e[14]+")(?:"+e[8]+")?"+e[10]+"?)?)?",r++),v=(e[m]="^"+e[h]+"\\s*"+e[f]+"$",r++),g=(e[v]="^"+e[h]+"\\s*"+e[l]+"$",r++,e[20]="(?:~>?)",r++,e[21]="(\\s*)"+e[20]+"\\s+",s[21]=new RegExp(e[21],"g"),r++),w=(e[g]="^"+e[20]+e[f]+"$",r++),y=(e[w]="^"+e[20]+e[l]+"$",r++,e[24]="(?:\\^)",r++,e[25]="(\\s*)"+e[24]+"\\s+",s[25]=new RegExp(e[25],"g"),r++),d=(e[y]="^"+e[24]+e[f]+"$",r++),D=(e[d]="^"+e[24]+e[l]+"$",r++,e[28]="^"+e[h]+"\\s*("+p+")$|^$",r++,e[29]="^"+e[h]+"\\s*("+a+")$|^$",r++,e[30]="(\\s*)"+e[h]+"\\s*("+p+"|"+e[f]+")",s[30]=new RegExp(e[30],"g"),r++,e[31]="^\\s*("+e[f]+")\\s+-\\s+("+e[f]+")\\s*$",r++,e[32]="^\\s*("+e[l]+")\\s+-\\s+("+e[l]+")\\s*$",+r);e[D]="(<|>)?=?\\s*\\*";for(var j=0;j<34;j++)c(j,e[j]),s[j]||(s[j]=new RegExp(e[j]));function E(e,r){if(e instanceof b)return e;if("string"!=typeof e)return null;if(e.length>t)return null;if(!(r?s[u]:s[o]).test(e))return null;try{return new b(e,r)}catch(e){return null}}function b(e,r){if(e instanceof b){if(e.loose===r)return e;e=e.version}else if("string"!=typeof e)throw new TypeError("Invalid Version: "+e);if(e.length>t)throw new TypeError("version is longer than "+t+" characters");if(!(this instanceof b))return new b(e,r);c("SemVer",e,r),this.loose=r;r=e.trim().match(r?s[u]:s[o]);if(!r)throw new TypeError("Invalid Version: "+e);if(this.raw=e,this.major=+r[1],this.minor=+r[2],this.patch=+r[3],this.major>i||this.major<0)throw new TypeError("Invalid major version");if(this.minor>i||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>i||this.patch<0)throw new TypeError("Invalid patch version");r[4]?this.prerelease=r[4].split(".").map(function(e){if(/^[0-9]+$/.test(e)){var r=+e;if(0<=r&&r'},b.prototype.toString=function(){return this.version},b.prototype.compare=function(e){return c("SemVer.compare",this.version,this.loose,e),e instanceof b||(e=new b(e,this.loose)),this.compareMain(e)||this.comparePre(e)},b.prototype.compareMain=function(e){return e instanceof b||(e=new b(e,this.loose)),$(this.major,e.major)||$(this.minor,e.minor)||$(this.patch,e.patch)},b.prototype.comparePre=function(e){if(e instanceof b||(e=new b(e,this.loose)),this.prerelease.length&&!e.prerelease.length)return-1;if(!this.prerelease.length&&e.prerelease.length)return 1;if(!this.prerelease.length&&!e.prerelease.length)return 0;var r=0;do{var t=this.prerelease[r],n=e.prerelease[r];if(c("prerelease compare",r,t,n),void 0===t&&void 0===n)return 0;if(void 0===n)return 1;if(void 0===t)return-1;if(t!==n)return $(t,n)}while(++r)},b.prototype.inc=function(e,r){switch(e){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",r);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",r);break;case"prepatch":this.prerelease.length=0,this.inc("patch",r),this.inc("pre",r);break;case"prerelease":0===this.prerelease.length&&this.inc("patch",r),this.inc("pre",r);break;case"major":0===this.minor&&0===this.patch&&0!==this.prerelease.length||this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":0===this.patch&&0!==this.prerelease.length||this.minor++,this.patch=0,this.prerelease=[];break;case"patch":0===this.prerelease.length&&this.patch++,this.prerelease=[];break;case"pre":if(0===this.prerelease.length)this.prerelease=[0];else{for(var t=this.prerelease.length;0<=--t;)"number"==typeof this.prerelease[t]&&(this.prerelease[t]++,t=-2);-1===t&&this.prerelease.push(0)}r&&(this.prerelease[0]!==r||isNaN(this.prerelease[1]))&&(this.prerelease=[r,0]);break;default:throw new Error("invalid increment argument: "+e)}return this.format(),this},n.inc=function(e,r,t,n){"string"==typeof t&&(n=t,t=void 0);try{return new b(e,t).inc(r,n).version}catch(e){return null}},n.diff=function(e,r){{if(x(e,r))return null;var t=E(e),n=E(r);if(t.prerelease.length||n.prerelease.length){for(var i in t)if(("major"===i||"minor"===i||"patch"===i)&&t[i]!==n[i])return"pre"+i;return"prerelease"}for(i in t)if(("major"===i||"minor"===i||"patch"===i)&&t[i]!==n[i])return i}},n.compareIdentifiers=$;var X=/^[0-9]+$/;function $(e,r){var t=X.test(e),n=X.test(r);return t&&n&&(e=+e,r=+r),t&&!n?-1:n&&!t?1:e":i=R(e,t,n);break;case">=":i=I(e,t,n);break;case"<":i=S(e,t,n);break;case"<=":i=T(e,t,n);break;default:throw new TypeError("Invalid operator: "+r)}return i}function V(e,r){if(e instanceof V){if(e.loose===r)return e;e=e.value}if(!(this instanceof V))return new V(e,r);c("comparator",e,r),this.loose=r,this.parse(e),this.semver===A?this.value="":this.value=this.operator+this.semver.version,c("comp",this)}n.rcompareIdentifiers=function(e,r){return $(r,e)},n.major=function(e,r){return new b(e,r).major},n.minor=function(e,r){return new b(e,r).minor},n.patch=function(e,r){return new b(e,r).patch},n.compare=k,n.compareLoose=function(e,r){return k(e,r,!0)},n.rcompare=z,n.sort=function(e,t){return e.sort(function(e,r){return n.compare(e,r,t)})},n.rsort=function(e,t){return e.sort(function(e,r){return n.rcompare(e,r,t)})},n.gt=R,n.lt=S,n.eq=x,n.neq=G,n.gte=I,n.lte=T,n.cmp=O,n.Comparator=V;var A={};function C(e,r){if(e instanceof C&&e.loose===r)return e;if(!(this instanceof C))return new C(e,r);if(this.loose=r,this.raw=e,this.set=e.split(/\s*\|\|\s*/).map(function(e){return this.parseRange(e.trim())},this).filter(function(e){return e.length}),!this.set.length)throw new TypeError("Invalid SemVer Range: "+e);this.format()}function N(e){return!e||"x"===e.toLowerCase()||"*"===e}function P(e,r,t,n,i,o,s,a,p,c,u,h,f){return((r=N(t)?"":N(n)?">="+t+".0.0":N(i)?">="+t+"."+n+".0":">="+r)+" "+(a=N(p)?"":N(c)?"<"+(+p+1)+".0.0":N(u)?"<"+p+"."+(+c+1)+".0":h?"<="+p+"."+c+"."+u+"-"+h:"<="+a)).trim()}function M(e,r,t){try{r=new C(r,t)}catch(e){return!1}return r.test(e)}function _(e,r,t,n){var i,o,s,a,p;switch(e=new b(e,n),r=new C(r,n),t){case">":i=R,o=T,s=S,a=">",p=">=";break;case"<":i=S,o=I,s=R,a="<",p="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(M(e,r,n))return!1;for(var c=0;c'},V.prototype.toString=function(){return this.value},V.prototype.test=function(e){return c("Comparator.test",e,this.loose),this.semver===A||O(e="string"==typeof e?new b(e,this.loose):e,this.operator,this.semver,this.loose)},(n.Range=C).prototype.inspect=function(){return''},C.prototype.format=function(){return this.range=this.set.map(function(e){return e.join(" ").trim()}).join("||").trim(),this.range},C.prototype.toString=function(){return this.range},C.prototype.parseRange=function(e){var t=this.loose,r=(e=e.trim(),c("range",e,t),t?s[32]:s[31]),n=(e=e.replace(r,P),c("hyphen replace",e),e=e.replace(s[30],"$1$2$3"),c("comparator trim",e,s[30]),e=(e=(e=e.replace(s[21],"$1~")).replace(s[25],"$1^")).split(/\s+/).join(" "),t?s[28]:s[29]),r=e.split(" ").map(function(e){return r=t,c("comp",e=e),e=function(e,r){return e.trim().split(/\s+/).map(function(e){var o=e,e=r;return c("caret",o,e),e=e?s[d]:s[y],o.replace(e,function(e,r,t,n,i){return c("caret",o,e,r,t,n,i),e=N(r)?"":N(t)?">="+r+".0.0 <"+(+r+1)+".0.0":N(n)?"0"===r?">="+r+"."+t+".0 <"+r+"."+(+t+1)+".0":">="+r+"."+t+".0 <"+(+r+1)+".0.0":i?(c("replaceCaret pr",i),"-"!==i.charAt(0)&&(i="-"+i),"0"===r?"0"===t?">="+r+"."+t+"."+n+i+" <"+r+"."+t+"."+(+n+1):">="+r+"."+t+"."+n+i+" <"+r+"."+(+t+1)+".0":">="+r+"."+t+"."+n+i+" <"+(+r+1)+".0.0"):(c("no pr"),"0"===r?"0"===t?">="+r+"."+t+"."+n+" <"+r+"."+t+"."+(+n+1):">="+r+"."+t+"."+n+" <"+r+"."+(+t+1)+".0":">="+r+"."+t+"."+n+" <"+(+r+1)+".0.0"),c("caret return",e),e})}).join(" ")}(e,r),c("caret",e),e=function(e,r){return e.trim().split(/\s+/).map(function(e){var o=e,e=r;return e=r?s[w]:s[g],o.replace(e,function(e,r,t,n,i){return c("tilde",o,e,r,t,n,i),e=N(r)?"":N(t)?">="+r+".0.0 <"+(+r+1)+".0.0":N(n)?">="+r+"."+t+".0 <"+r+"."+(+t+1)+".0":i?(c("replaceTilde pr",i),">="+r+"."+t+"."+n+(i="-"!==i.charAt(0)?"-"+i:i)+" <"+r+"."+(+t+1)+".0"):">="+r+"."+t+"."+n+" <"+r+"."+(+t+1)+".0",c("tilde return",e),e})}).join(" ")}(e,r),c("tildes",e),e=function(e,r){return c("replaceXRanges",e,r),e.split(/\s+/).map(function(e){var p=e,e=r;return p=p.trim(),e=e?s[v]:s[m],p.replace(e,function(e,r,t,n,i,o){c("xRange",p,e,r,t,n,i,o);var o=N(t),s=o||N(n),a=s||N(i);return"="===r&&a&&(r=""),o?e=">"===r||"<"===r?"<0.0.0":"*":r&&a?(s&&(n=0),a&&(i=0),">"===r?(r=">=",s?(t=+t+1,i=n=0):a&&(n=+n+1,i=0)):"<="===r&&(r="<",s?t=+t+1:n=+n+1),e=r+t+"."+n+"."+i):s?e=">="+t+".0.0 <"+(+t+1)+".0.0":a&&(e=">="+t+"."+n+".0 <"+t+"."+(+n+1)+".0"),c("xRange return",e),e})}).join(" ")}(e,r),c("xrange",e),e=function(e,r){return c("replaceStars",e,r),e.trim().replace(s[D],"")}(e,r),c("stars",e),e;var r}).join(" ").split(/\s+/);return r=(r=this.loose?r.filter(function(e){return!!e.match(n)}):r).map(function(e){return new V(e,t)})},n.toComparators=function(e,r){return new C(e,r).set.map(function(e){return e.map(function(e){return e.value}).join(" ").trim().split(" ")})},C.prototype.test=function(e){if(e){"string"==typeof e&&(e=new b(e,this.loose));for(var r=0;r",t)},n.outside=_,"function"==typeof define&&define.amd&&define(n)}(); \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/js/jquery.tablesorter.combined.js b/modules/pdproductattributeslist/views/js/jquery.tablesorter.combined.js new file mode 100644 index 00000000..8c1e4927 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/jquery.tablesorter.combined.js @@ -0,0 +1,6093 @@ +/*! tablesorter (FORK) - updated 2024-08-13 (v2.32.0)*/ +/* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery) { +/*! TableSorter (FORK) v2.32.0 *//* +* Client-side table sorting with ease! +* @requires jQuery v1.2.6+ +* +* Copyright (c) 2007 Christian Bach +* fork maintained by Rob Garrison +* +* Examples and original docs at: http://tablesorter.com +* Dual licensed under the MIT and GPL licenses: +* http://www.opensource.org/licenses/mit-license.php +* http://www.gnu.org/licenses/gpl.html +* +* @type jQuery +* @name tablesorter (FORK) +* @cat Plugins/Tablesorter +* @author Christian Bach - christian.bach@polyester.se +* @contributor Rob Garrison - https://github.com/Mottie/tablesorter +* @docs (fork) - https://mottie.github.io/tablesorter/docs/ +*/ +/*jshint browser:true, jquery:true, unused:false, expr: true */ +;( function( $ ) { + 'use strict'; + var ts = $.tablesorter = { + + version : '2.32.0', + + parsers : [], + widgets : [], + defaults : { + + // *** appearance + theme : 'default', // adds tablesorter-{theme} to the table for styling + widthFixed : false, // adds colgroup to fix widths of columns + showProcessing : false, // show an indeterminate timer icon in the header when the table is sorted or filtered. + + headerTemplate : '{content}',// header layout template (HTML ok); {content} = innerHTML, {icon} = // class from cssIcon + onRenderTemplate : null, // function( index, template ) { return template; }, // template is a string + onRenderHeader : null, // function( index ) {}, // nothing to return + + // *** functionality + cancelSelection : true, // prevent text selection in the header + tabIndex : true, // add tabindex to header for keyboard accessibility + dateFormat : 'mmddyyyy', // other options: 'ddmmyyy' or 'yyyymmdd' + sortMultiSortKey : 'shiftKey', // key used to select additional columns + sortResetKey : 'ctrlKey', // key used to remove sorting on a column + usNumberFormat : true, // false for German '1.234.567,89' or French '1 234 567,89' + delayInit : false, // if false, the parsed table contents will not update until the first sort + serverSideSorting: false, // if true, server-side sorting should be performed because client-side sorting will be disabled, but the ui and events will still be used. + resort : true, // default setting to trigger a resort after an 'update', 'addRows', 'updateCell', etc has completed + + // *** sort options + headers : null, // set sorter, string, empty, locked order, sortInitialOrder, filter, etc. + ignoreCase : true, // ignore case while sorting + sortForce : null, // column(s) first sorted; always applied + sortList : [], // Initial sort order; applied initially; updated when manually sorted + sortAppend : null, // column(s) sorted last; always applied + sortStable : false, // when sorting two rows with exactly the same content, the original sort order is maintained + + sortInitialOrder : 'asc', // sort direction on first click + sortLocaleCompare: false, // replace equivalent character (accented characters) + sortReset : false, // third click on the header will reset column to default - unsorted + sortRestart : false, // restart sort to 'sortInitialOrder' when clicking on previously unsorted columns + + emptyTo : 'bottom', // sort empty cell to bottom, top, none, zero, emptyMax, emptyMin + stringTo : 'max', // sort strings in numerical column as max, min, top, bottom, zero + duplicateSpan : true, // colspan cells in the tbody will have duplicated content in the cache for each spanned column + textExtraction : 'basic', // text extraction method/function - function( node, table, cellIndex ) {} + textAttribute : 'data-text',// data-attribute that contains alternate cell text (used in default textExtraction function) + textSorter : null, // choose overall or specific column sorter function( a, b, direction, table, columnIndex ) [alt: ts.sortText] + numberSorter : null, // choose overall numeric sorter function( a, b, direction, maxColumnValue ) + + // *** widget options + initWidgets : true, // apply widgets on tablesorter initialization + widgetClass : 'widget-{name}', // table class name template to match to include a widget + widgets : [], // method to add widgets, e.g. widgets: ['zebra'] + widgetOptions : { + zebra : [ 'even', 'odd' ] // zebra widget alternating row class names + }, + + // *** callbacks + initialized : null, // function( table ) {}, + + // *** extra css class names + tableClass : '', + cssAsc : '', + cssDesc : '', + cssNone : '', + cssHeader : '', + cssHeaderRow : '', + cssProcessing : '', // processing icon applied to header during sort/filter + + cssChildRow : 'tablesorter-childRow', // class name indiciating that a row is to be attached to its parent + cssInfoBlock : 'tablesorter-infoOnly', // don't sort tbody with this class name (only one class name allowed here!) + cssNoSort : 'tablesorter-noSort', // class name added to element inside header; clicking on it won't cause a sort + cssIgnoreRow : 'tablesorter-ignoreRow',// header row to ignore; cells within this row will not be added to c.$headers + + cssIcon : 'tablesorter-icon', // if this class does not exist, the {icon} will not be added from the headerTemplate + cssIconNone : '', // class name added to the icon when there is no column sort + cssIconAsc : '', // class name added to the icon when the column has an ascending sort + cssIconDesc : '', // class name added to the icon when the column has a descending sort + cssIconDisabled : '', // class name added to the icon when the column has a disabled sort + + // *** events + pointerClick : 'click', + pointerDown : 'mousedown', + pointerUp : 'mouseup', + + // *** selectors + selectorHeaders : '> thead th, > thead td', + selectorSort : 'th, td', // jQuery selector of content within selectorHeaders that is clickable to trigger a sort + selectorRemove : '.remove-me', + + // *** advanced + debug : false, + + // *** Internal variables + headerList: [], + empties: {}, + strings: {}, + parsers: [], + + // *** parser options for validator; values must be falsy! + globalize: 0, + imgAttr: 0 + + // removed: widgetZebra: { css: ['even', 'odd'] } + + }, + + // internal css classes - these will ALWAYS be added to + // the table and MUST only contain one class name - fixes #381 + css : { + table : 'tablesorter', + cssHasChild: 'tablesorter-hasChildRow', + childRow : 'tablesorter-childRow', + colgroup : 'tablesorter-colgroup', + header : 'tablesorter-header', + headerRow : 'tablesorter-headerRow', + headerIn : 'tablesorter-header-inner', + icon : 'tablesorter-icon', + processing : 'tablesorter-processing', + sortAsc : 'tablesorter-headerAsc', + sortDesc : 'tablesorter-headerDesc', + sortNone : 'tablesorter-headerUnSorted' + }, + + // labels applied to sortable headers for accessibility (aria) support + language : { + sortAsc : 'Ascending sort applied, ', + sortDesc : 'Descending sort applied, ', + sortNone : 'No sort applied, ', + sortDisabled : 'sorting is disabled', + nextAsc : 'activate to apply an ascending sort', + nextDesc : 'activate to apply a descending sort', + nextNone : 'activate to remove the sort' + }, + + regex : { + templateContent : /\{content\}/g, + templateIcon : /\{icon\}/g, + templateName : /\{name\}/i, + spaces : /\s+/g, + nonWord : /\W/g, + formElements : /(input|select|button|textarea)/i, + + // *** sort functions *** + // regex used in natural sort + // chunk/tokenize numbers & letters + chunk : /(^([+\-]?(?:\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?)?$|^0x[0-9a-f]+$|\d+)/gi, + // replace chunks @ ends + chunks : /(^\\0|\\0$)/, + hex : /^0x[0-9a-f]+$/i, + + // *** formatFloat *** + comma : /,/g, + digitNonUS : /[\s|\.]/g, + digitNegativeTest : /^\s*\([.\d]+\)/, + digitNegativeReplace : /^\s*\(([.\d]+)\)/, + + // *** isDigit *** + digitTest : /^[\-+(]?\d+[)]?$/, + digitReplace : /[,.'"\s]/g + + }, + + // digit sort, text location + string : { + max : 1, + min : -1, + emptymin : 1, + emptymax : -1, + zero : 0, + none : 0, + 'null' : 0, + top : true, + bottom : false + }, + + keyCodes : { + enter : 13 + }, + + // placeholder date parser data (globalize) + dates : {}, + + // These methods can be applied on table.config instance + instanceMethods : {}, + + /* + ▄█████ ██████ ██████ ██ ██ █████▄ + ▀█▄ ██▄▄ ██ ██ ██ ██▄▄██ + ▀█▄ ██▀▀ ██ ██ ██ ██▀▀▀ + █████▀ ██████ ██ ▀████▀ ██ + */ + + setup : function( table, c ) { + // if no thead or tbody, or tablesorter is already present, quit + if ( !table || !table.tHead || table.tBodies.length === 0 || table.hasInitialized === true ) { + if ( ts.debug(c, 'core') ) { + if ( table.hasInitialized ) { + console.warn( 'Stopping initialization. Tablesorter has already been initialized' ); + } else { + console.error( 'Stopping initialization! No table, thead or tbody', table ); + } + } + return; + } + + var tmp = '', + $table = $( table ), + meta = $.metadata; + // initialization flag + table.hasInitialized = false; + // table is being processed flag + table.isProcessing = true; + // make sure to store the config object + table.config = c; + // save the settings where they read + $.data( table, 'tablesorter', c ); + if ( ts.debug(c, 'core') ) { + console[ console.group ? 'group' : 'log' ]( 'Initializing tablesorter v' + ts.version ); + $.data( table, 'startoveralltimer', new Date() ); + } + + // removing this in version 3 (only supports jQuery 1.7+) + c.supportsDataObject = ( function( version ) { + version[ 0 ] = parseInt( version[ 0 ], 10 ); + return ( version[ 0 ] > 1 ) || ( version[ 0 ] === 1 && parseInt( version[ 1 ], 10 ) >= 4 ); + })( $.fn.jquery.split( '.' ) ); + // ensure case insensitivity + c.emptyTo = c.emptyTo.toLowerCase(); + c.stringTo = c.stringTo.toLowerCase(); + c.last = { sortList : [], clickedIndex : -1 }; + // add table theme class only if there isn't already one there + if ( !/tablesorter\-/.test( $table.attr( 'class' ) ) ) { + tmp = ( c.theme !== '' ? ' tablesorter-' + c.theme : '' ); + } + + // give the table a unique id, which will be used in namespace binding + if ( !c.namespace ) { + c.namespace = '.tablesorter' + Math.random().toString( 16 ).slice( 2 ); + } else { + // make sure namespace starts with a period & doesn't have weird characters + c.namespace = '.' + c.namespace.replace( ts.regex.nonWord, '' ); + } + + c.table = table; + c.$table = $table + // add namespace to table to allow bindings on extra elements to target + // the parent table (e.g. parser-input-select) + .addClass( ts.css.table + ' ' + c.tableClass + tmp + ' ' + c.namespace.slice(1) ) + .attr( 'role', 'grid' ); + c.$headers = $table.find( c.selectorHeaders ); + + c.$table.children().children( 'tr' ).attr( 'role', 'row' ); + c.$tbodies = $table.children( 'tbody:not(.' + c.cssInfoBlock + ')' ).attr({ + 'aria-live' : 'polite', + 'aria-relevant' : 'all' + }); + if ( c.$table.children( 'caption' ).length ) { + tmp = c.$table.children( 'caption' )[ 0 ]; + if ( !tmp.id ) { tmp.id = c.namespace.slice( 1 ) + 'caption'; } + c.$table.attr( 'aria-labelledby', tmp.id ); + } + c.widgetInit = {}; // keep a list of initialized widgets + // change textExtraction via data-attribute + c.textExtraction = c.$table.attr( 'data-text-extraction' ) || c.textExtraction || 'basic'; + // build headers + ts.buildHeaders( c ); + // fixate columns if the users supplies the fixedWidth option + // do this after theme has been applied + ts.fixColumnWidth( table ); + // add widgets from class name + ts.addWidgetFromClass( table ); + // add widget options before parsing (e.g. grouping widget has parser settings) + ts.applyWidgetOptions( table ); + // try to auto detect column type, and store in tables config + ts.setupParsers( c ); + // start total row count at zero + c.totalRows = 0; + // only validate options while debugging. See #1528 + if (c.debug) { + ts.validateOptions( c ); + } + // build the cache for the tbody cells + // delayInit will delay building the cache until the user starts a sort + if ( !c.delayInit ) { ts.buildCache( c ); } + // bind all header events and methods + ts.bindEvents( table, c.$headers, true ); + ts.bindMethods( c ); + // get sort list from jQuery data or metadata + // in jQuery < 1.4, an error occurs when calling $table.data() + if ( c.supportsDataObject && typeof $table.data().sortlist !== 'undefined' ) { + c.sortList = $table.data().sortlist; + } else if ( meta && ( $table.metadata() && $table.metadata().sortlist ) ) { + c.sortList = $table.metadata().sortlist; + } + // apply widget init code + ts.applyWidget( table, true ); + // if user has supplied a sort list to constructor + if ( c.sortList.length > 0 ) { + // save sortList before any sortAppend is added + c.last.sortList = c.sortList; + ts.sortOn( c, c.sortList, {}, !c.initWidgets ); + } else { + ts.setHeadersCss( c ); + if ( c.initWidgets ) { + // apply widget format + ts.applyWidget( table, false ); + } + } + + // show processesing icon + if ( c.showProcessing ) { + $table + .unbind( 'sortBegin' + c.namespace + ' sortEnd' + c.namespace ) + .bind( 'sortBegin' + c.namespace + ' sortEnd' + c.namespace, function( e ) { + clearTimeout( c.timerProcessing ); + ts.isProcessing( table ); + if ( e.type === 'sortBegin' ) { + c.timerProcessing = setTimeout( function() { + ts.isProcessing( table, true ); + }, 500 ); + } + }); + } + + // initialized + table.hasInitialized = true; + table.isProcessing = false; + if ( ts.debug(c, 'core') ) { + console.log( 'Overall initialization time:' + ts.benchmark( $.data( table, 'startoveralltimer' ) ) ); + if ( ts.debug(c, 'core') && console.groupEnd ) { console.groupEnd(); } + } + $table.triggerHandler( 'tablesorter-initialized', table ); + if ( typeof c.initialized === 'function' ) { + c.initialized( table ); + } + }, + + bindMethods : function( c ) { + var $table = c.$table, + namespace = c.namespace, + events = ( 'sortReset update updateRows updateAll updateHeaders addRows updateCell updateComplete ' + + 'sorton appendCache updateCache applyWidgetId applyWidgets refreshWidgets destroy mouseup ' + + 'mouseleave ' ).split( ' ' ) + .join( namespace + ' ' ); + // apply easy methods that trigger bound events + $table + .unbind( events.replace( ts.regex.spaces, ' ' ) ) + .bind( 'sortReset' + namespace, function( e, callback ) { + e.stopPropagation(); + // using this.config to ensure functions are getting a non-cached version of the config + ts.sortReset( this.config, function( table ) { + if (table.isApplyingWidgets) { + // multiple triggers in a row... filterReset, then sortReset - see #1361 + // wait to update widgets + setTimeout( function() { + ts.applyWidget( table, '', callback ); + }, 100 ); + } else { + ts.applyWidget( table, '', callback ); + } + }); + }) + .bind( 'updateAll' + namespace, function( e, resort, callback ) { + e.stopPropagation(); + ts.updateAll( this.config, resort, callback ); + }) + .bind( 'update' + namespace + ' updateRows' + namespace, function( e, resort, callback ) { + e.stopPropagation(); + ts.update( this.config, resort, callback ); + }) + .bind( 'updateHeaders' + namespace, function( e, callback ) { + e.stopPropagation(); + ts.updateHeaders( this.config, callback ); + }) + .bind( 'updateCell' + namespace, function( e, cell, resort, callback ) { + e.stopPropagation(); + ts.updateCell( this.config, cell, resort, callback ); + }) + .bind( 'addRows' + namespace, function( e, $row, resort, callback ) { + e.stopPropagation(); + ts.addRows( this.config, $row, resort, callback ); + }) + .bind( 'updateComplete' + namespace, function() { + this.isUpdating = false; + }) + .bind( 'sorton' + namespace, function( e, list, callback, init ) { + e.stopPropagation(); + ts.sortOn( this.config, list, callback, init ); + }) + .bind( 'appendCache' + namespace, function( e, callback, init ) { + e.stopPropagation(); + ts.appendCache( this.config, init ); + if ( $.isFunction( callback ) ) { + callback( this ); + } + }) + // $tbodies variable is used by the tbody sorting widget + .bind( 'updateCache' + namespace, function( e, callback, $tbodies ) { + e.stopPropagation(); + ts.updateCache( this.config, callback, $tbodies ); + }) + .bind( 'applyWidgetId' + namespace, function( e, id ) { + e.stopPropagation(); + ts.applyWidgetId( this, id ); + }) + .bind( 'applyWidgets' + namespace, function( e, callback ) { + e.stopPropagation(); + // apply widgets (false = not initializing) + ts.applyWidget( this, false, callback ); + }) + .bind( 'refreshWidgets' + namespace, function( e, all, dontapply ) { + e.stopPropagation(); + ts.refreshWidgets( this, all, dontapply ); + }) + .bind( 'removeWidget' + namespace, function( e, name, refreshing ) { + e.stopPropagation(); + ts.removeWidget( this, name, refreshing ); + }) + .bind( 'destroy' + namespace, function( e, removeClasses, callback ) { + e.stopPropagation(); + ts.destroy( this, removeClasses, callback ); + }) + .bind( 'resetToLoadState' + namespace, function( e ) { + e.stopPropagation(); + // remove all widgets + ts.removeWidget( this, true, false ); + var tmp = $.extend( true, {}, c.originalSettings ); + // restore original settings; this clears out current settings, but does not clear + // values saved to storage. + c = $.extend( true, {}, ts.defaults, tmp ); + c.originalSettings = tmp; + this.hasInitialized = false; + // setup the entire table again + ts.setup( this, c ); + }); + }, + + bindEvents : function( table, $headers, core ) { + table = $( table )[ 0 ]; + var tmp, + c = table.config, + namespace = c.namespace, + downTarget = null; + if ( core !== true ) { + $headers.addClass( namespace.slice( 1 ) + '_extra_headers' ); + tmp = ts.getClosest( $headers, 'table' ); + if ( tmp.length && tmp[ 0 ].nodeName === 'TABLE' && tmp[ 0 ] !== table ) { + $( tmp[ 0 ] ).addClass( namespace.slice( 1 ) + '_extra_table' ); + } + } + tmp = ( c.pointerDown + ' ' + c.pointerUp + ' ' + c.pointerClick + ' sort keyup ' ) + .replace( ts.regex.spaces, ' ' ) + .split( ' ' ) + .join( namespace + ' ' ); + // apply event handling to headers and/or additional headers (stickyheaders, scroller, etc) + $headers + // http://stackoverflow.com/questions/5312849/jquery-find-self; + .find( c.selectorSort ) + .add( $headers.filter( c.selectorSort ) ) + .unbind( tmp ) + .bind( tmp, function( e, external ) { + var $cell, cell, temp, + $target = $( e.target ), + // wrap event type in spaces, so the match doesn't trigger on inner words + type = ' ' + e.type + ' '; + // only recognize left clicks + if ( ( ( e.which || e.button ) !== 1 && !type.match( ' ' + c.pointerClick + ' | sort | keyup ' ) ) || + // allow pressing enter + ( type === ' keyup ' && e.which !== ts.keyCodes.enter ) || + // allow triggering a click event (e.which is undefined) & ignore physical clicks + ( type.match( ' ' + c.pointerClick + ' ' ) && typeof e.which !== 'undefined' ) ) { + return; + } + // ignore mouseup if mousedown wasn't on the same target + if ( type.match( ' ' + c.pointerUp + ' ' ) && downTarget !== e.target && external !== true ) { + return; + } + // set target on mousedown + if ( type.match( ' ' + c.pointerDown + ' ' ) ) { + downTarget = e.target; + // preventDefault needed or jQuery v1.3.2 and older throws an + // "Uncaught TypeError: handler.apply is not a function" error + temp = $target.jquery.split( '.' ); + if ( temp[ 0 ] === '1' && temp[ 1 ] < 4 ) { e.preventDefault(); } + return; + } + downTarget = null; + $cell = ts.getClosest( $( this ), '.' + ts.css.header ); + // prevent sort being triggered on form elements + if ( ts.regex.formElements.test( e.target.nodeName ) || + // nosort class name, or elements within a nosort container + $target.hasClass( c.cssNoSort ) || $target.parents( '.' + c.cssNoSort ).length > 0 || + // disabled cell directly clicked + $cell.hasClass( 'sorter-false' ) || + // elements within a button + $target.parents( 'button' ).length > 0 ) { + return !c.cancelSelection; + } + if ( c.delayInit && ts.isEmptyObject( c.cache ) ) { + ts.buildCache( c ); + } + // use column index from data-attribute or index of current row; fixes #1116 + c.last.clickedIndex = $cell.attr( 'data-column' ) || $cell.index(); + cell = c.$headerIndexed[ c.last.clickedIndex ][0]; + if ( cell && !cell.sortDisabled ) { + ts.initSort( c, cell, e ); + } + }); + if ( c.cancelSelection ) { + // cancel selection + $headers + .attr( 'unselectable', 'on' ) + .bind( 'selectstart', false ) + .css({ + 'user-select' : 'none', + 'MozUserSelect' : 'none' // not needed for jQuery 1.8+ + }); + } + }, + + buildHeaders : function( c ) { + var $temp, icon, timer, indx; + c.headerList = []; + c.headerContent = []; + c.sortVars = []; + if ( ts.debug(c, 'core') ) { + timer = new Date(); + } + // children tr in tfoot - see issue #196 & #547 + // don't pass table.config to computeColumnIndex here - widgets (math) pass it to "quickly" index tbody cells + c.columns = ts.computeColumnIndex( c.$table.children( 'thead, tfoot' ).children( 'tr' ) ); + // add icon if cssIcon option exists + icon = c.cssIcon ? + '' : + ''; + // redefine c.$headers here in case of an updateAll that replaces or adds an entire header cell - see #683 + c.$headers = $( $.map( c.$table.find( c.selectorHeaders ), function( elem, index ) { + var configHeaders, header, column, template, tmp, + $elem = $( elem ); + // ignore cell (don't add it to c.$headers) if row has ignoreRow class + if ( ts.getClosest( $elem, 'tr' ).hasClass( c.cssIgnoreRow ) ) { return; } + // transfer data-column to element if not th/td - #1459 + if ( !/(th|td)/i.test( elem.nodeName ) ) { + tmp = ts.getClosest( $elem, 'th, td' ); + $elem.attr( 'data-column', tmp.attr( 'data-column' ) ); + } + // make sure to get header cell & not column indexed cell + configHeaders = ts.getColumnData( c.table, c.headers, index, true ); + // save original header content + c.headerContent[ index ] = $elem.html(); + // if headerTemplate is empty, don't reformat the header cell + if ( c.headerTemplate !== '' && !$elem.find( '.' + ts.css.headerIn ).length ) { + // set up header template + template = c.headerTemplate + .replace( ts.regex.templateContent, $elem.html() ) + .replace( ts.regex.templateIcon, $elem.find( '.' + ts.css.icon ).length ? '' : icon ); + if ( c.onRenderTemplate ) { + header = c.onRenderTemplate.apply( $elem, [ index, template ] ); + // only change t if something is returned + if ( header && typeof header === 'string' ) { + template = header; + } + } + $elem.html( '
' + template + '
' ); // faster than wrapInner + } + if ( c.onRenderHeader ) { + c.onRenderHeader.apply( $elem, [ index, c, c.$table ] ); + } + column = parseInt( $elem.attr( 'data-column' ), 10 ); + elem.column = column; + tmp = ts.getOrder( ts.getData( $elem, configHeaders, 'sortInitialOrder' ) || c.sortInitialOrder ); + // this may get updated numerous times if there are multiple rows + c.sortVars[ column ] = { + count : -1, // set to -1 because clicking on the header automatically adds one + order : tmp ? + ( c.sortReset ? [ 1, 0, 2 ] : [ 1, 0 ] ) : // desc, asc, unsorted + ( c.sortReset ? [ 0, 1, 2 ] : [ 0, 1 ] ), // asc, desc, unsorted + lockedOrder : false, + sortedBy : '' + }; + tmp = ts.getData( $elem, configHeaders, 'lockedOrder' ) || false; + if ( typeof tmp !== 'undefined' && tmp !== false ) { + c.sortVars[ column ].lockedOrder = true; + c.sortVars[ column ].order = ts.getOrder( tmp ) ? [ 1, 1 ] : [ 0, 0 ]; + } + // add cell to headerList + c.headerList[ index ] = elem; + $elem.addClass( ts.css.header + ' ' + c.cssHeader ); + // add to parent in case there are multiple rows + ts.getClosest( $elem, 'tr' ) + .addClass( ts.css.headerRow + ' ' + c.cssHeaderRow ) + .attr( 'role', 'row' ); + // allow keyboard cursor to focus on element + if ( c.tabIndex ) { + $elem.attr( 'tabindex', 0 ); + } + return elem; + }) ); + // cache headers per column + c.$headerIndexed = []; + for ( indx = 0; indx < c.columns; indx++ ) { + // colspan in header making a column undefined + if ( ts.isEmptyObject( c.sortVars[ indx ] ) ) { + c.sortVars[ indx ] = {}; + } + // Use c.$headers.parent() in case selectorHeaders doesn't point to the th/td + $temp = c.$headers.filter( '[data-column="' + indx + '"]' ); + // target sortable column cells, unless there are none, then use non-sortable cells + // .last() added in jQuery 1.4; use .filter(':last') to maintain compatibility with jQuery v1.2.6 + c.$headerIndexed[ indx ] = $temp.length ? + $temp.not( '.sorter-false' ).length ? + $temp.not( '.sorter-false' ).filter( ':last' ) : + $temp.filter( ':last' ) : + $(); + } + c.$table.find( c.selectorHeaders ).attr({ + scope: 'col', + role : 'columnheader' + }); + // enable/disable sorting + ts.updateHeader( c ); + if ( ts.debug(c, 'core') ) { + console.log( 'Built headers:' + ts.benchmark( timer ) ); + console.log( c.$headers ); + } + }, + + // Use it to add a set of methods to table.config which will be available for all tables. + // This should be done before table initialization + addInstanceMethods : function( methods ) { + $.extend( ts.instanceMethods, methods ); + }, + + /* + █████▄ ▄████▄ █████▄ ▄█████ ██████ █████▄ ▄█████ + ██▄▄██ ██▄▄██ ██▄▄██ ▀█▄ ██▄▄ ██▄▄██ ▀█▄ + ██▀▀▀ ██▀▀██ ██▀██ ▀█▄ ██▀▀ ██▀██ ▀█▄ + ██ ██ ██ ██ ██ █████▀ ██████ ██ ██ █████▀ + */ + setupParsers : function( c, $tbodies ) { + var rows, list, span, max, colIndex, indx, header, configHeaders, + noParser, parser, extractor, time, tbody, len, + table = c.table, + tbodyIndex = 0, + debug = ts.debug(c, 'core'), + debugOutput = {}; + // update table bodies in case we start with an empty table + c.$tbodies = c.$table.children( 'tbody:not(.' + c.cssInfoBlock + ')' ); + tbody = typeof $tbodies === 'undefined' ? c.$tbodies : $tbodies; + len = tbody.length; + if ( len === 0 ) { + return debug ? console.warn( 'Warning: *Empty table!* Not building a parser cache' ) : ''; + } else if ( debug ) { + time = new Date(); + console[ console.group ? 'group' : 'log' ]( 'Detecting parsers for each column' ); + } + list = { + extractors: [], + parsers: [] + }; + while ( tbodyIndex < len ) { + rows = tbody[ tbodyIndex ].rows; + if ( rows.length ) { + colIndex = 0; + max = c.columns; + for ( indx = 0; indx < max; indx++ ) { + header = c.$headerIndexed[ colIndex ]; + if ( header && header.length ) { + // get column indexed table cell; adding true parameter fixes #1362 but + // it would break backwards compatibility... + configHeaders = ts.getColumnData( table, c.headers, colIndex ); // , true ); + // get column parser/extractor + extractor = ts.getParserById( ts.getData( header, configHeaders, 'extractor' ) ); + parser = ts.getParserById( ts.getData( header, configHeaders, 'sorter' ) ); + noParser = ts.getData( header, configHeaders, 'parser' ) === 'false'; + // empty cells behaviour - keeping emptyToBottom for backwards compatibility + c.empties[colIndex] = ( + ts.getData( header, configHeaders, 'empty' ) || + c.emptyTo || ( c.emptyToBottom ? 'bottom' : 'top' ) ).toLowerCase(); + // text strings behaviour in numerical sorts + c.strings[colIndex] = ( + ts.getData( header, configHeaders, 'string' ) || + c.stringTo || + 'max' ).toLowerCase(); + if ( noParser ) { + parser = ts.getParserById( 'no-parser' ); + } + if ( !extractor ) { + // For now, maybe detect someday + extractor = false; + } + if ( !parser ) { + parser = ts.detectParserForColumn( c, rows, -1, colIndex ); + } + if ( debug ) { + debugOutput[ '(' + colIndex + ') ' + header.text() ] = { + parser : parser.id, + extractor : extractor ? extractor.id : 'none', + string : c.strings[ colIndex ], + empty : c.empties[ colIndex ] + }; + } + list.parsers[ colIndex ] = parser; + list.extractors[ colIndex ] = extractor; + span = header[ 0 ].colSpan - 1; + if ( span > 0 ) { + colIndex += span; + max += span; + while ( span + 1 > 0 ) { + // set colspan columns to use the same parsers & extractors + list.parsers[ colIndex - span ] = parser; + list.extractors[ colIndex - span ] = extractor; + span--; + } + } + } + colIndex++; + } + } + tbodyIndex += ( list.parsers.length ) ? len : 1; + } + if ( debug ) { + if ( !ts.isEmptyObject( debugOutput ) ) { + console[ console.table ? 'table' : 'log' ]( debugOutput ); + } else { + console.warn( ' No parsers detected!' ); + } + console.log( 'Completed detecting parsers' + ts.benchmark( time ) ); + if ( console.groupEnd ) { console.groupEnd(); } + } + c.parsers = list.parsers; + c.extractors = list.extractors; + }, + + addParser : function( parser ) { + var indx, + len = ts.parsers.length, + add = true; + for ( indx = 0; indx < len; indx++ ) { + if ( ts.parsers[ indx ].id.toLowerCase() === parser.id.toLowerCase() ) { + add = false; + } + } + if ( add ) { + ts.parsers[ ts.parsers.length ] = parser; + } + }, + + getParserById : function( name ) { + /*jshint eqeqeq:false */ // eslint-disable-next-line eqeqeq + if ( name == 'false' ) { return false; } + var indx, + len = ts.parsers.length; + for ( indx = 0; indx < len; indx++ ) { + if ( ts.parsers[ indx ].id.toLowerCase() === ( name.toString() ).toLowerCase() ) { + return ts.parsers[ indx ]; + } + } + return false; + }, + + detectParserForColumn : function( c, rows, rowIndex, cellIndex ) { + var cur, $node, row, + indx = ts.parsers.length, + node = false, + nodeValue = '', + debug = ts.debug(c, 'core'), + keepLooking = true; + while ( nodeValue === '' && keepLooking ) { + rowIndex++; + row = rows[ rowIndex ]; + // stop looking after 50 empty rows + if ( row && rowIndex < 50 ) { + if ( row.className.indexOf( ts.cssIgnoreRow ) < 0 ) { + node = rows[ rowIndex ].cells[ cellIndex ]; + nodeValue = ts.getElementText( c, node, cellIndex ); + $node = $( node ); + if ( debug ) { + console.log( 'Checking if value was empty on row ' + rowIndex + ', column: ' + + cellIndex + ': "' + nodeValue + '"' ); + } + } + } else { + keepLooking = false; + } + } + while ( --indx >= 0 ) { + cur = ts.parsers[ indx ]; + // ignore the default text parser because it will always be true + if ( cur && cur.id !== 'text' && cur.is && cur.is( nodeValue, c.table, node, $node ) ) { + return cur; + } + } + // nothing found, return the generic parser (text) + return ts.getParserById( 'text' ); + }, + + getElementText : function( c, node, cellIndex ) { + if ( !node ) { return ''; } + var tmp, + extract = c.textExtraction || '', + // node could be a jquery object + // http://jsperf.com/jquery-vs-instanceof-jquery/2 + $node = node.jquery ? node : $( node ); + if ( typeof extract === 'string' ) { + // check data-attribute first when set to 'basic'; don't use node.innerText - it's really slow! + // http://www.kellegous.com/j/2013/02/27/innertext-vs-textcontent/ + if ( extract === 'basic' && typeof ( tmp = $node.attr( c.textAttribute ) ) !== 'undefined' ) { + return $.trim( tmp ); + } + return $.trim( node.textContent || $node.text() ); + } else { + if ( typeof extract === 'function' ) { + return $.trim( extract( $node[ 0 ], c.table, cellIndex ) ); + } else if ( typeof ( tmp = ts.getColumnData( c.table, extract, cellIndex ) ) === 'function' ) { + return $.trim( tmp( $node[ 0 ], c.table, cellIndex ) ); + } + } + // fallback + return $.trim( $node[ 0 ].textContent || $node.text() ); + }, + + // centralized function to extract/parse cell contents + getParsedText : function( c, cell, colIndex, txt ) { + if ( typeof txt === 'undefined' ) { + txt = ts.getElementText( c, cell, colIndex ); + } + // if no parser, make sure to return the txt + var val = '' + txt, + parser = c.parsers[ colIndex ], + extractor = c.extractors[ colIndex ]; + if ( parser ) { + // do extract before parsing, if there is one + if ( extractor && typeof extractor.format === 'function' ) { + txt = extractor.format( txt, c.table, cell, colIndex ); + } + // allow parsing if the string is empty, previously parsing would change it to zero, + // in case the parser needs to extract data from the table cell attributes + val = parser.id === 'no-parser' ? '' : + // make sure txt is a string (extractor may have converted it) + parser.format( '' + txt, c.table, cell, colIndex ); + if ( c.ignoreCase && typeof val === 'string' ) { + val = val.toLowerCase(); + } + } + return val; + }, + + /* + ▄████▄ ▄████▄ ▄████▄ ██ ██ ██████ + ██ ▀▀ ██▄▄██ ██ ▀▀ ██▄▄██ ██▄▄ + ██ ▄▄ ██▀▀██ ██ ▄▄ ██▀▀██ ██▀▀ + ▀████▀ ██ ██ ▀████▀ ██ ██ ██████ + */ + buildCache : function( c, callback, $tbodies ) { + var cache, val, txt, rowIndex, colIndex, tbodyIndex, $tbody, $row, + cols, $cells, cell, cacheTime, totalRows, rowData, prevRowData, + colMax, span, cacheIndex, hasParser, max, len, index, + table = c.table, + parsers = c.parsers, + debug = ts.debug(c, 'core'); + // update tbody variable + c.$tbodies = c.$table.children( 'tbody:not(.' + c.cssInfoBlock + ')' ); + $tbody = typeof $tbodies === 'undefined' ? c.$tbodies : $tbodies, + c.cache = {}; + c.totalRows = 0; + // if no parsers found, return - it's an empty table. + if ( !parsers ) { + return debug ? console.warn( 'Warning: *Empty table!* Not building a cache' ) : ''; + } + if ( debug ) { + cacheTime = new Date(); + } + // processing icon + if ( c.showProcessing ) { + ts.isProcessing( table, true ); + } + for ( tbodyIndex = 0; tbodyIndex < $tbody.length; tbodyIndex++ ) { + colMax = []; // column max value per tbody + cache = c.cache[ tbodyIndex ] = { + normalized: [] // array of normalized row data; last entry contains 'rowData' above + // colMax: # // added at the end + }; + + totalRows = ( $tbody[ tbodyIndex ] && $tbody[ tbodyIndex ].rows.length ) || 0; + for ( rowIndex = 0; rowIndex < totalRows; ++rowIndex ) { + rowData = { + // order: original row order # + // $row : jQuery Object[] + child: [], // child row text (filter widget) + raw: [] // original row text + }; + /** Add the table data to main data array */ + $row = $( $tbody[ tbodyIndex ].rows[ rowIndex ] ); + cols = []; + // ignore "remove-me" rows + if ( $row.hasClass( c.selectorRemove.slice(1) ) ) { + continue; + } + // if this is a child row, add it to the last row's children and continue to the next row + // ignore child row class, if it is the first row + if ( $row.hasClass( c.cssChildRow ) && rowIndex !== 0 ) { + len = cache.normalized.length - 1; + prevRowData = cache.normalized[ len ][ c.columns ]; + prevRowData.$row = prevRowData.$row.add( $row ); + // add 'hasChild' class name to parent row + if ( !$row.prev().hasClass( c.cssChildRow ) ) { + $row.prev().addClass( ts.css.cssHasChild ); + } + // save child row content (un-parsed!) + $cells = $row.children( 'th, td' ); + len = prevRowData.child.length; + prevRowData.child[ len ] = []; + // child row content does not account for colspans/rowspans; so indexing may be off + cacheIndex = 0; + max = c.columns; + for ( colIndex = 0; colIndex < max; colIndex++ ) { + cell = $cells[ colIndex ]; + if ( cell ) { + prevRowData.child[ len ][ colIndex ] = ts.getParsedText( c, cell, colIndex ); + span = $cells[ colIndex ].colSpan - 1; + if ( span > 0 ) { + cacheIndex += span; + max += span; + } + } + cacheIndex++; + } + // go to the next for loop + continue; + } + rowData.$row = $row; + rowData.order = rowIndex; // add original row position to rowCache + cacheIndex = 0; + max = c.columns; + for ( colIndex = 0; colIndex < max; ++colIndex ) { + cell = $row[ 0 ].cells[ colIndex ]; + if ( cell && cacheIndex < c.columns ) { + hasParser = typeof parsers[ cacheIndex ] !== 'undefined'; + if ( !hasParser && debug ) { + console.warn( 'No parser found for row: ' + rowIndex + ', column: ' + colIndex + + '; cell containing: "' + $(cell).text() + '"; does it have a header?' ); + } + val = ts.getElementText( c, cell, cacheIndex ); + rowData.raw[ cacheIndex ] = val; // save original row text + // save raw column text even if there is no parser set + txt = ts.getParsedText( c, cell, cacheIndex, val ); + cols[ cacheIndex ] = txt; + if ( hasParser && ( parsers[ cacheIndex ].type || '' ).toLowerCase() === 'numeric' ) { + // determine column max value (ignore sign) + colMax[ cacheIndex ] = Math.max( Math.abs( txt ) || 0, colMax[ cacheIndex ] || 0 ); + } + // allow colSpan in tbody + span = cell.colSpan - 1; + if ( span > 0 ) { + index = 0; + while ( index <= span ) { + // duplicate text (or not) to spanned columns + // instead of setting duplicate span to empty string, use textExtraction to try to get a value + // see http://stackoverflow.com/q/36449711/145346 + txt = c.duplicateSpan || index === 0 ? + txt : + typeof c.textExtraction !== 'string' ? + ts.getElementText( c, cell, cacheIndex + index ) || '' : + ''; + rowData.raw[ cacheIndex + index ] = txt; + cols[ cacheIndex + index ] = txt; + index++; + } + cacheIndex += span; + max += span; + } + } + cacheIndex++; + } + // ensure rowData is always in the same location (after the last column) + cols[ c.columns ] = rowData; + cache.normalized[ cache.normalized.length ] = cols; + } + cache.colMax = colMax; + // total up rows, not including child rows + c.totalRows += cache.normalized.length; + + } + if ( c.showProcessing ) { + ts.isProcessing( table ); // remove processing icon + } + if ( debug ) { + len = Math.min( 5, c.cache[ 0 ].normalized.length ); + console[ console.group ? 'group' : 'log' ]( 'Building cache for ' + c.totalRows + + ' rows (showing ' + len + ' rows in log) and ' + c.columns + ' columns' + + ts.benchmark( cacheTime ) ); + val = {}; + for ( colIndex = 0; colIndex < c.columns; colIndex++ ) { + for ( cacheIndex = 0; cacheIndex < len; cacheIndex++ ) { + if ( !val[ 'row: ' + cacheIndex ] ) { + val[ 'row: ' + cacheIndex ] = {}; + } + val[ 'row: ' + cacheIndex ][ c.$headerIndexed[ colIndex ].text() ] = + c.cache[ 0 ].normalized[ cacheIndex ][ colIndex ]; + } + } + console[ console.table ? 'table' : 'log' ]( val ); + if ( console.groupEnd ) { console.groupEnd(); } + } + if ( $.isFunction( callback ) ) { + callback( table ); + } + }, + + getColumnText : function( table, column, callback, rowFilter ) { + table = $( table )[0]; + var tbodyIndex, rowIndex, cache, row, tbodyLen, rowLen, raw, parsed, $cell, result, + hasCallback = typeof callback === 'function', + allColumns = column === 'all', + data = { raw : [], parsed: [], $cell: [] }, + c = table.config; + if ( ts.isEmptyObject( c ) ) { + if ( ts.debug(c, 'core') ) { + console.warn( 'No cache found - aborting getColumnText function!' ); + } + } else { + tbodyLen = c.$tbodies.length; + for ( tbodyIndex = 0; tbodyIndex < tbodyLen; tbodyIndex++ ) { + cache = c.cache[ tbodyIndex ].normalized; + rowLen = cache.length; + for ( rowIndex = 0; rowIndex < rowLen; rowIndex++ ) { + row = cache[ rowIndex ]; + if ( rowFilter && !row[ c.columns ].$row.is( rowFilter ) ) { + continue; + } + result = true; + parsed = ( allColumns ) ? row.slice( 0, c.columns ) : row[ column ]; + row = row[ c.columns ]; + raw = ( allColumns ) ? row.raw : row.raw[ column ]; + $cell = ( allColumns ) ? row.$row.children() : row.$row.children().eq( column ); + if ( hasCallback ) { + result = callback({ + tbodyIndex : tbodyIndex, + rowIndex : rowIndex, + parsed : parsed, + raw : raw, + $row : row.$row, + $cell : $cell + }); + } + if ( result !== false ) { + data.parsed[ data.parsed.length ] = parsed; + data.raw[ data.raw.length ] = raw; + data.$cell[ data.$cell.length ] = $cell; + } + } + } + // return everything + return data; + } + }, + + /* + ██ ██ █████▄ █████▄ ▄████▄ ██████ ██████ + ██ ██ ██▄▄██ ██ ██ ██▄▄██ ██ ██▄▄ + ██ ██ ██▀▀▀ ██ ██ ██▀▀██ ██ ██▀▀ + ▀████▀ ██ █████▀ ██ ██ ██ ██████ + */ + setHeadersCss : function( c ) { + var indx, column, + list = c.sortList, + len = list.length, + none = ts.css.sortNone + ' ' + c.cssNone, + css = [ ts.css.sortAsc + ' ' + c.cssAsc, ts.css.sortDesc + ' ' + c.cssDesc ], + cssIcon = [ c.cssIconAsc, c.cssIconDesc, c.cssIconNone ], + aria = [ 'ascending', 'descending' ], + updateColumnSort = function($el, index) { + $el + .removeClass( none ) + .addClass( css[ index ] ) + .attr( 'aria-sort', aria[ index ] ) + .find( '.' + ts.css.icon ) + .removeClass( cssIcon[ 2 ] ) + .addClass( cssIcon[ index ] ); + }, + // find the footer + $extras = c.$table + .find( 'tfoot tr' ) + .children( 'td, th' ) + .add( $( c.namespace + '_extra_headers' ) ) + .removeClass( css.join( ' ' ) ), + // remove all header information + $sorted = c.$headers + .add( $( 'thead ' + c.namespace + '_extra_headers' ) ) + .removeClass( css.join( ' ' ) ) + .addClass( none ) + .attr( 'aria-sort', 'none' ) + .find( '.' + ts.css.icon ) + .removeClass( cssIcon.join( ' ' ) ) + .end(); + // add css none to all sortable headers + $sorted + .not( '.sorter-false' ) + .find( '.' + ts.css.icon ) + .addClass( cssIcon[ 2 ] ); + // add disabled css icon class + if ( c.cssIconDisabled ) { + $sorted + .filter( '.sorter-false' ) + .find( '.' + ts.css.icon ) + .addClass( c.cssIconDisabled ); + } + for ( indx = 0; indx < len; indx++ ) { + // direction = 2 means reset! + if ( list[ indx ][ 1 ] !== 2 ) { + // multicolumn sorting updating - see #1005 + // .not(function() {}) needs jQuery 1.4 + // filter(function(i, el) {}) <- el is undefined in jQuery v1.2.6 + $sorted = c.$headers.filter( function( i ) { + // only include headers that are in the sortList (this includes colspans) + var include = true, + $el = c.$headers.eq( i ), + col = parseInt( $el.attr( 'data-column' ), 10 ), + end = col + ts.getClosest( $el, 'th, td' )[0].colSpan; + for ( ; col < end; col++ ) { + include = include ? include || ts.isValueInArray( col, c.sortList ) > -1 : false; + } + return include; + }); + + // choose the :last in case there are nested columns + $sorted = $sorted + .not( '.sorter-false' ) + .filter( '[data-column="' + list[ indx ][ 0 ] + '"]' + ( len === 1 ? ':last' : '' ) ); + if ( $sorted.length ) { + for ( column = 0; column < $sorted.length; column++ ) { + if ( !$sorted[ column ].sortDisabled ) { + updateColumnSort( $sorted.eq( column ), list[ indx ][ 1 ] ); + } + } + } + // add sorted class to footer & extra headers, if they exist + if ( $extras.length ) { + updateColumnSort( $extras.filter( '[data-column="' + list[ indx ][ 0 ] + '"]' ), list[ indx ][ 1 ] ); + } + } + } + // add verbose aria labels + len = c.$headers.length; + for ( indx = 0; indx < len; indx++ ) { + ts.setColumnAriaLabel( c, c.$headers.eq( indx ) ); + } + }, + + getClosest : function( $el, selector ) { + // jQuery v1.2.6 doesn't have closest() + if ( $.fn.closest ) { + return $el.closest( selector ); + } + return $el.is( selector ) ? + $el : + $el.parents( selector ).filter( ':first' ); + }, + + // nextSort (optional), lets you disable next sort text + setColumnAriaLabel : function( c, $header, nextSort ) { + if ( $header.length ) { + var column = parseInt( $header.attr( 'data-column' ), 10 ), + vars = c.sortVars[ column ], + tmp = $header.hasClass( ts.css.sortAsc ) ? + 'sortAsc' : + $header.hasClass( ts.css.sortDesc ) ? 'sortDesc' : 'sortNone', + txt = $.trim( $header.text() ) + ': ' + ts.language[ tmp ]; + if ( $header.hasClass( 'sorter-false' ) || nextSort === false ) { + txt += ts.language.sortDisabled; + } else { + tmp = ( vars.count + 1 ) % vars.order.length; + nextSort = vars.order[ tmp ]; + // if nextSort + txt += ts.language[ nextSort === 0 ? 'nextAsc' : nextSort === 1 ? 'nextDesc' : 'nextNone' ]; + } + $header.attr( 'aria-label', txt ); + if (vars.sortedBy) { + $header.attr( 'data-sortedBy', vars.sortedBy ); + } else { + $header.removeAttr('data-sortedBy'); + } + } + }, + + updateHeader : function( c ) { + var index, isDisabled, $header, col, + table = c.table, + len = c.$headers.length; + for ( index = 0; index < len; index++ ) { + $header = c.$headers.eq( index ); + col = ts.getColumnData( table, c.headers, index, true ); + // add 'sorter-false' class if 'parser-false' is set + isDisabled = ts.getData( $header, col, 'sorter' ) === 'false' || ts.getData( $header, col, 'parser' ) === 'false'; + ts.setColumnSort( c, $header, isDisabled ); + } + }, + + setColumnSort : function( c, $header, isDisabled ) { + var id = c.table.id; + $header[ 0 ].sortDisabled = isDisabled; + $header[ isDisabled ? 'addClass' : 'removeClass' ]( 'sorter-false' ) + .attr( 'aria-disabled', '' + isDisabled ); + // disable tab index on disabled cells + if ( c.tabIndex ) { + if ( isDisabled ) { + $header.removeAttr( 'tabindex' ); + } else { + $header.attr( 'tabindex', '0' ); + } + } + // aria-controls - requires table ID + if ( id ) { + if ( isDisabled ) { + $header.removeAttr( 'aria-controls' ); + } else { + $header.attr( 'aria-controls', id ); + } + } + }, + + updateHeaderSortCount : function( c, list ) { + var col, dir, group, indx, primary, temp, val, order, + sortList = list || c.sortList, + len = sortList.length; + c.sortList = []; + for ( indx = 0; indx < len; indx++ ) { + val = sortList[ indx ]; + // ensure all sortList values are numeric - fixes #127 + col = parseInt( val[ 0 ], 10 ); + // prevents error if sorton array is wrong + if ( col < c.columns ) { + + // set order if not already defined - due to colspan header without associated header cell + // adding this check prevents a javascript error + if ( !c.sortVars[ col ].order ) { + if ( ts.getOrder( c.sortInitialOrder ) ) { + order = c.sortReset ? [ 1, 0, 2 ] : [ 1, 0 ]; + } else { + order = c.sortReset ? [ 0, 1, 2 ] : [ 0, 1 ]; + } + c.sortVars[ col ].order = order; + c.sortVars[ col ].count = 0; + } + + order = c.sortVars[ col ].order; + dir = ( '' + val[ 1 ] ).match( /^(1|d|s|o|n)/ ); + dir = dir ? dir[ 0 ] : ''; + // 0/(a)sc (default), 1/(d)esc, (s)ame, (o)pposite, (n)ext + switch ( dir ) { + case '1' : case 'd' : // descending + dir = 1; + break; + case 's' : // same direction (as primary column) + // if primary sort is set to 's', make it ascending + dir = primary || 0; + break; + case 'o' : + temp = order[ ( primary || 0 ) % order.length ]; + // opposite of primary column; but resets if primary resets + dir = temp === 0 ? 1 : temp === 1 ? 0 : 2; + break; + case 'n' : + dir = order[ ( ++c.sortVars[ col ].count ) % order.length ]; + break; + default : // ascending + dir = 0; + break; + } + primary = indx === 0 ? dir : primary; + group = [ col, parseInt( dir, 10 ) || 0 ]; + c.sortList[ c.sortList.length ] = group; + dir = $.inArray( group[ 1 ], order ); // fixes issue #167 + c.sortVars[ col ].count = dir >= 0 ? dir : group[ 1 ] % order.length; + } + } + }, + + updateAll : function( c, resort, callback ) { + var table = c.table; + table.isUpdating = true; + ts.refreshWidgets( table, true, true ); + ts.buildHeaders( c ); + ts.bindEvents( table, c.$headers, true ); + ts.bindMethods( c ); + ts.commonUpdate( c, resort, callback ); + }, + + update : function( c, resort, callback ) { + var table = c.table; + table.isUpdating = true; + // update sorting (if enabled/disabled) + ts.updateHeader( c ); + ts.commonUpdate( c, resort, callback ); + }, + + // simple header update - see #989 + updateHeaders : function( c, callback ) { + c.table.isUpdating = true; + ts.buildHeaders( c ); + ts.bindEvents( c.table, c.$headers, true ); + ts.resortComplete( c, callback ); + }, + + updateCell : function( c, cell, resort, callback ) { + // updateCell for child rows is a mess - we'll ignore them for now + // eventually I'll break out the "update" row cache code to make everything consistent + if ( $( cell ).closest( 'tr' ).hasClass( c.cssChildRow ) ) { + console.warn('Tablesorter Warning! "updateCell" for child row content has been disabled, use "update" instead'); + return; + } + if ( ts.isEmptyObject( c.cache ) ) { + // empty table, do an update instead - fixes #1099 + ts.updateHeader( c ); + ts.commonUpdate( c, resort, callback ); + return; + } + c.table.isUpdating = true; + c.$table.find( c.selectorRemove ).remove(); + // get position from the dom + var tmp, indx, row, icell, cache, len, + $tbodies = c.$tbodies, + $cell = $( cell ), + // update cache - format: function( s, table, cell, cellIndex ) + // no closest in jQuery v1.2.6 + tbodyIndex = $tbodies.index( ts.getClosest( $cell, 'tbody' ) ), + tbcache = c.cache[ tbodyIndex ], + $row = ts.getClosest( $cell, 'tr' ); + cell = $cell[ 0 ]; // in case cell is a jQuery object + // tbody may not exist if update is initialized while tbody is removed for processing + if ( $tbodies.length && tbodyIndex >= 0 ) { + row = $tbodies.eq( tbodyIndex ).find( 'tr' ).not( '.' + c.cssChildRow ).index( $row ); + cache = tbcache.normalized[ row ]; + len = $row[ 0 ].cells.length; + if ( len !== c.columns ) { + // colspan in here somewhere! + icell = 0; + tmp = false; + for ( indx = 0; indx < len; indx++ ) { + if ( !tmp && $row[ 0 ].cells[ indx ] !== cell ) { + icell += $row[ 0 ].cells[ indx ].colSpan; + } else { + tmp = true; + } + } + } else { + icell = $cell.index(); + } + tmp = ts.getElementText( c, cell, icell ); // raw + cache[ c.columns ].raw[ icell ] = tmp; + tmp = ts.getParsedText( c, cell, icell, tmp ); + cache[ icell ] = tmp; // parsed + if ( ( c.parsers[ icell ].type || '' ).toLowerCase() === 'numeric' ) { + // update column max value (ignore sign) + tbcache.colMax[ icell ] = Math.max( Math.abs( tmp ) || 0, tbcache.colMax[ icell ] || 0 ); + } + tmp = resort !== 'undefined' ? resort : c.resort; + if ( tmp !== false ) { + // widgets will be reapplied + ts.checkResort( c, tmp, callback ); + } else { + // don't reapply widgets is resort is false, just in case it causes + // problems with element focus + ts.resortComplete( c, callback ); + } + } else { + if ( ts.debug(c, 'core') ) { + console.error( 'updateCell aborted, tbody missing or not within the indicated table' ); + } + c.table.isUpdating = false; + } + }, + + addRows : function( c, $row, resort, callback ) { + var txt, val, tbodyIndex, rowIndex, rows, cellIndex, len, order, + cacheIndex, rowData, cells, cell, span, + // allow passing a row string if only one non-info tbody exists in the table + valid = typeof $row === 'string' && c.$tbodies.length === 1 && / 0 ) { + cacheIndex += span; + } + cacheIndex++; + } + // add the row data to the end + cells[ c.columns ] = rowData; + // update cache + c.cache[ tbodyIndex ].normalized[ order ] = cells; + } + // resort using current settings + ts.checkResort( c, resort, callback ); + } + }, + + updateCache : function( c, callback, $tbodies ) { + // rebuild parsers + if ( !( c.parsers && c.parsers.length ) ) { + ts.setupParsers( c, $tbodies ); + } + // rebuild the cache map + ts.buildCache( c, callback, $tbodies ); + }, + + // init flag (true) used by pager plugin to prevent widget application + // renamed from appendToTable + appendCache : function( c, init ) { + var parsed, totalRows, $tbody, $curTbody, rowIndex, tbodyIndex, appendTime, + table = c.table, + $tbodies = c.$tbodies, + rows = [], + cache = c.cache; + // empty table - fixes #206/#346 + if ( ts.isEmptyObject( cache ) ) { + // run pager appender in case the table was just emptied + return c.appender ? c.appender( table, rows ) : + table.isUpdating ? c.$table.triggerHandler( 'updateComplete', table ) : ''; // Fixes #532 + } + if ( ts.debug(c, 'core') ) { + appendTime = new Date(); + } + for ( tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { + $tbody = $tbodies.eq( tbodyIndex ); + if ( $tbody.length ) { + // detach tbody for manipulation + $curTbody = ts.processTbody( table, $tbody, true ); + parsed = cache[ tbodyIndex ].normalized; + totalRows = parsed.length; + for ( rowIndex = 0; rowIndex < totalRows; rowIndex++ ) { + rows[rows.length] = parsed[ rowIndex ][ c.columns ].$row; + // removeRows used by the pager plugin; don't render if using ajax - fixes #411 + if ( !c.appender || ( c.pager && !c.pager.removeRows && !c.pager.ajax ) ) { + $curTbody.append( parsed[ rowIndex ][ c.columns ].$row ); + } + } + // restore tbody + ts.processTbody( table, $curTbody, false ); + } + } + if ( c.appender ) { + c.appender( table, rows ); + } + if ( ts.debug(c, 'core') ) { + console.log( 'Rebuilt table' + ts.benchmark( appendTime ) ); + } + // apply table widgets; but not before ajax completes + if ( !init && !c.appender ) { + ts.applyWidget( table ); + } + if ( table.isUpdating ) { + c.$table.triggerHandler( 'updateComplete', table ); + } + }, + + commonUpdate : function( c, resort, callback ) { + // remove rows/elements before update + c.$table.find( c.selectorRemove ).remove(); + // rebuild parsers + ts.setupParsers( c ); + // rebuild the cache map + ts.buildCache( c ); + ts.checkResort( c, resort, callback ); + }, + + /* + ▄█████ ▄████▄ █████▄ ██████ ██ █████▄ ▄████▄ + ▀█▄ ██ ██ ██▄▄██ ██ ██ ██ ██ ██ ▄▄▄ + ▀█▄ ██ ██ ██▀██ ██ ██ ██ ██ ██ ▀██ + █████▀ ▀████▀ ██ ██ ██ ██ ██ ██ ▀████▀ + */ + initSort : function( c, cell, event ) { + if ( c.table.isUpdating ) { + // let any updates complete before initializing a sort + return setTimeout( function() { + ts.initSort( c, cell, event ); + }, 50 ); + } + + var arry, indx, headerIndx, dir, temp, tmp, $header, + notMultiSort = !event[ c.sortMultiSortKey ], + table = c.table, + len = c.$headers.length, + th = ts.getClosest( $( cell ), 'th, td' ), + col = parseInt( th.attr( 'data-column' ), 10 ), + sortedBy = event.type === 'mouseup' ? 'user' : event.type, + order = c.sortVars[ col ].order; + th = th[0]; + // Only call sortStart if sorting is enabled + c.$table.triggerHandler( 'sortStart', table ); + // get current column sort order + tmp = ( c.sortVars[ col ].count + 1 ) % order.length; + c.sortVars[ col ].count = event[ c.sortResetKey ] ? 2 : tmp; + // reset all sorts on non-current column - issue #30 + if ( c.sortRestart ) { + for ( headerIndx = 0; headerIndx < len; headerIndx++ ) { + $header = c.$headers.eq( headerIndx ); + tmp = parseInt( $header.attr( 'data-column' ), 10 ); + // only reset counts on columns that weren't just clicked on and if not included in a multisort + if ( col !== tmp && ( notMultiSort || $header.hasClass( ts.css.sortNone ) ) ) { + c.sortVars[ tmp ].count = -1; + } + } + } + // user only wants to sort on one column + if ( notMultiSort ) { + $.each( c.sortVars, function( i ) { + c.sortVars[ i ].sortedBy = ''; + }); + // flush the sort list + c.sortList = []; + c.last.sortList = []; + if ( c.sortForce !== null ) { + arry = c.sortForce; + for ( indx = 0; indx < arry.length; indx++ ) { + if ( arry[ indx ][ 0 ] !== col ) { + c.sortList[ c.sortList.length ] = arry[ indx ]; + c.sortVars[ arry[ indx ][ 0 ] ].sortedBy = 'sortForce'; + } + } + } + // add column to sort list + dir = order[ c.sortVars[ col ].count ]; + if ( dir < 2 ) { + c.sortList[ c.sortList.length ] = [ col, dir ]; + c.sortVars[ col ].sortedBy = sortedBy; + // add other columns if header spans across multiple + if ( th.colSpan > 1 ) { + for ( indx = 1; indx < th.colSpan; indx++ ) { + c.sortList[ c.sortList.length ] = [ col + indx, dir ]; + // update count on columns in colSpan + c.sortVars[ col + indx ].count = $.inArray( dir, order ); + c.sortVars[ col + indx ].sortedBy = sortedBy; + } + } + } + // multi column sorting + } else { + // get rid of the sortAppend before adding more - fixes issue #115 & #523 + c.sortList = $.extend( [], c.last.sortList ); + + // the user has clicked on an already sorted column + if ( ts.isValueInArray( col, c.sortList ) >= 0 ) { + // reverse the sorting direction + c.sortVars[ col ].sortedBy = sortedBy; + for ( indx = 0; indx < c.sortList.length; indx++ ) { + tmp = c.sortList[ indx ]; + if ( tmp[ 0 ] === col ) { + // order.count seems to be incorrect when compared to cell.count + tmp[ 1 ] = order[ c.sortVars[ col ].count ]; + if ( tmp[1] === 2 ) { + c.sortList.splice( indx, 1 ); + c.sortVars[ col ].count = -1; + } + } + } + } else { + // add column to sort list array + dir = order[ c.sortVars[ col ].count ]; + c.sortVars[ col ].sortedBy = sortedBy; + if ( dir < 2 ) { + c.sortList[ c.sortList.length ] = [ col, dir ]; + // add other columns if header spans across multiple + if ( th.colSpan > 1 ) { + for ( indx = 1; indx < th.colSpan; indx++ ) { + c.sortList[ c.sortList.length ] = [ col + indx, dir ]; + // update count on columns in colSpan + c.sortVars[ col + indx ].count = $.inArray( dir, order ); + c.sortVars[ col + indx ].sortedBy = sortedBy; + } + } + } + } + } + // save sort before applying sortAppend + c.last.sortList = $.extend( [], c.sortList ); + if ( c.sortList.length && c.sortAppend ) { + arry = $.isArray( c.sortAppend ) ? c.sortAppend : c.sortAppend[ c.sortList[ 0 ][ 0 ] ]; + if ( !ts.isEmptyObject( arry ) ) { + for ( indx = 0; indx < arry.length; indx++ ) { + if ( arry[ indx ][ 0 ] !== col && ts.isValueInArray( arry[ indx ][ 0 ], c.sortList ) < 0 ) { + dir = arry[ indx ][ 1 ]; + temp = ( '' + dir ).match( /^(a|d|s|o|n)/ ); + if ( temp ) { + tmp = c.sortList[ 0 ][ 1 ]; + switch ( temp[ 0 ] ) { + case 'd' : + dir = 1; + break; + case 's' : + dir = tmp; + break; + case 'o' : + dir = tmp === 0 ? 1 : 0; + break; + case 'n' : + dir = ( tmp + 1 ) % order.length; + break; + default: + dir = 0; + break; + } + } + c.sortList[ c.sortList.length ] = [ arry[ indx ][ 0 ], dir ]; + c.sortVars[ arry[ indx ][ 0 ] ].sortedBy = 'sortAppend'; + } + } + } + } + // sortBegin event triggered immediately before the sort + c.$table.triggerHandler( 'sortBegin', table ); + // setTimeout needed so the processing icon shows up + setTimeout( function() { + // set css for headers + ts.setHeadersCss( c ); + ts.multisort( c ); + ts.appendCache( c ); + c.$table.triggerHandler( 'sortBeforeEnd', table ); + c.$table.triggerHandler( 'sortEnd', table ); + }, 1 ); + }, + + // sort multiple columns + multisort : function( c ) { /*jshint loopfunc:true */ + var tbodyIndex, sortTime, colMax, rows, tmp, + table = c.table, + sorter = [], + dir = 0, + textSorter = c.textSorter || '', + sortList = c.sortList, + sortLen = sortList.length, + len = c.$tbodies.length; + if ( c.serverSideSorting || ts.isEmptyObject( c.cache ) ) { + // empty table - fixes #206/#346 + return; + } + if ( ts.debug(c, 'core') ) { sortTime = new Date(); } + // cache textSorter to optimize speed + if ( typeof textSorter === 'object' ) { + colMax = c.columns; + while ( colMax-- ) { + tmp = ts.getColumnData( table, textSorter, colMax ); + if ( typeof tmp === 'function' ) { + sorter[ colMax ] = tmp; + } + } + } + for ( tbodyIndex = 0; tbodyIndex < len; tbodyIndex++ ) { + colMax = c.cache[ tbodyIndex ].colMax; + rows = c.cache[ tbodyIndex ].normalized; + + rows.sort( function( a, b ) { + var sortIndex, num, col, order, sort, x, y; + // rows is undefined here in IE, so don't use it! + for ( sortIndex = 0; sortIndex < sortLen; sortIndex++ ) { + col = sortList[ sortIndex ][ 0 ]; + order = sortList[ sortIndex ][ 1 ]; + // sort direction, true = asc, false = desc + dir = order === 0; + + if ( c.sortStable && a[ col ] === b[ col ] && sortLen === 1 ) { + return a[ c.columns ].order - b[ c.columns ].order; + } + + // fallback to natural sort since it is more robust + num = /n/i.test( ts.getSortType( c.parsers, col ) ); + if ( num && c.strings[ col ] ) { + // sort strings in numerical columns + if ( typeof ( ts.string[ c.strings[ col ] ] ) === 'boolean' ) { + num = ( dir ? 1 : -1 ) * ( ts.string[ c.strings[ col ] ] ? -1 : 1 ); + } else { + num = ( c.strings[ col ] ) ? ts.string[ c.strings[ col ] ] || 0 : 0; + } + // fall back to built-in numeric sort + // var sort = $.tablesorter['sort' + s]( a[col], b[col], dir, colMax[col], table ); + sort = c.numberSorter ? c.numberSorter( a[ col ], b[ col ], dir, colMax[ col ], table ) : + ts[ 'sortNumeric' + ( dir ? 'Asc' : 'Desc' ) ]( a[ col ], b[ col ], num, colMax[ col ], col, c ); + } else { + // set a & b depending on sort direction + x = dir ? a : b; + y = dir ? b : a; + // text sort function + if ( typeof textSorter === 'function' ) { + // custom OVERALL text sorter + sort = textSorter( x[ col ], y[ col ], dir, col, table ); + } else if ( typeof sorter[ col ] === 'function' ) { + // custom text sorter for a SPECIFIC COLUMN + sort = sorter[ col ]( x[ col ], y[ col ], dir, col, table ); + } else { + // fall back to natural sort + sort = ts[ 'sortNatural' + ( dir ? 'Asc' : 'Desc' ) ]( a[ col ] || '', b[ col ] || '', col, c ); + } + } + if ( sort ) { return sort; } + } + return a[ c.columns ].order - b[ c.columns ].order; + }); + } + if ( ts.debug(c, 'core') ) { + console.log( 'Applying sort ' + sortList.toString() + ts.benchmark( sortTime ) ); + } + }, + + resortComplete : function( c, callback ) { + if ( c.table.isUpdating ) { + c.$table.triggerHandler( 'updateComplete', c.table ); + } + if ( $.isFunction( callback ) ) { + callback( c.table ); + } + }, + + checkResort : function( c, resort, callback ) { + var sortList = $.isArray( resort ) ? resort : c.sortList, + // if no resort parameter is passed, fallback to config.resort (true by default) + resrt = typeof resort === 'undefined' ? c.resort : resort; + // don't try to resort if the table is still processing + // this will catch spamming of the updateCell method + if ( resrt !== false && !c.serverSideSorting && !c.table.isProcessing ) { + if ( sortList.length ) { + ts.sortOn( c, sortList, function() { + ts.resortComplete( c, callback ); + }, true ); + } else { + ts.sortReset( c, function() { + ts.resortComplete( c, callback ); + ts.applyWidget( c.table, false ); + } ); + } + } else { + ts.resortComplete( c, callback ); + ts.applyWidget( c.table, false ); + } + }, + + sortOn : function( c, list, callback, init ) { + var indx, + table = c.table; + c.$table.triggerHandler( 'sortStart', table ); + for (indx = 0; indx < c.columns; indx++) { + c.sortVars[ indx ].sortedBy = ts.isValueInArray( indx, list ) > -1 ? 'sorton' : ''; + } + // update header count index + ts.updateHeaderSortCount( c, list ); + // set css for headers + ts.setHeadersCss( c ); + // fixes #346 + if ( c.delayInit && ts.isEmptyObject( c.cache ) ) { + ts.buildCache( c ); + } + c.$table.triggerHandler( 'sortBegin', table ); + // sort the table and append it to the dom + ts.multisort( c ); + ts.appendCache( c, init ); + c.$table.triggerHandler( 'sortBeforeEnd', table ); + c.$table.triggerHandler( 'sortEnd', table ); + ts.applyWidget( table ); + if ( $.isFunction( callback ) ) { + callback( table ); + } + }, + + sortReset : function( c, callback ) { + c.sortList = []; + var indx; + for (indx = 0; indx < c.columns; indx++) { + c.sortVars[ indx ].count = -1; + c.sortVars[ indx ].sortedBy = ''; + } + ts.setHeadersCss( c ); + ts.multisort( c ); + ts.appendCache( c ); + if ( $.isFunction( callback ) ) { + callback( c.table ); + } + }, + + getSortType : function( parsers, column ) { + return ( parsers && parsers[ column ] ) ? parsers[ column ].type || '' : ''; + }, + + getOrder : function( val ) { + // look for 'd' in 'desc' order; return true + return ( /^d/i.test( val ) || val === 1 ); + }, + + // Natural sort - https://github.com/overset/javascript-natural-sort (date sorting removed) + sortNatural : function( a, b ) { + if ( a === b ) { return 0; } + a = ( a || '' ).toString(); + b = ( b || '' ).toString(); + var aNum, bNum, aFloat, bFloat, indx, max, + regex = ts.regex; + // first try and sort Hex codes + if ( regex.hex.test( b ) ) { + aNum = parseInt( a.match( regex.hex ), 16 ); + bNum = parseInt( b.match( regex.hex ), 16 ); + if ( aNum < bNum ) { return -1; } + if ( aNum > bNum ) { return 1; } + } + // chunk/tokenize + aNum = a.replace( regex.chunk, '\\0$1\\0' ).replace( regex.chunks, '' ).split( '\\0' ); + bNum = b.replace( regex.chunk, '\\0$1\\0' ).replace( regex.chunks, '' ).split( '\\0' ); + max = Math.max( aNum.length, bNum.length ); + // natural sorting through split numeric strings and default strings + for ( indx = 0; indx < max; indx++ ) { + // find floats not starting with '0', string or 0 if not defined + aFloat = isNaN( aNum[ indx ] ) ? aNum[ indx ] || 0 : parseFloat( aNum[ indx ] ) || 0; + bFloat = isNaN( bNum[ indx ] ) ? bNum[ indx ] || 0 : parseFloat( bNum[ indx ] ) || 0; + // handle numeric vs string comparison - number < string - (Kyle Adams) + if ( isNaN( aFloat ) !== isNaN( bFloat ) ) { return isNaN( aFloat ) ? 1 : -1; } + // rely on string comparison if different types - i.e. '02' < 2 != '02' < '2' + if ( typeof aFloat !== typeof bFloat ) { + aFloat += ''; + bFloat += ''; + } + if ( aFloat < bFloat ) { return -1; } + if ( aFloat > bFloat ) { return 1; } + } + return 0; + }, + + sortNaturalAsc : function( a, b, col, c ) { + if ( a === b ) { return 0; } + var empty = ts.string[ ( c.empties[ col ] || c.emptyTo ) ]; + if ( a === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? -1 : 1 ) : -empty || -1; } + if ( b === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? 1 : -1 ) : empty || 1; } + return ts.sortNatural( a, b ); + }, + + sortNaturalDesc : function( a, b, col, c ) { + if ( a === b ) { return 0; } + var empty = ts.string[ ( c.empties[ col ] || c.emptyTo ) ]; + if ( a === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? -1 : 1 ) : empty || 1; } + if ( b === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? 1 : -1 ) : -empty || -1; } + return ts.sortNatural( b, a ); + }, + + // basic alphabetical sort + sortText : function( a, b ) { + return a > b ? 1 : ( a < b ? -1 : 0 ); + }, + + // return text string value by adding up ascii value + // so the text is somewhat sorted when using a digital sort + // this is NOT an alphanumeric sort + getTextValue : function( val, num, max ) { + if ( max ) { + // make sure the text value is greater than the max numerical value (max) + var indx, + len = val ? val.length : 0, + n = max + num; + for ( indx = 0; indx < len; indx++ ) { + n += val.charCodeAt( indx ); + } + return num * n; + } + return 0; + }, + + sortNumericAsc : function( a, b, num, max, col, c ) { + if ( a === b ) { return 0; } + var empty = ts.string[ ( c.empties[ col ] || c.emptyTo ) ]; + if ( a === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? -1 : 1 ) : -empty || -1; } + if ( b === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? 1 : -1 ) : empty || 1; } + if ( isNaN( a ) ) { a = ts.getTextValue( a, num, max ); } + if ( isNaN( b ) ) { b = ts.getTextValue( b, num, max ); } + return a - b; + }, + + sortNumericDesc : function( a, b, num, max, col, c ) { + if ( a === b ) { return 0; } + var empty = ts.string[ ( c.empties[ col ] || c.emptyTo ) ]; + if ( a === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? -1 : 1 ) : empty || 1; } + if ( b === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? 1 : -1 ) : -empty || -1; } + if ( isNaN( a ) ) { a = ts.getTextValue( a, num, max ); } + if ( isNaN( b ) ) { b = ts.getTextValue( b, num, max ); } + return b - a; + }, + + sortNumeric : function( a, b ) { + return a - b; + }, + + /* + ██ ██ ██ ██ █████▄ ▄████▄ ██████ ██████ ▄█████ + ██ ██ ██ ██ ██ ██ ██ ▄▄▄ ██▄▄ ██ ▀█▄ + ██ ██ ██ ██ ██ ██ ██ ▀██ ██▀▀ ██ ▀█▄ + ███████▀ ██ █████▀ ▀████▀ ██████ ██ █████▀ + */ + addWidget : function( widget ) { + if ( widget.id && !ts.isEmptyObject( ts.getWidgetById( widget.id ) ) ) { + console.warn( '"' + widget.id + '" widget was loaded more than once!' ); + } + ts.widgets[ ts.widgets.length ] = widget; + }, + + hasWidget : function( $table, name ) { + $table = $( $table ); + return $table.length && $table[ 0 ].config && $table[ 0 ].config.widgetInit[ name ] || false; + }, + + getWidgetById : function( name ) { + var indx, widget, + len = ts.widgets.length; + for ( indx = 0; indx < len; indx++ ) { + widget = ts.widgets[ indx ]; + if ( widget && widget.id && widget.id.toLowerCase() === name.toLowerCase() ) { + return widget; + } + } + }, + + applyWidgetOptions : function( table ) { + var indx, widget, wo, + c = table.config, + len = c.widgets.length; + if ( len ) { + for ( indx = 0; indx < len; indx++ ) { + widget = ts.getWidgetById( c.widgets[ indx ] ); + if ( widget && widget.options ) { + wo = $.extend( true, {}, widget.options ); + c.widgetOptions = $.extend( true, wo, c.widgetOptions ); + // add widgetOptions to defaults for option validator + $.extend( true, ts.defaults.widgetOptions, widget.options ); + } + } + } + }, + + addWidgetFromClass : function( table ) { + var len, indx, + c = table.config, + // look for widgets to apply from table class + // don't match from 'ui-widget-content'; use \S instead of \w to include widgets + // with dashes in the name, e.g. "widget-test-2" extracts out "test-2" + regex = '^' + c.widgetClass.replace( ts.regex.templateName, '(\\S+)+' ) + '$', + widgetClass = new RegExp( regex, 'g' ), + // split up table class (widget id's can include dashes) - stop using match + // otherwise only one widget gets extracted, see #1109 + widgets = ( table.className || '' ).split( ts.regex.spaces ); + if ( widgets.length ) { + len = widgets.length; + for ( indx = 0; indx < len; indx++ ) { + if ( widgets[ indx ].match( widgetClass ) ) { + c.widgets[ c.widgets.length ] = widgets[ indx ].replace( widgetClass, '$1' ); + } + } + } + }, + + applyWidgetId : function( table, id, init ) { + table = $(table)[0]; + var applied, time, name, + c = table.config, + wo = c.widgetOptions, + debug = ts.debug(c, 'core'), + widget = ts.getWidgetById( id ); + if ( widget ) { + name = widget.id; + applied = false; + // add widget name to option list so it gets reapplied after sorting, filtering, etc + if ( $.inArray( name, c.widgets ) < 0 ) { + c.widgets[ c.widgets.length ] = name; + } + if ( debug ) { time = new Date(); } + + if ( init || !( c.widgetInit[ name ] ) ) { + // set init flag first to prevent calling init more than once (e.g. pager) + c.widgetInit[ name ] = true; + if ( table.hasInitialized ) { + // don't reapply widget options on tablesorter init + ts.applyWidgetOptions( table ); + } + if ( typeof widget.init === 'function' ) { + applied = true; + if ( debug ) { + console[ console.group ? 'group' : 'log' ]( 'Initializing ' + name + ' widget' ); + } + widget.init( table, widget, c, wo ); + } + } + if ( !init && typeof widget.format === 'function' ) { + applied = true; + if ( debug ) { + console[ console.group ? 'group' : 'log' ]( 'Updating ' + name + ' widget' ); + } + widget.format( table, c, wo, false ); + } + if ( debug ) { + if ( applied ) { + console.log( 'Completed ' + ( init ? 'initializing ' : 'applying ' ) + name + ' widget' + ts.benchmark( time ) ); + if ( console.groupEnd ) { console.groupEnd(); } + } + } + } + }, + + applyWidget : function( table, init, callback ) { + table = $( table )[ 0 ]; // in case this is called externally + var indx, len, names, widget, time, + c = table.config, + debug = ts.debug(c, 'core'), + widgets = []; + // prevent numerous consecutive widget applications + if ( init !== false && table.hasInitialized && ( table.isApplyingWidgets || table.isUpdating ) ) { + return; + } + if ( debug ) { time = new Date(); } + ts.addWidgetFromClass( table ); + // prevent "tablesorter-ready" from firing multiple times in a row + clearTimeout( c.timerReady ); + if ( c.widgets.length ) { + table.isApplyingWidgets = true; + // ensure unique widget ids + c.widgets = $.grep( c.widgets, function( val, index ) { + return $.inArray( val, c.widgets ) === index; + }); + names = c.widgets || []; + len = names.length; + // build widget array & add priority as needed + for ( indx = 0; indx < len; indx++ ) { + widget = ts.getWidgetById( names[ indx ] ); + if ( widget && widget.id ) { + // set priority to 10 if not defined + if ( !widget.priority ) { widget.priority = 10; } + widgets[ indx ] = widget; + } else if ( debug ) { + console.warn( '"' + names[ indx ] + '" was enabled, but the widget code has not been loaded!' ); + } + } + // sort widgets by priority + widgets.sort( function( a, b ) { + return a.priority < b.priority ? -1 : a.priority === b.priority ? 0 : 1; + }); + // add/update selected widgets + len = widgets.length; + if ( debug ) { + console[ console.group ? 'group' : 'log' ]( 'Start ' + ( init ? 'initializing' : 'applying' ) + ' widgets' ); + } + for ( indx = 0; indx < len; indx++ ) { + widget = widgets[ indx ]; + if ( widget && widget.id ) { + ts.applyWidgetId( table, widget.id, init ); + } + } + if ( debug && console.groupEnd ) { console.groupEnd(); } + } + c.timerReady = setTimeout( function() { + table.isApplyingWidgets = false; + $.data( table, 'lastWidgetApplication', new Date() ); + c.$table.triggerHandler( 'tablesorter-ready' ); + // callback executed on init only + if ( !init && typeof callback === 'function' ) { + callback( table ); + } + if ( debug ) { + widget = c.widgets.length; + console.log( 'Completed ' + + ( init === true ? 'initializing ' : 'applying ' ) + widget + + ' widget' + ( widget !== 1 ? 's' : '' ) + ts.benchmark( time ) ); + } + }, 10 ); + }, + + removeWidget : function( table, name, refreshing ) { + table = $( table )[ 0 ]; + var index, widget, indx, len, + c = table.config; + // if name === true, add all widgets from $.tablesorter.widgets + if ( name === true ) { + name = []; + len = ts.widgets.length; + for ( indx = 0; indx < len; indx++ ) { + widget = ts.widgets[ indx ]; + if ( widget && widget.id ) { + name[ name.length ] = widget.id; + } + } + } else { + // name can be either an array of widgets names, + // or a space/comma separated list of widget names + name = ( $.isArray( name ) ? name.join( ',' ) : name || '' ).toLowerCase().split( /[\s,]+/ ); + } + len = name.length; + for ( index = 0; index < len; index++ ) { + widget = ts.getWidgetById( name[ index ] ); + indx = $.inArray( name[ index ], c.widgets ); + // don't remove the widget from config.widget if refreshing + if ( indx >= 0 && refreshing !== true ) { + c.widgets.splice( indx, 1 ); + } + if ( widget && widget.remove ) { + if ( ts.debug(c, 'core') ) { + console.log( ( refreshing ? 'Refreshing' : 'Removing' ) + ' "' + name[ index ] + '" widget' ); + } + widget.remove( table, c, c.widgetOptions, refreshing ); + c.widgetInit[ name[ index ] ] = false; + } + } + c.$table.triggerHandler( 'widgetRemoveEnd', table ); + }, + + refreshWidgets : function( table, doAll, dontapply ) { + table = $( table )[ 0 ]; // see issue #243 + var indx, widget, + c = table.config, + curWidgets = c.widgets, + widgets = ts.widgets, + len = widgets.length, + list = [], + callback = function( table ) { + $( table ).triggerHandler( 'refreshComplete' ); + }; + // remove widgets not defined in config.widgets, unless doAll is true + for ( indx = 0; indx < len; indx++ ) { + widget = widgets[ indx ]; + if ( widget && widget.id && ( doAll || $.inArray( widget.id, curWidgets ) < 0 ) ) { + list[ list.length ] = widget.id; + } + } + ts.removeWidget( table, list.join( ',' ), true ); + if ( dontapply !== true ) { + // call widget init if + ts.applyWidget( table, doAll || false, callback ); + if ( doAll ) { + // apply widget format + ts.applyWidget( table, false, callback ); + } + } else { + callback( table ); + } + }, + + /* + ██ ██ ██████ ██ ██ ██ ██████ ██ ██████ ▄█████ + ██ ██ ██ ██ ██ ██ ██ ██ ██▄▄ ▀█▄ + ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀█▄ + ▀████▀ ██ ██ ██████ ██ ██ ██ ██████ █████▀ + */ + benchmark : function( diff ) { + return ( ' (' + ( new Date().getTime() - diff.getTime() ) + ' ms)' ); + }, + // deprecated ts.log + log : function() { + console.log( arguments ); + }, + debug : function(c, name) { + return c && ( + c.debug === true || + typeof c.debug === 'string' && c.debug.indexOf(name) > -1 + ); + }, + + // $.isEmptyObject from jQuery v1.4 + isEmptyObject : function( obj ) { + /*jshint forin: false */ + for ( var name in obj ) { + return false; + } + return true; + }, + + isValueInArray : function( column, arry ) { + var indx, + len = arry && arry.length || 0; + for ( indx = 0; indx < len; indx++ ) { + if ( arry[ indx ][ 0 ] === column ) { + return indx; + } + } + return -1; + }, + + formatFloat : function( str, table ) { + if ( typeof str !== 'string' || str === '' ) { return str; } + // allow using formatFloat without a table; defaults to US number format + var num, + usFormat = table && table.config ? table.config.usNumberFormat !== false : + typeof table !== 'undefined' ? table : true; + if ( usFormat ) { + // US Format - 1,234,567.89 -> 1234567.89 + str = str.replace( ts.regex.comma, '' ); + } else { + // German Format = 1.234.567,89 -> 1234567.89 + // French Format = 1 234 567,89 -> 1234567.89 + str = str.replace( ts.regex.digitNonUS, '' ).replace( ts.regex.comma, '.' ); + } + if ( ts.regex.digitNegativeTest.test( str ) ) { + // make (#) into a negative number -> (10) = -10 + str = str.replace( ts.regex.digitNegativeReplace, '-$1' ); + } + num = parseFloat( str ); + // return the text instead of zero + return isNaN( num ) ? $.trim( str ) : num; + }, + + isDigit : function( str ) { + // replace all unwanted chars and match + return isNaN( str ) ? + ts.regex.digitTest.test( str.toString().replace( ts.regex.digitReplace, '' ) ) : + str !== ''; + }, + + // computeTableHeaderCellIndexes from: + // http://www.javascripttoolbox.com/lib/table/examples.php + // http://www.javascripttoolbox.com/temp/table_cellindex.html + computeColumnIndex : function( $rows, c ) { + var i, j, k, l, cell, cells, rowIndex, rowSpan, colSpan, firstAvailCol, + // total columns has been calculated, use it to set the matrixrow + columns = c && c.columns || 0, + matrix = [], + matrixrow = new Array( columns ); + for ( i = 0; i < $rows.length; i++ ) { + cells = $rows[ i ].cells; + for ( j = 0; j < cells.length; j++ ) { + cell = cells[ j ]; + rowIndex = i; + rowSpan = cell.rowSpan || 1; + colSpan = cell.colSpan || 1; + if ( typeof matrix[ rowIndex ] === 'undefined' ) { + matrix[ rowIndex ] = []; + } + // Find first available column in the first row + for ( k = 0; k < matrix[ rowIndex ].length + 1; k++ ) { + if ( typeof matrix[ rowIndex ][ k ] === 'undefined' ) { + firstAvailCol = k; + break; + } + } + // jscs:disable disallowEmptyBlocks + if ( columns && cell.cellIndex === firstAvailCol ) { + // don't to anything + } else if ( cell.setAttribute ) { + // jscs:enable disallowEmptyBlocks + // add data-column (setAttribute = IE8+) + cell.setAttribute( 'data-column', firstAvailCol ); + } else { + // remove once we drop support for IE7 - 1/12/2016 + $( cell ).attr( 'data-column', firstAvailCol ); + } + for ( k = rowIndex; k < rowIndex + rowSpan; k++ ) { + if ( typeof matrix[ k ] === 'undefined' ) { + matrix[ k ] = []; + } + matrixrow = matrix[ k ]; + for ( l = firstAvailCol; l < firstAvailCol + colSpan; l++ ) { + matrixrow[ l ] = 'x'; + } + } + } + } + ts.checkColumnCount($rows, matrix, matrixrow.length); + return matrixrow.length; + }, + + checkColumnCount : function($rows, matrix, columns) { + // this DOES NOT report any tbody column issues, except for the math and + // and column selector widgets + var i, len, + valid = true, + cells = []; + for ( i = 0; i < matrix.length; i++ ) { + // some matrix entries are undefined when testing the footer because + // it is using the rowIndex property + if ( matrix[i] ) { + len = matrix[i].length; + if ( matrix[i].length !== columns ) { + valid = false; + break; + } + } + } + if ( !valid ) { + $rows.each( function( indx, el ) { + var cell = el.parentElement.nodeName; + if ( cells.indexOf( cell ) < 0 ) { + cells.push( cell ); + } + }); + console.error( + 'Invalid or incorrect number of columns in the ' + + cells.join( ' or ' ) + '; expected ' + columns + + ', but found ' + len + ' columns' + ); + } + }, + + // automatically add a colgroup with col elements set to a percentage width + fixColumnWidth : function( table ) { + table = $( table )[ 0 ]; + var overallWidth, percent, $tbodies, len, index, + c = table.config, + $colgroup = c.$table.children( 'colgroup' ); + // remove plugin-added colgroup, in case we need to refresh the widths + if ( $colgroup.length && $colgroup.hasClass( ts.css.colgroup ) ) { + $colgroup.remove(); + } + if ( c.widthFixed && c.$table.children( 'colgroup' ).length === 0 ) { + $colgroup = $( '' ); + overallWidth = c.$table.width(); + // only add col for visible columns - fixes #371 + $tbodies = c.$tbodies.find( 'tr:first' ).children( ':visible' ); + len = $tbodies.length; + for ( index = 0; index < len; index++ ) { + percent = parseInt( ( $tbodies.eq( index ).width() / overallWidth ) * 1000, 10 ) / 10 + '%'; + $colgroup.append( $( '' ).css( 'width', percent ) ); + } + c.$table.prepend( $colgroup ); + } + }, + + // get sorter, string, empty, etc options for each column from + // jQuery data, metadata, header option or header class name ('sorter-false') + // priority = jQuery data > meta > headers option > header class name + getData : function( header, configHeader, key ) { + var meta, cl4ss, + val = '', + $header = $( header ); + if ( !$header.length ) { return ''; } + meta = $.metadata ? $header.metadata() : false; + cl4ss = ' ' + ( $header.attr( 'class' ) || '' ); + if ( typeof $header.data( key ) !== 'undefined' || + typeof $header.data( key.toLowerCase() ) !== 'undefined' ) { + // 'data-lockedOrder' is assigned to 'lockedorder'; but 'data-locked-order' is assigned to 'lockedOrder' + // 'data-sort-initial-order' is assigned to 'sortInitialOrder' + val += $header.data( key ) || $header.data( key.toLowerCase() ); + } else if ( meta && typeof meta[ key ] !== 'undefined' ) { + val += meta[ key ]; + } else if ( configHeader && typeof configHeader[ key ] !== 'undefined' ) { + val += configHeader[ key ]; + } else if ( cl4ss !== ' ' && cl4ss.match( ' ' + key + '-' ) ) { + // include sorter class name 'sorter-text', etc; now works with 'sorter-my-custom-parser' + val = cl4ss.match( new RegExp( '\\s' + key + '-([\\w-]+)' ) )[ 1 ] || ''; + } + return $.trim( val ); + }, + + getColumnData : function( table, obj, indx, getCell, $headers ) { + if ( typeof obj !== 'object' || obj === null ) { + return obj; + } + table = $( table )[ 0 ]; + var $header, key, + c = table.config, + $cells = ( $headers || c.$headers ), + // c.$headerIndexed is not defined initially + $cell = c.$headerIndexed && c.$headerIndexed[ indx ] || + $cells.find( '[data-column="' + indx + '"]:last' ); + if ( typeof obj[ indx ] !== 'undefined' ) { + return getCell ? obj[ indx ] : obj[ $cells.index( $cell ) ]; + } + for ( key in obj ) { + if ( typeof key === 'string' ) { + $header = $cell + // header cell with class/id + .filter( key ) + // find elements within the header cell with cell/id + .add( $cell.find( key ) ); + if ( $header.length ) { + return obj[ key ]; + } + } + } + return; + }, + + // *** Process table *** + // add processing indicator + isProcessing : function( $table, toggle, $headers ) { + $table = $( $table ); + var c = $table[ 0 ].config, + // default to all headers + $header = $headers || $table.find( '.' + ts.css.header ); + if ( toggle ) { + // don't use sortList if custom $headers used + if ( typeof $headers !== 'undefined' && c.sortList.length > 0 ) { + // get headers from the sortList + $header = $header.filter( function() { + // get data-column from attr to keep compatibility with jQuery 1.2.6 + return this.sortDisabled ? + false : + ts.isValueInArray( parseFloat( $( this ).attr( 'data-column' ) ), c.sortList ) >= 0; + }); + } + $table.add( $header ).addClass( ts.css.processing + ' ' + c.cssProcessing ); + } else { + $table.add( $header ).removeClass( ts.css.processing + ' ' + c.cssProcessing ); + } + }, + + // detach tbody but save the position + // don't use tbody because there are portions that look for a tbody index (updateCell) + processTbody : function( table, $tb, getIt ) { + table = $( table )[ 0 ]; + if ( getIt ) { + table.isProcessing = true; + $tb.before( '' ); + return $.fn.detach ? $tb.detach() : $tb.remove(); + } + var holdr = $( table ).find( 'colgroup.tablesorter-savemyplace' ); + $tb.insertAfter( holdr ); + holdr.remove(); + table.isProcessing = false; + }, + + clearTableBody : function( table ) { + $( table )[ 0 ].config.$tbodies.children().detach(); + }, + + // used when replacing accented characters during sorting + characterEquivalents : { + 'a' : '\u00e1\u00e0\u00e2\u00e3\u00e4\u0105\u00e5', // áàâãäąå + 'A' : '\u00c1\u00c0\u00c2\u00c3\u00c4\u0104\u00c5', // ÁÀÂÃÄĄÅ + 'c' : '\u00e7\u0107\u010d', // çćč + 'C' : '\u00c7\u0106\u010c', // ÇĆČ + 'e' : '\u00e9\u00e8\u00ea\u00eb\u011b\u0119', // éèêëěę + 'E' : '\u00c9\u00c8\u00ca\u00cb\u011a\u0118', // ÉÈÊËĚĘ + 'i' : '\u00ed\u00ec\u0130\u00ee\u00ef\u0131', // íìİîïı + 'I' : '\u00cd\u00cc\u0130\u00ce\u00cf', // ÍÌİÎÏ + 'o' : '\u00f3\u00f2\u00f4\u00f5\u00f6\u014d', // óòôõöō + 'O' : '\u00d3\u00d2\u00d4\u00d5\u00d6\u014c', // ÓÒÔÕÖŌ + 'ss': '\u00df', // ß (s sharp) + 'SS': '\u1e9e', // ẞ (Capital sharp s) + 'u' : '\u00fa\u00f9\u00fb\u00fc\u016f', // úùûüů + 'U' : '\u00da\u00d9\u00db\u00dc\u016e' // ÚÙÛÜŮ + }, + + replaceAccents : function( str ) { + var chr, + acc = '[', + eq = ts.characterEquivalents; + if ( !ts.characterRegex ) { + ts.characterRegexArray = {}; + for ( chr in eq ) { + if ( typeof chr === 'string' ) { + acc += eq[ chr ]; + ts.characterRegexArray[ chr ] = new RegExp( '[' + eq[ chr ] + ']', 'g' ); + } + } + ts.characterRegex = new RegExp( acc + ']' ); + } + if ( ts.characterRegex.test( str ) ) { + for ( chr in eq ) { + if ( typeof chr === 'string' ) { + str = str.replace( ts.characterRegexArray[ chr ], chr ); + } + } + } + return str; + }, + + validateOptions : function( c ) { + var setting, setting2, typ, timer, + // ignore options containing an array + ignore = 'headers sortForce sortList sortAppend widgets'.split( ' ' ), + orig = c.originalSettings; + if ( orig ) { + if ( ts.debug(c, 'core') ) { + timer = new Date(); + } + for ( setting in orig ) { + typ = typeof ts.defaults[setting]; + if ( typ === 'undefined' ) { + console.warn( 'Tablesorter Warning! "table.config.' + setting + '" option not recognized' ); + } else if ( typ === 'object' ) { + for ( setting2 in orig[setting] ) { + typ = ts.defaults[setting] && typeof ts.defaults[setting][setting2]; + if ( $.inArray( setting, ignore ) < 0 && typ === 'undefined' ) { + console.warn( 'Tablesorter Warning! "table.config.' + setting + '.' + setting2 + '" option not recognized' ); + } + } + } + } + if ( ts.debug(c, 'core') ) { + console.log( 'validate options time:' + ts.benchmark( timer ) ); + } + } + }, + + // restore headers + restoreHeaders : function( table ) { + var index, $cell, + c = $( table )[ 0 ].config, + $headers = c.$table.find( c.selectorHeaders ), + len = $headers.length; + // don't use c.$headers here in case header cells were swapped + for ( index = 0; index < len; index++ ) { + $cell = $headers.eq( index ); + // only restore header cells if it is wrapped + // because this is also used by the updateAll method + if ( $cell.find( '.' + ts.css.headerIn ).length ) { + $cell.html( c.headerContent[ index ] ); + } + } + }, + + destroy : function( table, removeClasses, callback ) { + table = $( table )[ 0 ]; + if ( !table.hasInitialized ) { return; } + // remove all widgets + ts.removeWidget( table, true, false ); + var events, + $t = $( table ), + c = table.config, + $h = $t.find( 'thead:first' ), + $r = $h.find( 'tr.' + ts.css.headerRow ).removeClass( ts.css.headerRow + ' ' + c.cssHeaderRow ), + $f = $t.find( 'tfoot:first > tr' ).children( 'th, td' ); + if ( removeClasses === false && $.inArray( 'uitheme', c.widgets ) >= 0 ) { + // reapply uitheme classes, in case we want to maintain appearance + $t.triggerHandler( 'applyWidgetId', [ 'uitheme' ] ); + $t.triggerHandler( 'applyWidgetId', [ 'zebra' ] ); + } + // remove widget added rows, just in case + $h.find( 'tr' ).not( $r ).remove(); + // disable tablesorter - not using .unbind( namespace ) because namespacing was + // added in jQuery v1.4.3 - see http://api.jquery.com/event.namespace/ + events = 'sortReset update updateRows updateAll updateHeaders updateCell addRows updateComplete sorton ' + + 'appendCache updateCache applyWidgetId applyWidgets refreshWidgets removeWidget destroy mouseup mouseleave ' + + 'keypress sortBegin sortEnd resetToLoadState '.split( ' ' ) + .join( c.namespace + ' ' ); + $t + .removeData( 'tablesorter' ) + .unbind( events.replace( ts.regex.spaces, ' ' ) ); + c.$headers + .add( $f ) + .removeClass( [ ts.css.header, c.cssHeader, c.cssAsc, c.cssDesc, ts.css.sortAsc, ts.css.sortDesc, ts.css.sortNone ].join( ' ' ) ) + .removeAttr( 'data-column' ) + .removeAttr( 'aria-label' ) + .attr( 'aria-disabled', 'true' ); + $r + .find( c.selectorSort ) + .unbind( ( 'mousedown mouseup keypress '.split( ' ' ).join( c.namespace + ' ' ) ).replace( ts.regex.spaces, ' ' ) ); + ts.restoreHeaders( table ); + $t.toggleClass( ts.css.table + ' ' + c.tableClass + ' tablesorter-' + c.theme, removeClasses === false ); + $t.removeClass(c.namespace.slice(1)); + // clear flag in case the plugin is initialized again + table.hasInitialized = false; + delete table.config.cache; + if ( typeof callback === 'function' ) { + callback( table ); + } + if ( ts.debug(c, 'core') ) { + console.log( 'tablesorter has been removed' ); + } + } + + }; + + $.fn.tablesorter = function( settings ) { + return this.each( function() { + var table = this, + // merge & extend config options + c = $.extend( true, {}, ts.defaults, settings, ts.instanceMethods ); + // save initial settings + c.originalSettings = settings; + // create a table from data (build table widget) + if ( !table.hasInitialized && ts.buildTable && this.nodeName !== 'TABLE' ) { + // return the table (in case the original target is the table's container) + ts.buildTable( table, c ); + } else { + ts.setup( table, c ); + } + }); + }; + + // set up debug logs + if ( !( window.console && window.console.log ) ) { + // access $.tablesorter.logs for browsers that don't have a console... + ts.logs = []; + /*jshint -W020 */ + console = {}; + console.log = console.warn = console.error = console.table = function() { + var arg = arguments.length > 1 ? arguments : arguments[0]; + ts.logs[ ts.logs.length ] = { date: Date.now(), log: arg }; + }; + } + + // add default parsers + ts.addParser({ + id : 'no-parser', + is : function() { + return false; + }, + format : function() { + return ''; + }, + type : 'text' + }); + + ts.addParser({ + id : 'text', + is : function() { + return true; + }, + format : function( str, table ) { + var c = table.config; + if ( str ) { + str = $.trim( c.ignoreCase ? str.toLocaleLowerCase() : str ); + str = c.sortLocaleCompare ? ts.replaceAccents( str ) : str; + } + return str; + }, + type : 'text' + }); + + ts.regex.nondigit = /[^\w,. \-()]/g; + ts.addParser({ + id : 'digit', + is : function( str ) { + return ts.isDigit( str ); + }, + format : function( str, table ) { + var num = ts.formatFloat( ( str || '' ).replace( ts.regex.nondigit, '' ), table ); + return str && typeof num === 'number' ? num : + str ? $.trim( str && table.config.ignoreCase ? str.toLocaleLowerCase() : str ) : str; + }, + type : 'numeric' + }); + + ts.regex.currencyReplace = /[+\-,. ]/g; + ts.regex.currencyTest = /^\(?\d+[\u00a3$\u20ac\u00a4\u00a5\u00a2?.]|[\u00a3$\u20ac\u00a4\u00a5\u00a2?.]\d+\)?$/; + ts.addParser({ + id : 'currency', + is : function( str ) { + str = ( str || '' ).replace( ts.regex.currencyReplace, '' ); + // test for £$€¤¥¢ + return ts.regex.currencyTest.test( str ); + }, + format : function( str, table ) { + var num = ts.formatFloat( ( str || '' ).replace( ts.regex.nondigit, '' ), table ); + return str && typeof num === 'number' ? num : + str ? $.trim( str && table.config.ignoreCase ? str.toLocaleLowerCase() : str ) : str; + }, + type : 'numeric' + }); + + // too many protocols to add them all https://en.wikipedia.org/wiki/URI_scheme + // now, this regex can be updated before initialization + ts.regex.urlProtocolTest = /^(https?|ftp|file):\/\//; + ts.regex.urlProtocolReplace = /(https?|ftp|file):\/\/(www\.)?/; + ts.addParser({ + id : 'url', + is : function( str ) { + return ts.regex.urlProtocolTest.test( str ); + }, + format : function( str ) { + return str ? $.trim( str.replace( ts.regex.urlProtocolReplace, '' ) ) : str; + }, + type : 'text' + }); + + ts.regex.dash = /-/g; + ts.regex.isoDate = /^\d{4}[\/\-]\d{1,2}[\/\-]\d{1,2}/; + ts.addParser({ + id : 'isoDate', + is : function( str ) { + return ts.regex.isoDate.test( str ); + }, + format : function( str ) { + var date = str ? new Date( str.replace( ts.regex.dash, '/' ) ) : str; + return date instanceof Date && isFinite( date ) ? date.getTime() : str; + }, + type : 'numeric' + }); + + ts.regex.percent = /%/g; + ts.regex.percentTest = /(\d\s*?%|%\s*?\d)/; + ts.addParser({ + id : 'percent', + is : function( str ) { + return ts.regex.percentTest.test( str ) && str.length < 15; + }, + format : function( str, table ) { + return str ? ts.formatFloat( str.replace( ts.regex.percent, '' ), table ) : str; + }, + type : 'numeric' + }); + + // added image parser to core v2.17.9 + ts.addParser({ + id : 'image', + is : function( str, table, node, $node ) { + return $node.find( 'img' ).length > 0; + }, + format : function( str, table, cell ) { + return $( cell ).find( 'img' ).attr( table.config.imgAttr || 'alt' ) || str; + }, + parsed : true, // filter widget flag + type : 'text' + }); + + ts.regex.dateReplace = /(\S)([AP]M)$/i; // used by usLongDate & time parser + ts.regex.usLongDateTest1 = /^[A-Z]{3,10}\.?\s+\d{1,2},?\s+(\d{4})(\s+\d{1,2}:\d{2}(:\d{2})?(\s+[AP]M)?)?$/i; + ts.regex.usLongDateTest2 = /^\d{1,2}\s+[A-Z]{3,10}\s+\d{4}/i; + ts.addParser({ + id : 'usLongDate', + is : function( str ) { + // two digit years are not allowed cross-browser + // Jan 01, 2013 12:34:56 PM or 01 Jan 2013 + return ts.regex.usLongDateTest1.test( str ) || ts.regex.usLongDateTest2.test( str ); + }, + format : function( str ) { + var date = str ? new Date( str.replace( ts.regex.dateReplace, '$1 $2' ) ) : str; + return date instanceof Date && isFinite( date ) ? date.getTime() : str; + }, + type : 'numeric' + }); + + // testing for ##-##-#### or ####-##-##, so it's not perfect; time can be included + ts.regex.shortDateTest = /(^\d{1,2}[\/\s]\d{1,2}[\/\s]\d{4})|(^\d{4}[\/\s]\d{1,2}[\/\s]\d{1,2})/; + // escaped "-" because JSHint in Firefox was showing it as an error + ts.regex.shortDateReplace = /[\-.,]/g; + // XXY covers MDY & DMY formats + ts.regex.shortDateXXY = /(\d{1,2})[\/\s](\d{1,2})[\/\s](\d{4})/; + ts.regex.shortDateYMD = /(\d{4})[\/\s](\d{1,2})[\/\s](\d{1,2})/; + ts.convertFormat = function( dateString, format ) { + dateString = ( dateString || '' ) + .replace( ts.regex.spaces, ' ' ) + .replace( ts.regex.shortDateReplace, '/' ); + if ( format === 'mmddyyyy' ) { + dateString = dateString.replace( ts.regex.shortDateXXY, '$3/$1/$2' ); + } else if ( format === 'ddmmyyyy' ) { + dateString = dateString.replace( ts.regex.shortDateXXY, '$3/$2/$1' ); + } else if ( format === 'yyyymmdd' ) { + dateString = dateString.replace( ts.regex.shortDateYMD, '$1/$2/$3' ); + } + var date = new Date( dateString ); + return date instanceof Date && isFinite( date ) ? date.getTime() : ''; + }; + + ts.addParser({ + id : 'shortDate', // 'mmddyyyy', 'ddmmyyyy' or 'yyyymmdd' + is : function( str ) { + str = ( str || '' ).replace( ts.regex.spaces, ' ' ).replace( ts.regex.shortDateReplace, '/' ); + return ts.regex.shortDateTest.test( str ); + }, + format : function( str, table, cell, cellIndex ) { + if ( str ) { + var c = table.config, + $header = c.$headerIndexed[ cellIndex ], + format = $header.length && $header.data( 'dateFormat' ) || + ts.getData( $header, ts.getColumnData( table, c.headers, cellIndex ), 'dateFormat' ) || + c.dateFormat; + // save format because getData can be slow... + if ( $header.length ) { + $header.data( 'dateFormat', format ); + } + return ts.convertFormat( str, format ) || str; + } + return str; + }, + type : 'numeric' + }); + + // match 24 hour time & 12 hours time + am/pm - see http://regexr.com/3c3tk + ts.regex.timeTest = /^(0?[1-9]|1[0-2]):([0-5]\d)(\s[AP]M)$|^((?:[01]\d|[2][0-4]):[0-5]\d)$/i; + ts.regex.timeMatch = /(0?[1-9]|1[0-2]):([0-5]\d)(\s[AP]M)|((?:[01]\d|[2][0-4]):[0-5]\d)/i; + ts.addParser({ + id : 'time', + is : function( str ) { + return ts.regex.timeTest.test( str ); + }, + format : function( str ) { + // isolate time... ignore month, day and year + var temp, + timePart = ( str || '' ).match( ts.regex.timeMatch ), + orig = new Date( str ), + // no time component? default to 00:00 by leaving it out, but only if str is defined + time = str && ( timePart !== null ? timePart[ 0 ] : '00:00 AM' ), + date = time ? new Date( '2000/01/01 ' + time.replace( ts.regex.dateReplace, '$1 $2' ) ) : time; + if ( date instanceof Date && isFinite( date ) ) { + temp = orig instanceof Date && isFinite( orig ) ? orig.getTime() : 0; + // if original string was a valid date, add it to the decimal so the column sorts in some kind of order + // luckily new Date() ignores the decimals + return temp ? parseFloat( date.getTime() + '.' + orig.getTime() ) : date.getTime(); + } + return str; + }, + type : 'numeric' + }); + + ts.addParser({ + id : 'metadata', + is : function() { + return false; + }, + format : function( str, table, cell ) { + var c = table.config, + p = ( !c.parserMetadataName ) ? 'sortValue' : c.parserMetadataName; + return $( cell ).metadata()[ p ]; + }, + type : 'numeric' + }); + + /* + ██████ ██████ █████▄ █████▄ ▄████▄ + ▄█▀ ██▄▄ ██▄▄██ ██▄▄██ ██▄▄██ + ▄█▀ ██▀▀ ██▀▀██ ██▀▀█ ██▀▀██ + ██████ ██████ █████▀ ██ ██ ██ ██ + */ + // add default widgets + ts.addWidget({ + id : 'zebra', + priority : 90, + format : function( table, c, wo ) { + var $visibleRows, $row, count, isEven, tbodyIndex, rowIndex, len, + child = new RegExp( c.cssChildRow, 'i' ), + $tbodies = c.$tbodies.add( $( c.namespace + '_extra_table' ).children( 'tbody:not(.' + c.cssInfoBlock + ')' ) ); + for ( tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { + // loop through the visible rows + count = 0; + $visibleRows = $tbodies.eq( tbodyIndex ).children( 'tr:visible' ).not( c.selectorRemove ); + len = $visibleRows.length; + for ( rowIndex = 0; rowIndex < len; rowIndex++ ) { + $row = $visibleRows.eq( rowIndex ); + // style child rows the same way the parent row was styled + if ( !child.test( $row[ 0 ].className ) ) { count++; } + isEven = ( count % 2 === 0 ); + $row + .removeClass( wo.zebra[ isEven ? 1 : 0 ] ) + .addClass( wo.zebra[ isEven ? 0 : 1 ] ); + } + } + }, + remove : function( table, c, wo, refreshing ) { + if ( refreshing ) { return; } + var tbodyIndex, $tbody, + $tbodies = c.$tbodies, + toRemove = ( wo.zebra || [ 'even', 'odd' ] ).join( ' ' ); + for ( tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { + $tbody = ts.processTbody( table, $tbodies.eq( tbodyIndex ), true ); // remove tbody + $tbody.children().removeClass( toRemove ); + ts.processTbody( table, $tbody, false ); // restore tbody + } + } + }); + +})( jQuery ); + +/*! Widget: storage - updated 2018-03-18 (v2.30.0) */ +/*global JSON:false */ +;(function ($, window, document) { + 'use strict'; + + var ts = $.tablesorter || {}; + + // update defaults for validator; these values must be falsy! + $.extend(true, ts.defaults, { + fixedUrl: '', + widgetOptions: { + storage_fixedUrl: '', + storage_group: '', + storage_page: '', + storage_storageType: '', + storage_tableId: '', + storage_useSessionStorage: '' + } + }); + + // *** Store data in local storage, with a cookie fallback *** + /* IE7 needs JSON library for JSON.stringify - (http://caniuse.com/#search=json) + if you need it, then include https://github.com/douglascrockford/JSON-js + + $.parseJSON is not available is jQuery versions older than 1.4.1, using older + versions will only allow storing information for one page at a time + + // *** Save data (JSON format only) *** + // val must be valid JSON... use http://jsonlint.com/ to ensure it is valid + var val = { "mywidget" : "data1" }; // valid JSON uses double quotes + // $.tablesorter.storage(table, key, val); + $.tablesorter.storage(table, 'tablesorter-mywidget', val); + + // *** Get data: $.tablesorter.storage(table, key); *** + v = $.tablesorter.storage(table, 'tablesorter-mywidget'); + // val may be empty, so also check for your data + val = (v && v.hasOwnProperty('mywidget')) ? v.mywidget : ''; + alert(val); // 'data1' if saved, or '' if not + */ + ts.storage = function(table, key, value, options) { + table = $(table)[0]; + var cookieIndex, cookies, date, + hasStorage = false, + values = {}, + c = table.config, + wo = c && c.widgetOptions, + debug = ts.debug(c, 'storage'), + storageType = ( + ( options && options.storageType ) || ( wo && wo.storage_storageType ) + ).toString().charAt(0).toLowerCase(), + // deprecating "useSessionStorage"; any storageType setting overrides it + session = storageType ? '' : + ( options && options.useSessionStorage ) || ( wo && wo.storage_useSessionStorage ), + $table = $(table), + // id from (1) options ID, (2) table 'data-table-group' attribute, (3) widgetOptions.storage_tableId, + // (4) table ID, then (5) table index + id = options && options.id || + $table.attr( options && options.group || wo && wo.storage_group || 'data-table-group') || + wo && wo.storage_tableId || table.id || $('.tablesorter').index( $table ), + // url from (1) options url, (2) table 'data-table-page' attribute, (3) widgetOptions.storage_fixedUrl, + // (4) table.config.fixedUrl (deprecated), then (5) window location path + url = options && options.url || + $table.attr(options && options.page || wo && wo.storage_page || 'data-table-page') || + wo && wo.storage_fixedUrl || c && c.fixedUrl || window.location.pathname; + + // skip if using cookies + if (storageType !== 'c') { + storageType = (storageType === 's' || session) ? 'sessionStorage' : 'localStorage'; + // https://gist.github.com/paulirish/5558557 + if (storageType in window) { + try { + window[storageType].setItem('_tmptest', 'temp'); + hasStorage = true; + window[storageType].removeItem('_tmptest'); + } catch (error) { + console.warn( storageType + ' is not supported in this browser' ); + } + } + } + if (debug) { + console.log('Storage >> Using', hasStorage ? storageType : 'cookies'); + } + // *** get value *** + if ($.parseJSON) { + if (hasStorage) { + values = $.parseJSON( window[storageType][key] || 'null' ) || {}; + } else { + // old browser, using cookies + cookies = document.cookie.split(/[;\s|=]/); + // add one to get from the key to the value + cookieIndex = $.inArray(key, cookies) + 1; + values = (cookieIndex !== 0) ? $.parseJSON(cookies[cookieIndex] || 'null') || {} : {}; + } + } + // allow value to be an empty string too + if (typeof value !== 'undefined' && window.JSON && JSON.hasOwnProperty('stringify')) { + // add unique identifiers = url pathname > table ID/index on page > data + if (!values[url]) { + values[url] = {}; + } + values[url][id] = value; + // *** set value *** + if (hasStorage) { + window[storageType][key] = JSON.stringify(values); + } else { + date = new Date(); + date.setTime(date.getTime() + (31536e+6)); // 365 days + document.cookie = key + '=' + (JSON.stringify(values)).replace(/\"/g, '\"') + '; expires=' + date.toGMTString() + '; path=/'; + } + } else { + return values && values[url] ? values[url][id] : ''; + } + }; + +})(jQuery, window, document); + +/*! Widget: uitheme - updated 2018-03-18 (v2.30.0) */ +;(function ($) { + 'use strict'; + var ts = $.tablesorter || {}; + + ts.themes = { + 'bootstrap' : { + table : 'table table-bordered table-striped', + caption : 'caption', + // header class names + header : 'bootstrap-header', // give the header a gradient background (theme.bootstrap_2.css) + sortNone : '', + sortAsc : '', + sortDesc : '', + active : '', // applied when column is sorted + hover : '', // custom css required - a defined bootstrap style may not override other classes + // icon class names + icons : '', // add 'bootstrap-icon-white' to make them white; this icon class is added to the in the header + iconSortNone : 'bootstrap-icon-unsorted', // class name added to icon when column is not sorted + iconSortAsc : 'glyphicon glyphicon-chevron-up', // class name added to icon when column has ascending sort + iconSortDesc : 'glyphicon glyphicon-chevron-down', // class name added to icon when column has descending sort + filterRow : '', // filter row class + footerRow : '', + footerCells : '', + even : '', // even row zebra striping + odd : '' // odd row zebra striping + }, + 'jui' : { + table : 'ui-widget ui-widget-content ui-corner-all', // table classes + caption : 'ui-widget-content', + // header class names + header : 'ui-widget-header ui-corner-all ui-state-default', // header classes + sortNone : '', + sortAsc : '', + sortDesc : '', + active : 'ui-state-active', // applied when column is sorted + hover : 'ui-state-hover', // hover class + // icon class names + icons : 'ui-icon', // icon class added to the in the header + iconSortNone : 'ui-icon-carat-2-n-s ui-icon-caret-2-n-s', // class name added to icon when column is not sorted + iconSortAsc : 'ui-icon-carat-1-n ui-icon-caret-1-n', // class name added to icon when column has ascending sort + iconSortDesc : 'ui-icon-carat-1-s ui-icon-caret-1-s', // class name added to icon when column has descending sort + filterRow : '', + footerRow : '', + footerCells : '', + even : 'ui-widget-content', // even row zebra striping + odd : 'ui-state-default' // odd row zebra striping + } + }; + + $.extend(ts.css, { + wrapper : 'tablesorter-wrapper' // ui theme & resizable + }); + + ts.addWidget({ + id: 'uitheme', + priority: 10, + format: function(table, c, wo) { + var i, tmp, hdr, icon, time, $header, $icon, $tfoot, $h, oldtheme, oldremove, oldIconRmv, hasOldTheme, + themesAll = ts.themes, + $table = c.$table.add( $( c.namespace + '_extra_table' ) ), + $headers = c.$headers.add( $( c.namespace + '_extra_headers' ) ), + theme = c.theme || 'jui', + themes = themesAll[theme] || {}, + remove = $.trim( [ themes.sortNone, themes.sortDesc, themes.sortAsc, themes.active ].join( ' ' ) ), + iconRmv = $.trim( [ themes.iconSortNone, themes.iconSortDesc, themes.iconSortAsc ].join( ' ' ) ), + debug = ts.debug(c, 'uitheme'); + if (debug) { time = new Date(); } + // initialization code - run once + if (!$table.hasClass('tablesorter-' + theme) || c.theme !== c.appliedTheme || !wo.uitheme_applied) { + wo.uitheme_applied = true; + oldtheme = themesAll[c.appliedTheme] || {}; + hasOldTheme = !$.isEmptyObject(oldtheme); + oldremove = hasOldTheme ? [ oldtheme.sortNone, oldtheme.sortDesc, oldtheme.sortAsc, oldtheme.active ].join( ' ' ) : ''; + oldIconRmv = hasOldTheme ? [ oldtheme.iconSortNone, oldtheme.iconSortDesc, oldtheme.iconSortAsc ].join( ' ' ) : ''; + if (hasOldTheme) { + wo.zebra[0] = $.trim( ' ' + wo.zebra[0].replace(' ' + oldtheme.even, '') ); + wo.zebra[1] = $.trim( ' ' + wo.zebra[1].replace(' ' + oldtheme.odd, '') ); + c.$tbodies.children().removeClass( [ oldtheme.even, oldtheme.odd ].join(' ') ); + } + // update zebra stripes + if (themes.even) { wo.zebra[0] += ' ' + themes.even; } + if (themes.odd) { wo.zebra[1] += ' ' + themes.odd; } + // add caption style + $table.children('caption') + .removeClass(oldtheme.caption || '') + .addClass(themes.caption); + // add table/footer class names + $tfoot = $table + // remove other selected themes + .removeClass( (c.appliedTheme ? 'tablesorter-' + (c.appliedTheme || '') : '') + ' ' + (oldtheme.table || '') ) + .addClass('tablesorter-' + theme + ' ' + (themes.table || '')) // add theme widget class name + .children('tfoot'); + c.appliedTheme = c.theme; + + if ($tfoot.length) { + $tfoot + // if oldtheme.footerRow or oldtheme.footerCells are undefined, all class names are removed + .children('tr').removeClass(oldtheme.footerRow || '').addClass(themes.footerRow) + .children('th, td').removeClass(oldtheme.footerCells || '').addClass(themes.footerCells); + } + // update header classes + $headers + .removeClass( (hasOldTheme ? [ oldtheme.header, oldtheme.hover, oldremove ].join(' ') : '') || '' ) + .addClass(themes.header) + .not('.sorter-false') + .unbind('mouseenter.tsuitheme mouseleave.tsuitheme') + .bind('mouseenter.tsuitheme mouseleave.tsuitheme', function(event) { + // toggleClass with switch added in jQuery 1.3 + $(this)[ event.type === 'mouseenter' ? 'addClass' : 'removeClass' ](themes.hover || ''); + }); + + $headers.each(function() { + var $this = $(this); + if (!$this.find('.' + ts.css.wrapper).length) { + // Firefox needs this inner div to position the icon & resizer correctly + $this.wrapInner('
'); + } + }); + if (c.cssIcon) { + // if c.cssIcon is '', then no is added to the header + $headers + .find('.' + ts.css.icon) + .removeClass(hasOldTheme ? [ oldtheme.icons, oldIconRmv ].join(' ') : '') + .addClass(themes.icons || ''); + } + // filter widget initializes after uitheme + if (ts.hasWidget( c.table, 'filter' )) { + tmp = function() { + $table.children('thead').children('.' + ts.css.filterRow) + .removeClass(hasOldTheme ? oldtheme.filterRow || '' : '') + .addClass(themes.filterRow || ''); + }; + if (wo.filter_initialized) { + tmp(); + } else { + $table.one('filterInit', function() { + tmp(); + }); + } + } + } + for (i = 0; i < c.columns; i++) { + $header = c.$headers + .add($(c.namespace + '_extra_headers')) + .not('.sorter-false') + .filter('[data-column="' + i + '"]'); + $icon = (ts.css.icon) ? $header.find('.' + ts.css.icon) : $(); + $h = $headers.not('.sorter-false').filter('[data-column="' + i + '"]:last'); + if ($h.length) { + $header.removeClass(remove); + $icon.removeClass(iconRmv); + if ($h[0].sortDisabled) { + // no sort arrows for disabled columns! + $icon.removeClass(themes.icons || ''); + } else { + hdr = themes.sortNone; + icon = themes.iconSortNone; + if ($h.hasClass(ts.css.sortAsc)) { + hdr = [ themes.sortAsc, themes.active ].join(' '); + icon = themes.iconSortAsc; + } else if ($h.hasClass(ts.css.sortDesc)) { + hdr = [ themes.sortDesc, themes.active ].join(' '); + icon = themes.iconSortDesc; + } + $header.addClass(hdr); + $icon.addClass(icon || ''); + } + } + } + if (debug) { + console.log('uitheme >> Applied ' + theme + ' theme' + ts.benchmark(time)); + } + }, + remove: function(table, c, wo, refreshing) { + if (!wo.uitheme_applied) { return; } + var $table = c.$table, + theme = c.appliedTheme || 'jui', + themes = ts.themes[ theme ] || ts.themes.jui, + $headers = $table.children('thead').children(), + remove = themes.sortNone + ' ' + themes.sortDesc + ' ' + themes.sortAsc, + iconRmv = themes.iconSortNone + ' ' + themes.iconSortDesc + ' ' + themes.iconSortAsc; + $table.removeClass('tablesorter-' + theme + ' ' + themes.table); + wo.uitheme_applied = false; + if (refreshing) { return; } + $table.find(ts.css.header).removeClass(themes.header); + $headers + .unbind('mouseenter.tsuitheme mouseleave.tsuitheme') // remove hover + .removeClass(themes.hover + ' ' + remove + ' ' + themes.active) + .filter('.' + ts.css.filterRow) + .removeClass(themes.filterRow); + $headers.find('.' + ts.css.icon).removeClass(themes.icons + ' ' + iconRmv); + } + }); + +})(jQuery); + +/*! Widget: columns - updated 5/24/2017 (v2.28.11) */ +;(function ($) { + 'use strict'; + var ts = $.tablesorter || {}; + + ts.addWidget({ + id: 'columns', + priority: 65, + options : { + columns : [ 'primary', 'secondary', 'tertiary' ] + }, + format: function(table, c, wo) { + var $tbody, tbodyIndex, $rows, rows, $row, $cells, remove, indx, + $table = c.$table, + $tbodies = c.$tbodies, + sortList = c.sortList, + len = sortList.length, + // removed c.widgetColumns support + css = wo && wo.columns || [ 'primary', 'secondary', 'tertiary' ], + last = css.length - 1; + remove = css.join(' '); + // check if there is a sort (on initialization there may not be one) + for (tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { + $tbody = ts.processTbody(table, $tbodies.eq(tbodyIndex), true); // detach tbody + $rows = $tbody.children('tr'); + // loop through the visible rows + $rows.each(function() { + $row = $(this); + if (this.style.display !== 'none') { + // remove all columns class names + $cells = $row.children().removeClass(remove); + // add appropriate column class names + if (sortList && sortList[0]) { + // primary sort column class + $cells.eq(sortList[0][0]).addClass(css[0]); + if (len > 1) { + for (indx = 1; indx < len; indx++) { + // secondary, tertiary, etc sort column classes + $cells.eq(sortList[indx][0]).addClass( css[indx] || css[last] ); + } + } + } + } + }); + ts.processTbody(table, $tbody, false); + } + // add classes to thead and tfoot + rows = wo.columns_thead !== false ? [ 'thead tr' ] : []; + if (wo.columns_tfoot !== false) { + rows.push('tfoot tr'); + } + if (rows.length) { + $rows = $table.find( rows.join(',') ).children().removeClass(remove); + if (len) { + for (indx = 0; indx < len; indx++) { + // add primary. secondary, tertiary, etc sort column classes + $rows.filter('[data-column="' + sortList[indx][0] + '"]').addClass(css[indx] || css[last]); + } + } + } + }, + remove: function(table, c, wo) { + var tbodyIndex, $tbody, + $tbodies = c.$tbodies, + remove = (wo.columns || [ 'primary', 'secondary', 'tertiary' ]).join(' '); + c.$headers.removeClass(remove); + c.$table.children('tfoot').children('tr').children('th, td').removeClass(remove); + for (tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { + $tbody = ts.processTbody(table, $tbodies.eq(tbodyIndex), true); // remove tbody + $tbody.children('tr').each(function() { + $(this).children().removeClass(remove); + }); + ts.processTbody(table, $tbody, false); // restore tbody + } + } + }); + +})(jQuery); + +/*! Widget: filter - updated 2018-03-18 (v2.30.0) *//* + * Requires tablesorter v2.8+ and jQuery 1.7+ + * by Rob Garrison + */ +;( function ( $ ) { + 'use strict'; + var tsf, tsfRegex, + ts = $.tablesorter || {}, + tscss = ts.css, + tskeyCodes = ts.keyCodes; + + $.extend( tscss, { + filterRow : 'tablesorter-filter-row', + filter : 'tablesorter-filter', + filterDisabled : 'disabled', + filterRowHide : 'hideme' + }); + + $.extend( tskeyCodes, { + backSpace : 8, + escape : 27, + space : 32, + left : 37, + down : 40 + }); + + ts.addWidget({ + id: 'filter', + priority: 50, + options : { + filter_cellFilter : '', // css class name added to the filter cell ( string or array ) + filter_childRows : false, // if true, filter includes child row content in the search + filter_childByColumn : false, // ( filter_childRows must be true ) if true = search child rows by column; false = search all child row text grouped + filter_childWithSibs : true, // if true, include matching child row siblings + filter_columnAnyMatch: true, // if true, allows using '#:{query}' in AnyMatch searches ( column:query ) + filter_columnFilters : true, // if true, a filter will be added to the top of each table column + filter_cssFilter : '', // css class name added to the filter row & each input in the row ( tablesorter-filter is ALWAYS added ) + filter_defaultAttrib : 'data-value', // data attribute in the header cell that contains the default filter value + filter_defaultFilter : {}, // add a default column filter type '~{query}' to make fuzzy searches default; '{q1} AND {q2}' to make all searches use a logical AND. + filter_excludeFilter : {}, // filters to exclude, per column + filter_external : '', // jQuery selector string ( or jQuery object ) of external filters + filter_filteredRow : 'filtered', // class added to filtered rows; define in css with "display:none" to hide the filtered-out rows + filter_filterLabel : 'Filter "{{label}}" column by...', // Aria-label added to filter input/select; see #1495 + filter_formatter : null, // add custom filter elements to the filter row + filter_functions : null, // add custom filter functions using this option + filter_hideEmpty : true, // hide filter row when table is empty + filter_hideFilters : false, // collapse filter row when mouse leaves the area + filter_ignoreCase : true, // if true, make all searches case-insensitive + filter_liveSearch : true, // if true, search column content while the user types ( with a delay ) + filter_matchType : { 'input': 'exact', 'select': 'exact' }, // global query settings ('exact' or 'match'); overridden by "filter-match" or "filter-exact" class + filter_onlyAvail : 'filter-onlyAvail', // a header with a select dropdown & this class name will only show available ( visible ) options within the drop down + filter_placeholder : { search : '', select : '' }, // default placeholder text ( overridden by any header 'data-placeholder' setting ) + filter_reset : null, // jQuery selector string of an element used to reset the filters + filter_resetOnEsc : true, // Reset filter input when the user presses escape - normalized across browsers + filter_saveFilters : false, // Use the $.tablesorter.storage utility to save the most recent filters + filter_searchDelay : 300, // typing delay in milliseconds before starting a search + filter_searchFiltered: true, // allow searching through already filtered rows in special circumstances; will speed up searching in large tables if true + filter_selectSource : null, // include a function to return an array of values to be added to the column filter select + filter_selectSourceSeparator : '|', // filter_selectSource array text left of the separator is added to the option value, right into the option text + filter_serversideFiltering : false, // if true, must perform server-side filtering b/c client-side filtering is disabled, but the ui and events will still be used. + filter_startsWith : false, // if true, filter start from the beginning of the cell contents + filter_useParsedData : false // filter all data using parsed content + }, + format: function( table, c, wo ) { + if ( !c.$table.hasClass( 'hasFilters' ) ) { + tsf.init( table, c, wo ); + } + }, + remove: function( table, c, wo, refreshing ) { + var tbodyIndex, $tbody, + $table = c.$table, + $tbodies = c.$tbodies, + events = ( + 'addRows updateCell update updateRows updateComplete appendCache filterReset ' + + 'filterAndSortReset filterFomatterUpdate filterEnd search stickyHeadersInit ' + ).split( ' ' ).join( c.namespace + 'filter ' ); + $table + .removeClass( 'hasFilters' ) + // add filter namespace to all BUT search + .unbind( events.replace( ts.regex.spaces, ' ' ) ) + // remove the filter row even if refreshing, because the column might have been moved + .find( '.' + tscss.filterRow ).remove(); + wo.filter_initialized = false; + if ( refreshing ) { return; } + for ( tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { + $tbody = ts.processTbody( table, $tbodies.eq( tbodyIndex ), true ); // remove tbody + $tbody.children().removeClass( wo.filter_filteredRow ).show(); + ts.processTbody( table, $tbody, false ); // restore tbody + } + if ( wo.filter_reset ) { + $( document ).undelegate( wo.filter_reset, 'click' + c.namespace + 'filter' ); + } + } + }); + + tsf = ts.filter = { + + // regex used in filter 'check' functions - not for general use and not documented + regex: { + regex : /^\/((?:\\\/|[^\/])+)\/([migyu]{0,5})?$/, // regex to test for regex + child : /tablesorter-childRow/, // child row class name; this gets updated in the script + filtered : /filtered/, // filtered (hidden) row class name; updated in the script + type : /undefined|number/, // check type + exact : /(^[\"\'=]+)|([\"\'=]+$)/g, // exact match (allow '==') + operators : /[<>=]/g, // replace operators + query : '(q|query)', // replace filter queries + wild01 : /\?/g, // wild card match 0 or 1 + wild0More : /\*/g, // wild care match 0 or more + quote : /\"/g, + isNeg1 : /(>=?\s*-\d)/, + isNeg2 : /(<=?\s*\d)/ + }, + // function( c, data ) { } + // c = table.config + // data.$row = jQuery object of the row currently being processed + // data.$cells = jQuery object of all cells within the current row + // data.filters = array of filters for all columns ( some may be undefined ) + // data.filter = filter for the current column + // data.iFilter = same as data.filter, except lowercase ( if wo.filter_ignoreCase is true ) + // data.exact = table cell text ( or parsed data if column parser enabled; may be a number & not a string ) + // data.iExact = same as data.exact, except lowercase ( if wo.filter_ignoreCase is true; may be a number & not a string ) + // data.cache = table cell text from cache, so it has been parsed ( & in all lower case if c.ignoreCase is true ) + // data.cacheArray = An array of parsed content from each table cell in the row being processed + // data.index = column index; table = table element ( DOM ) + // data.parsed = array ( by column ) of boolean values ( from filter_useParsedData or 'filter-parsed' class ) + types: { + or : function( c, data, vars ) { + // look for "|", but not if it is inside of a regular expression + if ( ( tsfRegex.orTest.test( data.iFilter ) || tsfRegex.orSplit.test( data.filter ) ) && + // this test for regex has potential to slow down the overall search + !tsfRegex.regex.test( data.filter ) ) { + var indx, filterMatched, query, regex, + // duplicate data but split filter + data2 = $.extend( {}, data ), + filter = data.filter.split( tsfRegex.orSplit ), + iFilter = data.iFilter.split( tsfRegex.orSplit ), + len = filter.length; + for ( indx = 0; indx < len; indx++ ) { + data2.nestedFilters = true; + data2.filter = '' + ( tsf.parseFilter( c, filter[ indx ], data ) || '' ); + data2.iFilter = '' + ( tsf.parseFilter( c, iFilter[ indx ], data ) || '' ); + query = '(' + ( tsf.parseFilter( c, data2.filter, data ) || '' ) + ')'; + try { + // use try/catch, because query may not be a valid regex if "|" is contained within a partial regex search, + // e.g "/(Alex|Aar" -> Uncaught SyntaxError: Invalid regular expression: /(/(Alex)/: Unterminated group + regex = new RegExp( data.isMatch ? query : '^' + query + '$', c.widgetOptions.filter_ignoreCase ? 'i' : '' ); + // filterMatched = data2.filter === '' && indx > 0 ? true + // look for an exact match with the 'or' unless the 'filter-match' class is found + filterMatched = regex.test( data2.exact ) || tsf.processTypes( c, data2, vars ); + if ( filterMatched ) { + return filterMatched; + } + } catch ( error ) { + return null; + } + } + // may be null from processing types + return filterMatched || false; + } + return null; + }, + // Look for an AND or && operator ( logical and ) + and : function( c, data, vars ) { + if ( tsfRegex.andTest.test( data.filter ) ) { + var indx, filterMatched, result, query, regex, + // duplicate data but split filter + data2 = $.extend( {}, data ), + filter = data.filter.split( tsfRegex.andSplit ), + iFilter = data.iFilter.split( tsfRegex.andSplit ), + len = filter.length; + for ( indx = 0; indx < len; indx++ ) { + data2.nestedFilters = true; + data2.filter = '' + ( tsf.parseFilter( c, filter[ indx ], data ) || '' ); + data2.iFilter = '' + ( tsf.parseFilter( c, iFilter[ indx ], data ) || '' ); + query = ( '(' + ( tsf.parseFilter( c, data2.filter, data ) || '' ) + ')' ) + // replace wild cards since /(a*)/i will match anything + .replace( tsfRegex.wild01, '\\S{1}' ).replace( tsfRegex.wild0More, '\\S*' ); + try { + // use try/catch just in case RegExp is invalid + regex = new RegExp( data.isMatch ? query : '^' + query + '$', c.widgetOptions.filter_ignoreCase ? 'i' : '' ); + // look for an exact match with the 'and' unless the 'filter-match' class is found + result = ( regex.test( data2.exact ) || tsf.processTypes( c, data2, vars ) ); + if ( indx === 0 ) { + filterMatched = result; + } else { + filterMatched = filterMatched && result; + } + } catch ( error ) { + return null; + } + } + // may be null from processing types + return filterMatched || false; + } + return null; + }, + // Look for regex + regex: function( c, data ) { + if ( tsfRegex.regex.test( data.filter ) ) { + var matches, + // cache regex per column for optimal speed + regex = data.filter_regexCache[ data.index ] || tsfRegex.regex.exec( data.filter ), + isRegex = regex instanceof RegExp; + try { + if ( !isRegex ) { + // force case insensitive search if ignoreCase option set? + // if ( c.ignoreCase && !regex[2] ) { regex[2] = 'i'; } + data.filter_regexCache[ data.index ] = regex = new RegExp( regex[1], regex[2] ); + } + matches = regex.test( data.exact ); + } catch ( error ) { + matches = false; + } + return matches; + } + return null; + }, + // Look for operators >, >=, < or <= + operators: function( c, data ) { + // ignore empty strings... because '' < 10 is true + if ( tsfRegex.operTest.test( data.iFilter ) && data.iExact !== '' ) { + var cachedValue, result, txt, + table = c.table, + parsed = data.parsed[ data.index ], + query = ts.formatFloat( data.iFilter.replace( tsfRegex.operators, '' ), table ), + parser = c.parsers[ data.index ] || {}, + savedSearch = query; + // parse filter value in case we're comparing numbers ( dates ) + if ( parsed || parser.type === 'numeric' ) { + txt = $.trim( '' + data.iFilter.replace( tsfRegex.operators, '' ) ); + result = tsf.parseFilter( c, txt, data, true ); + query = ( typeof result === 'number' && result !== '' && !isNaN( result ) ) ? result : query; + } + // iExact may be numeric - see issue #149; + // check if cached is defined, because sometimes j goes out of range? ( numeric columns ) + if ( ( parsed || parser.type === 'numeric' ) && !isNaN( query ) && + typeof data.cache !== 'undefined' ) { + cachedValue = data.cache; + } else { + txt = isNaN( data.iExact ) ? data.iExact.replace( ts.regex.nondigit, '' ) : data.iExact; + cachedValue = ts.formatFloat( txt, table ); + } + if ( tsfRegex.gtTest.test( data.iFilter ) ) { + result = tsfRegex.gteTest.test( data.iFilter ) ? cachedValue >= query : cachedValue > query; + } else if ( tsfRegex.ltTest.test( data.iFilter ) ) { + result = tsfRegex.lteTest.test( data.iFilter ) ? cachedValue <= query : cachedValue < query; + } + // keep showing all rows if nothing follows the operator + if ( !result && savedSearch === '' ) { + result = true; + } + return result; + } + return null; + }, + // Look for a not match + notMatch: function( c, data ) { + if ( tsfRegex.notTest.test( data.iFilter ) ) { + var indx, + txt = data.iFilter.replace( '!', '' ), + filter = tsf.parseFilter( c, txt, data ) || ''; + if ( tsfRegex.exact.test( filter ) ) { + // look for exact not matches - see #628 + filter = filter.replace( tsfRegex.exact, '' ); + return filter === '' ? true : $.trim( filter ) !== data.iExact; + } else { + indx = data.iExact.search( $.trim( filter ) ); + return filter === '' ? true : + // return true if not found + data.anyMatch ? indx < 0 : + // return false if found + !( c.widgetOptions.filter_startsWith ? indx === 0 : indx >= 0 ); + } + } + return null; + }, + // Look for quotes or equals to get an exact match; ignore type since iExact could be numeric + exact: function( c, data ) { + /*jshint eqeqeq:false */ + if ( tsfRegex.exact.test( data.iFilter ) ) { + var txt = data.iFilter.replace( tsfRegex.exact, '' ), + filter = tsf.parseFilter( c, txt, data ) || ''; + // eslint-disable-next-line eqeqeq + return data.anyMatch ? $.inArray( filter, data.rowArray ) >= 0 : filter == data.iExact; + } + return null; + }, + // Look for a range ( using ' to ' or ' - ' ) - see issue #166; thanks matzhu! + range : function( c, data ) { + if ( tsfRegex.toTest.test( data.iFilter ) ) { + var result, tmp, range1, range2, + table = c.table, + index = data.index, + parsed = data.parsed[index], + // make sure the dash is for a range and not indicating a negative number + query = data.iFilter.split( tsfRegex.toSplit ); + + tmp = query[0].replace( ts.regex.nondigit, '' ) || ''; + range1 = ts.formatFloat( tsf.parseFilter( c, tmp, data ), table ); + tmp = query[1].replace( ts.regex.nondigit, '' ) || ''; + range2 = ts.formatFloat( tsf.parseFilter( c, tmp, data ), table ); + // parse filter value in case we're comparing numbers ( dates ) + if ( parsed || c.parsers[ index ].type === 'numeric' ) { + result = c.parsers[ index ].format( '' + query[0], table, c.$headers.eq( index ), index ); + range1 = ( result !== '' && !isNaN( result ) ) ? result : range1; + result = c.parsers[ index ].format( '' + query[1], table, c.$headers.eq( index ), index ); + range2 = ( result !== '' && !isNaN( result ) ) ? result : range2; + } + if ( ( parsed || c.parsers[ index ].type === 'numeric' ) && !isNaN( range1 ) && !isNaN( range2 ) ) { + result = data.cache; + } else { + tmp = isNaN( data.iExact ) ? data.iExact.replace( ts.regex.nondigit, '' ) : data.iExact; + result = ts.formatFloat( tmp, table ); + } + if ( range1 > range2 ) { + tmp = range1; range1 = range2; range2 = tmp; // swap + } + return ( result >= range1 && result <= range2 ) || ( range1 === '' || range2 === '' ); + } + return null; + }, + // Look for wild card: ? = single, * = multiple, or | = logical OR + wild : function( c, data ) { + if ( tsfRegex.wildOrTest.test( data.iFilter ) ) { + var query = '' + ( tsf.parseFilter( c, data.iFilter, data ) || '' ); + // look for an exact match with the 'or' unless the 'filter-match' class is found + if ( !tsfRegex.wildTest.test( query ) && data.nestedFilters ) { + query = data.isMatch ? query : '^(' + query + ')$'; + } + // parsing the filter may not work properly when using wildcards =/ + try { + return new RegExp( + query.replace( tsfRegex.wild01, '\\S{1}' ).replace( tsfRegex.wild0More, '\\S*' ), + c.widgetOptions.filter_ignoreCase ? 'i' : '' + ) + .test( data.exact ); + } catch ( error ) { + return null; + } + } + return null; + }, + // fuzzy text search; modified from https://github.com/mattyork/fuzzy ( MIT license ) + fuzzy: function( c, data ) { + if ( tsfRegex.fuzzyTest.test( data.iFilter ) ) { + var indx, + patternIndx = 0, + len = data.iExact.length, + txt = data.iFilter.slice( 1 ), + pattern = tsf.parseFilter( c, txt, data ) || ''; + for ( indx = 0; indx < len; indx++ ) { + if ( data.iExact[ indx ] === pattern[ patternIndx ] ) { + patternIndx += 1; + } + } + return patternIndx === pattern.length; + } + return null; + } + }, + init: function( table ) { + // filter language options + ts.language = $.extend( true, {}, { + to : 'to', + or : 'or', + and : 'and' + }, ts.language ); + + var options, string, txt, $header, column, val, fxn, noSelect, + c = table.config, + wo = c.widgetOptions, + processStr = function(prefix, str, suffix) { + str = str.trim(); + // don't include prefix/suffix if str is empty + return str === '' ? '' : (prefix || '') + str + (suffix || ''); + }; + c.$table.addClass( 'hasFilters' ); + c.lastSearch = []; + + // define timers so using clearTimeout won't cause an undefined error + wo.filter_searchTimer = null; + wo.filter_initTimer = null; + wo.filter_formatterCount = 0; + wo.filter_formatterInit = []; + wo.filter_anyColumnSelector = '[data-column="all"],[data-column="any"]'; + wo.filter_multipleColumnSelector = '[data-column*="-"],[data-column*=","]'; + + val = '\\{' + tsfRegex.query + '\\}'; + $.extend( tsfRegex, { + child : new RegExp( c.cssChildRow ), + filtered : new RegExp( wo.filter_filteredRow ), + alreadyFiltered : new RegExp( '(\\s+(-' + processStr('|', ts.language.or) + processStr('|', ts.language.to) + ')\\s+)', 'i' ), + toTest : new RegExp( '\\s+(-' + processStr('|', ts.language.to) + ')\\s+', 'i' ), + toSplit : new RegExp( '(?:\\s+(?:-' + processStr('|', ts.language.to) + ')\\s+)', 'gi' ), + andTest : new RegExp( '\\s+(' + processStr('', ts.language.and, '|') + '&&)\\s+', 'i' ), + andSplit : new RegExp( '(?:\\s+(?:' + processStr('', ts.language.and, '|') + '&&)\\s+)', 'gi' ), + orTest : new RegExp( '(\\|' + processStr('|\\s+', ts.language.or, '\\s+') + ')', 'i' ), + orSplit : new RegExp( '(?:\\|' + processStr('|\\s+(?:', ts.language.or, ')\\s+') + ')', 'gi' ), + iQuery : new RegExp( val, 'i' ), + igQuery : new RegExp( val, 'ig' ), + operTest : /^[<>]=?/, + gtTest : />/, + gteTest : />=/, + ltTest : /' + + ( $header.data( 'placeholder' ) || + $header.attr( 'data-placeholder' ) || + wo.filter_placeholder.select || + '' + ) + + '' : ''; + val = string; + txt = string; + if ( string.indexOf( wo.filter_selectSourceSeparator ) >= 0 ) { + val = string.split( wo.filter_selectSourceSeparator ); + txt = val[1]; + val = val[0]; + } + options += ''; + } + } + c.$table + .find( 'thead' ) + .find( 'select.' + tscss.filter + '[data-column="' + column + '"]' ) + .append( options ); + txt = wo.filter_selectSource; + fxn = typeof txt === 'function' ? true : ts.getColumnData( table, txt, column ); + if ( fxn ) { + // updating so the extra options are appended + tsf.buildSelect( c.table, column, '', true, $header.hasClass( wo.filter_onlyAvail ) ); + } + } + } + } + } + // not really updating, but if the column has both the 'filter-select' class & + // filter_functions set to true, it would append the same options twice. + tsf.buildDefault( table, true ); + + tsf.bindSearch( table, c.$table.find( '.' + tscss.filter ), true ); + if ( wo.filter_external ) { + tsf.bindSearch( table, wo.filter_external ); + } + + if ( wo.filter_hideFilters ) { + tsf.hideFilters( c ); + } + + // show processing icon + if ( c.showProcessing ) { + txt = 'filterStart filterEnd '.split( ' ' ).join( c.namespace + 'filter-sp ' ); + c.$table + .unbind( txt.replace( ts.regex.spaces, ' ' ) ) + .bind( txt, function( event, columns ) { + // only add processing to certain columns to all columns + $header = ( columns ) ? + c.$table + .find( '.' + tscss.header ) + .filter( '[data-column]' ) + .filter( function() { + return columns[ $( this ).data( 'column' ) ] !== ''; + }) : ''; + ts.isProcessing( table, event.type === 'filterStart', columns ? $header : '' ); + }); + } + + // set filtered rows count ( intially unfiltered ) + c.filteredRows = c.totalRows; + + // add default values + txt = 'tablesorter-initialized pagerBeforeInitialized '.split( ' ' ).join( c.namespace + 'filter ' ); + c.$table + .unbind( txt.replace( ts.regex.spaces, ' ' ) ) + .bind( txt, function() { + tsf.completeInit( this ); + }); + // if filter widget is added after pager has initialized; then set filter init flag + if ( c.pager && c.pager.initialized && !wo.filter_initialized ) { + c.$table.triggerHandler( 'filterFomatterUpdate' ); + setTimeout( function() { + tsf.filterInitComplete( c ); + }, 100 ); + } else if ( !wo.filter_initialized ) { + tsf.completeInit( table ); + } + }, + completeInit: function( table ) { + // redefine 'c' & 'wo' so they update properly inside this callback + var c = table.config, + wo = c.widgetOptions, + filters = tsf.setDefaults( table, c, wo ) || []; + if ( filters.length ) { + // prevent delayInit from triggering a cache build if filters are empty + if ( !( c.delayInit && filters.join( '' ) === '' ) ) { + ts.setFilters( table, filters, true ); + } + } + c.$table.triggerHandler( 'filterFomatterUpdate' ); + // trigger init after setTimeout to prevent multiple filterStart/End/Init triggers + setTimeout( function() { + if ( !wo.filter_initialized ) { + tsf.filterInitComplete( c ); + } + }, 100 ); + }, + + // $cell parameter, but not the config, is passed to the filter_formatters, + // so we have to work with it instead + formatterUpdated: function( $cell, column ) { + // prevent error if $cell is undefined - see #1056 + var $table = $cell && $cell.closest( 'table' ); + var config = $table.length && $table[0].config, + wo = config && config.widgetOptions; + if ( wo && !wo.filter_initialized ) { + // add updates by column since this function + // may be called numerous times before initialization + wo.filter_formatterInit[ column ] = 1; + } + }, + filterInitComplete: function( c ) { + var indx, len, + wo = c.widgetOptions, + count = 0, + completed = function() { + wo.filter_initialized = true; + // update lastSearch - it gets cleared often + c.lastSearch = c.$table.data( 'lastSearch' ); + c.$table.triggerHandler( 'filterInit', c ); + tsf.findRows( c.table, c.lastSearch || [] ); + if (ts.debug(c, 'filter')) { + console.log('Filter >> Widget initialized'); + } + }; + if ( $.isEmptyObject( wo.filter_formatter ) ) { + completed(); + } else { + len = wo.filter_formatterInit.length; + for ( indx = 0; indx < len; indx++ ) { + if ( wo.filter_formatterInit[ indx ] === 1 ) { + count++; + } + } + clearTimeout( wo.filter_initTimer ); + if ( !wo.filter_initialized && count === wo.filter_formatterCount ) { + // filter widget initialized + completed(); + } else if ( !wo.filter_initialized ) { + // fall back in case a filter_formatter doesn't call + // $.tablesorter.filter.formatterUpdated( $cell, column ), and the count is off + wo.filter_initTimer = setTimeout( function() { + completed(); + }, 500 ); + } + } + }, + // encode or decode filters for storage; see #1026 + processFilters: function( filters, encode ) { + var indx, + // fixes #1237; previously returning an encoded "filters" value + result = [], + mode = encode ? encodeURIComponent : decodeURIComponent, + len = filters.length; + for ( indx = 0; indx < len; indx++ ) { + if ( filters[ indx ] ) { + result[ indx ] = mode( filters[ indx ] ); + } + } + return result; + }, + setDefaults: function( table, c, wo ) { + var isArray, saved, indx, col, $filters, + // get current ( default ) filters + filters = ts.getFilters( table ) || []; + if ( wo.filter_saveFilters && ts.storage ) { + saved = ts.storage( table, 'tablesorter-filters' ) || []; + isArray = $.isArray( saved ); + // make sure we're not just getting an empty array + if ( !( isArray && saved.join( '' ) === '' || !isArray ) ) { + filters = tsf.processFilters( saved ); + } + } + // if no filters saved, then check default settings + if ( filters.join( '' ) === '' ) { + // allow adding default setting to external filters + $filters = c.$headers.add( wo.filter_$externalFilters ) + .filter( '[' + wo.filter_defaultAttrib + ']' ); + for ( indx = 0; indx <= c.columns; indx++ ) { + // include data-column='all' external filters + col = indx === c.columns ? 'all' : indx; + filters[ indx ] = $filters + .filter( '[data-column="' + col + '"]' ) + .attr( wo.filter_defaultAttrib ) || filters[indx] || ''; + } + } + c.$table.data( 'lastSearch', filters ); + return filters; + }, + parseFilter: function( c, filter, data, parsed ) { + return parsed || data.parsed[ data.index ] ? + c.parsers[ data.index ].format( filter, c.table, [], data.index ) : + filter; + }, + buildRow: function( table, c, wo ) { + var $filter, col, column, $header, makeSelect, disabled, name, ffxn, tmp, + // c.columns defined in computeThIndexes() + cellFilter = wo.filter_cellFilter, + columns = c.columns, + arry = $.isArray( cellFilter ), + buildFilter = ''; + for ( column = 0; column < columns; column++ ) { + if ( c.$headerIndexed[ column ].length ) { + // account for entire column set with colspan. See #1047 + tmp = c.$headerIndexed[ column ] && c.$headerIndexed[ column ][0].colSpan || 0; + if ( tmp > 1 ) { + buildFilter += '' ).appendTo( $filter ); + } else { + ffxn = ts.getColumnData( table, wo.filter_formatter, column ); + if ( ffxn ) { + wo.filter_formatterCount++; + buildFilter = ffxn( $filter, column ); + // no element returned, so lets go find it + if ( buildFilter && buildFilter.length === 0 ) { + buildFilter = $filter.children( 'input' ); + } + // element not in DOM, so lets attach it + if ( buildFilter && ( buildFilter.parent().length === 0 || + ( buildFilter.parent().length && buildFilter.parent()[0] !== $filter[0] ) ) ) { + $filter.append( buildFilter ); + } + } else { + buildFilter = $( '' ).appendTo( $filter ); + } + if ( buildFilter ) { + tmp = $header.data( 'placeholder' ) || + $header.attr( 'data-placeholder' ) || + wo.filter_placeholder.search || ''; + buildFilter.attr( 'placeholder', tmp ); + } + } + if ( buildFilter ) { + // add filter class name + name = ( $.isArray( wo.filter_cssFilter ) ? + ( typeof wo.filter_cssFilter[column] !== 'undefined' ? wo.filter_cssFilter[column] || '' : '' ) : + wo.filter_cssFilter ) || ''; + // copy data-column from table cell (it will include colspan) + buildFilter.addClass( tscss.filter + ' ' + name ); + name = wo.filter_filterLabel; + tmp = name.match(/{{([^}]+?)}}/g); + if (!tmp) { + tmp = [ '{{label}}' ]; + } + $.each(tmp, function(indx, attr) { + var regex = new RegExp(attr, 'g'), + data = $header.attr('data-' + attr.replace(/{{|}}/g, '')), + text = typeof data === 'undefined' ? $header.text() : data; + name = name.replace( regex, $.trim( text ) ); + }); + buildFilter.attr({ + 'data-column': $filter.attr( 'data-column' ), + 'aria-label': name + }); + if ( disabled ) { + buildFilter.attr( 'placeholder', '' ).addClass( tscss.filterDisabled )[0].disabled = true; + } + } + } + } + }, + bindSearch: function( table, $el, internal ) { + table = $( table )[0]; + $el = $( $el ); // allow passing a selector string + if ( !$el.length ) { return; } + var tmp, + c = table.config, + wo = c.widgetOptions, + namespace = c.namespace + 'filter', + $ext = wo.filter_$externalFilters; + if ( internal !== true ) { + // save anyMatch element + tmp = wo.filter_anyColumnSelector + ',' + wo.filter_multipleColumnSelector; + wo.filter_$anyMatch = $el.filter( tmp ); + if ( $ext && $ext.length ) { + wo.filter_$externalFilters = wo.filter_$externalFilters.add( $el ); + } else { + wo.filter_$externalFilters = $el; + } + // update values ( external filters added after table initialization ) + ts.setFilters( table, c.$table.data( 'lastSearch' ) || [], internal === false ); + } + // unbind events + tmp = ( 'keypress keyup keydown search change input '.split( ' ' ).join( namespace + ' ' ) ); + $el + // use data attribute instead of jQuery data since the head is cloned without including + // the data/binding + .attr( 'data-lastSearchTime', new Date().getTime() ) + .unbind( tmp.replace( ts.regex.spaces, ' ' ) ) + .bind( 'keydown' + namespace, function( event ) { + if ( event.which === tskeyCodes.escape && !table.config.widgetOptions.filter_resetOnEsc ) { + // prevent keypress event + return false; + } + }) + .bind( 'keyup' + namespace, function( event ) { + wo = table.config.widgetOptions; // make sure "wo" isn't cached + var column = parseInt( $( this ).attr( 'data-column' ), 10 ), + liveSearch = typeof wo.filter_liveSearch === 'boolean' ? wo.filter_liveSearch : + ts.getColumnData( table, wo.filter_liveSearch, column ); + if ( typeof liveSearch === 'undefined' ) { + liveSearch = wo.filter_liveSearch.fallback || false; + } + $( this ).attr( 'data-lastSearchTime', new Date().getTime() ); + // emulate what webkit does.... escape clears the filter + if ( event.which === tskeyCodes.escape ) { + // make sure to restore the last value on escape + this.value = wo.filter_resetOnEsc ? '' : c.lastSearch[column]; + // don't return if the search value is empty ( all rows need to be revealed ) + } else if ( this.value !== '' && ( + // liveSearch can contain a min value length; ignore arrow and meta keys, but allow backspace + ( typeof liveSearch === 'number' && this.value.length < liveSearch ) || + // let return & backspace continue on, but ignore arrows & non-valid characters + ( event.which !== tskeyCodes.enter && event.which !== tskeyCodes.backSpace && + ( event.which < tskeyCodes.space || ( event.which >= tskeyCodes.left && event.which <= tskeyCodes.down ) ) ) ) ) { + return; + // live search + } else if ( liveSearch === false ) { + if ( this.value !== '' && event.which !== tskeyCodes.enter ) { + return; + } + } + // change event = no delay; last true flag tells getFilters to skip newest timed input + tsf.searching( table, true, true, column ); + }) + // include change for select - fixes #473 + .bind( 'search change keypress input blur '.split( ' ' ).join( namespace + ' ' ), function( event ) { + // don't get cached data, in case data-column changes dynamically + var column = parseInt( $( this ).attr( 'data-column' ), 10 ), + eventType = event.type, + liveSearch = typeof wo.filter_liveSearch === 'boolean' ? + wo.filter_liveSearch : + ts.getColumnData( table, wo.filter_liveSearch, column ); + if ( table.config.widgetOptions.filter_initialized && + // immediate search if user presses enter + ( event.which === tskeyCodes.enter || + // immediate search if a "search" or "blur" is triggered on the input + ( eventType === 'search' || eventType === 'blur' ) || + // change & input events must be ignored if liveSearch !== true + ( eventType === 'change' || eventType === 'input' ) && + // prevent search if liveSearch is a number + ( liveSearch === true || liveSearch !== true && event.target.nodeName !== 'INPUT' ) && + // don't allow 'change' or 'input' event to process if the input value + // is the same - fixes #685 + this.value !== c.lastSearch[column] + ) + ) { + event.preventDefault(); + // init search with no delay + $( this ).attr( 'data-lastSearchTime', new Date().getTime() ); + tsf.searching( table, eventType !== 'keypress' || event.which === tskeyCodes.enter, true, column ); + } + }); + }, + searching: function( table, filter, skipFirst, column ) { + var liveSearch, + wo = table.config.widgetOptions; + if (typeof column === 'undefined') { + // no delay + liveSearch = false; + } else { + liveSearch = typeof wo.filter_liveSearch === 'boolean' ? + wo.filter_liveSearch : + // get column setting, or set to fallback value, or default to false + ts.getColumnData( table, wo.filter_liveSearch, column ); + if ( typeof liveSearch === 'undefined' ) { + liveSearch = wo.filter_liveSearch.fallback || false; + } + } + clearTimeout( wo.filter_searchTimer ); + if ( typeof filter === 'undefined' || filter === true ) { + // delay filtering + wo.filter_searchTimer = setTimeout( function() { + tsf.checkFilters( table, filter, skipFirst ); + }, liveSearch ? wo.filter_searchDelay : 10 ); + } else { + // skip delay + tsf.checkFilters( table, filter, skipFirst ); + } + }, + equalFilters: function (c, filter1, filter2) { + var indx, + f1 = [], + f2 = [], + len = c.columns + 1; // add one to include anyMatch filter + filter1 = $.isArray(filter1) ? filter1 : []; + filter2 = $.isArray(filter2) ? filter2 : []; + for (indx = 0; indx < len; indx++) { + f1[indx] = filter1[indx] || ''; + f2[indx] = filter2[indx] || ''; + } + return f1.join(',') === f2.join(','); + }, + checkFilters: function( table, filter, skipFirst ) { + var c = table.config, + wo = c.widgetOptions, + filterArray = $.isArray( filter ), + filters = ( filterArray ) ? filter : ts.getFilters( table, true ), + currentFilters = filters || []; // current filter values + // prevent errors if delay init is set + if ( $.isEmptyObject( c.cache ) ) { + // update cache if delayInit set & pager has initialized ( after user initiates a search ) + if ( c.delayInit && ( !c.pager || c.pager && c.pager.initialized ) ) { + ts.updateCache( c, function() { + tsf.checkFilters( table, false, skipFirst ); + }); + } + return; + } + // add filter array back into inputs + if ( filterArray ) { + ts.setFilters( table, filters, false, skipFirst !== true ); + if ( !wo.filter_initialized ) { + c.lastSearch = []; + c.lastCombinedFilter = ''; + } + } + if ( wo.filter_hideFilters ) { + // show/hide filter row as needed + c.$table + .find( '.' + tscss.filterRow ) + .triggerHandler( tsf.hideFiltersCheck( c ) ? 'mouseleave' : 'mouseenter' ); + } + // return if the last search is the same; but filter === false when updating the search + // see example-widget-filter.html filter toggle buttons + if ( tsf.equalFilters(c, c.lastSearch, currentFilters) ) { + if ( filter !== false ) { + return; + } else { + // force filter refresh + c.lastCombinedFilter = ''; + c.lastSearch = []; + } + } + // define filter inside it is false + filters = filters || []; + // convert filters to strings - see #1070 + filters = Array.prototype.map ? + filters.map( String ) : + // for IE8 & older browsers - maybe not the best method + filters.join( '\ufffd' ).split( '\ufffd' ); + + if ( wo.filter_initialized ) { + c.$table.triggerHandler( 'filterStart', [ filters ] ); + } + if ( c.showProcessing ) { + // give it time for the processing icon to kick in + setTimeout( function() { + tsf.findRows( table, filters, currentFilters ); + return false; + }, 30 ); + } else { + tsf.findRows( table, filters, currentFilters ); + return false; + } + }, + hideFiltersCheck: function( c ) { + if (typeof c.widgetOptions.filter_hideFilters === 'function') { + var val = c.widgetOptions.filter_hideFilters( c ); + if (typeof val === 'boolean') { + return val; + } + } + return ts.getFilters( c.$table ).join( '' ) === ''; + }, + hideFilters: function( c, $table ) { + var timer; + ( $table || c.$table ) + .find( '.' + tscss.filterRow ) + .addClass( tscss.filterRowHide ) + .bind( 'mouseenter mouseleave', function( e ) { + // save event object - http://bugs.jquery.com/ticket/12140 + var event = e, + $row = $( this ); + clearTimeout( timer ); + timer = setTimeout( function() { + if ( /enter|over/.test( event.type ) ) { + $row.removeClass( tscss.filterRowHide ); + } else { + // don't hide if input has focus + // $( ':focus' ) needs jQuery 1.6+ + if ( $( document.activeElement ).closest( 'tr' )[0] !== $row[0] ) { + // don't hide row if any filter has a value + $row.toggleClass( tscss.filterRowHide, tsf.hideFiltersCheck( c ) ); + } + } + }, 200 ); + }) + .find( 'input, select' ).bind( 'focus blur', function( e ) { + var event = e, + $row = $( this ).closest( 'tr' ); + clearTimeout( timer ); + timer = setTimeout( function() { + clearTimeout( timer ); + // don't hide row if any filter has a value + $row.toggleClass( tscss.filterRowHide, tsf.hideFiltersCheck( c ) && event.type !== 'focus' ); + }, 200 ); + }); + }, + defaultFilter: function( filter, mask ) { + if ( filter === '' ) { return filter; } + var regex = tsfRegex.iQuery, + maskLen = mask.match( tsfRegex.igQuery ).length, + query = maskLen > 1 ? $.trim( filter ).split( /\s/ ) : [ $.trim( filter ) ], + len = query.length - 1, + indx = 0, + val = mask; + if ( len < 1 && maskLen > 1 ) { + // only one 'word' in query but mask has >1 slots + query[1] = query[0]; + } + // replace all {query} with query words... + // if query = 'Bob', then convert mask from '!{query}' to '!Bob' + // if query = 'Bob Joe Frank', then convert mask '{q} OR {q}' to 'Bob OR Joe OR Frank' + while ( regex.test( val ) ) { + val = val.replace( regex, query[indx++] || '' ); + if ( regex.test( val ) && indx < len && ( query[indx] || '' ) !== '' ) { + val = mask.replace( regex, val ); + } + } + return val; + }, + getLatestSearch: function( $input ) { + if ( $input ) { + return $input.sort( function( a, b ) { + return $( b ).attr( 'data-lastSearchTime' ) - $( a ).attr( 'data-lastSearchTime' ); + }); + } + return $input || $(); + }, + findRange: function( c, val, ignoreRanges ) { + // look for multiple columns '1-3,4-6,8' in data-column + var temp, ranges, range, start, end, singles, i, indx, len, + columns = []; + if ( /^[0-9]+$/.test( val ) ) { + // always return an array + return [ parseInt( val, 10 ) ]; + } + // process column range + if ( !ignoreRanges && /-/.test( val ) ) { + ranges = val.match( /(\d+)\s*-\s*(\d+)/g ); + len = ranges ? ranges.length : 0; + for ( indx = 0; indx < len; indx++ ) { + range = ranges[indx].split( /\s*-\s*/ ); + start = parseInt( range[0], 10 ) || 0; + end = parseInt( range[1], 10 ) || ( c.columns - 1 ); + if ( start > end ) { + temp = start; start = end; end = temp; // swap + } + if ( end >= c.columns ) { + end = c.columns - 1; + } + for ( ; start <= end; start++ ) { + columns[ columns.length ] = start; + } + // remove processed range from val + val = val.replace( ranges[ indx ], '' ); + } + } + // process single columns + if ( !ignoreRanges && /,/.test( val ) ) { + singles = val.split( /\s*,\s*/ ); + len = singles.length; + for ( i = 0; i < len; i++ ) { + if ( singles[ i ] !== '' ) { + indx = parseInt( singles[ i ], 10 ); + if ( indx < c.columns ) { + columns[ columns.length ] = indx; + } + } + } + } + // return all columns + if ( !columns.length ) { + for ( indx = 0; indx < c.columns; indx++ ) { + columns[ columns.length ] = indx; + } + } + return columns; + }, + getColumnElm: function( c, $elements, column ) { + // data-column may contain multiple columns '1-3,5-6,8' + // replaces: c.$filters.filter( '[data-column="' + column + '"]' ); + return $elements.filter( function() { + var cols = tsf.findRange( c, $( this ).attr( 'data-column' ) ); + return $.inArray( column, cols ) > -1; + }); + }, + multipleColumns: function( c, $input ) { + // look for multiple columns '1-3,4-6,8' in data-column + var wo = c.widgetOptions, + // only target 'all' column inputs on initialization + // & don't target 'all' column inputs if they don't exist + targets = wo.filter_initialized || !$input.filter( wo.filter_anyColumnSelector ).length, + val = $.trim( tsf.getLatestSearch( $input ).attr( 'data-column' ) || '' ); + return tsf.findRange( c, val, !targets ); + }, + processTypes: function( c, data, vars ) { + var ffxn, + filterMatched = null, + matches = null; + for ( ffxn in tsf.types ) { + if ( $.inArray( ffxn, vars.excludeMatch ) < 0 && matches === null ) { + matches = tsf.types[ffxn]( c, data, vars ); + if ( matches !== null ) { + data.matchedOn = ffxn; + filterMatched = matches; + } + } + } + return filterMatched; + }, + matchType: function( c, columnIndex ) { + var isMatch, + wo = c.widgetOptions, + $el = c.$headerIndexed[ columnIndex ]; + // filter-exact > filter-match > filter_matchType for type + if ( $el.hasClass( 'filter-exact' ) ) { + isMatch = false; + } else if ( $el.hasClass( 'filter-match' ) ) { + isMatch = true; + } else { + // filter-select is not applied when filter_functions are used, so look for a select + if ( wo.filter_columnFilters ) { + $el = c.$filters + .find( '.' + tscss.filter ) + .add( wo.filter_$externalFilters ) + .filter( '[data-column="' + columnIndex + '"]' ); + } else if ( wo.filter_$externalFilters ) { + $el = wo.filter_$externalFilters.filter( '[data-column="' + columnIndex + '"]' ); + } + isMatch = $el.length ? + c.widgetOptions.filter_matchType[ ( $el[ 0 ].nodeName || '' ).toLowerCase() ] === 'match' : + // default to exact, if no inputs found + false; + } + return isMatch; + }, + processRow: function( c, data, vars ) { + var result, filterMatched, + fxn, ffxn, txt, + wo = c.widgetOptions, + showRow = true, + hasAnyMatchInput = wo.filter_$anyMatch && wo.filter_$anyMatch.length, + + // if wo.filter_$anyMatch data-column attribute is changed dynamically + // we don't want to do an "anyMatch" search on one column using data + // for the entire row - see #998 + columnIndex = wo.filter_$anyMatch && wo.filter_$anyMatch.length ? + // look for multiple columns '1-3,4-6,8' + tsf.multipleColumns( c, wo.filter_$anyMatch ) : + []; + data.$cells = data.$row.children(); + data.matchedOn = null; + if ( data.anyMatchFlag && columnIndex.length > 1 || ( data.anyMatchFilter && !hasAnyMatchInput ) ) { + data.anyMatch = true; + data.isMatch = true; + data.rowArray = data.$cells.map( function( i ) { + if ( $.inArray( i, columnIndex ) > -1 || ( data.anyMatchFilter && !hasAnyMatchInput ) ) { + if ( data.parsed[ i ] ) { + txt = data.cacheArray[ i ]; + } else { + txt = data.rawArray[ i ]; + txt = $.trim( wo.filter_ignoreCase ? txt.toLowerCase() : txt ); + if ( c.sortLocaleCompare ) { + txt = ts.replaceAccents( txt ); + } + } + return txt; + } + }).get(); + data.filter = data.anyMatchFilter; + data.iFilter = data.iAnyMatchFilter; + data.exact = data.rowArray.join( ' ' ); + data.iExact = wo.filter_ignoreCase ? data.exact.toLowerCase() : data.exact; + data.cache = data.cacheArray.slice( 0, -1 ).join( ' ' ); + vars.excludeMatch = vars.noAnyMatch; + filterMatched = tsf.processTypes( c, data, vars ); + if ( filterMatched !== null ) { + showRow = filterMatched; + } else { + if ( wo.filter_startsWith ) { + showRow = false; + // data.rowArray may not contain all columns + columnIndex = Math.min( c.columns, data.rowArray.length ); + while ( !showRow && columnIndex > 0 ) { + columnIndex--; + showRow = showRow || data.rowArray[ columnIndex ].indexOf( data.iFilter ) === 0; + } + } else { + showRow = ( data.iExact + data.childRowText ).indexOf( data.iFilter ) >= 0; + } + } + data.anyMatch = false; + // no other filters to process + if ( data.filters.join( '' ) === data.filter ) { + return showRow; + } + } + + for ( columnIndex = 0; columnIndex < c.columns; columnIndex++ ) { + data.filter = data.filters[ columnIndex ]; + data.index = columnIndex; + + // filter types to exclude, per column + vars.excludeMatch = vars.excludeFilter[ columnIndex ]; + + // ignore if filter is empty or disabled + if ( data.filter ) { + data.cache = data.cacheArray[ columnIndex ]; + result = data.parsed[ columnIndex ] ? data.cache : data.rawArray[ columnIndex ] || ''; + data.exact = c.sortLocaleCompare ? ts.replaceAccents( result ) : result; // issue #405 + data.iExact = !tsfRegex.type.test( typeof data.exact ) && wo.filter_ignoreCase ? + data.exact.toLowerCase() : data.exact; + data.isMatch = tsf.matchType( c, columnIndex ); + + result = showRow; // if showRow is true, show that row + + // in case select filter option has a different value vs text 'a - z|A through Z' + ffxn = wo.filter_columnFilters ? + c.$filters.add( wo.filter_$externalFilters ) + .filter( '[data-column="' + columnIndex + '"]' ) + .find( 'select option:selected' ) + .attr( 'data-function-name' ) || '' : ''; + // replace accents - see #357 + if ( c.sortLocaleCompare ) { + data.filter = ts.replaceAccents( data.filter ); + } + + // replace column specific default filters - see #1088 + if ( wo.filter_defaultFilter && tsfRegex.iQuery.test( vars.defaultColFilter[ columnIndex ] ) ) { + data.filter = tsf.defaultFilter( data.filter, vars.defaultColFilter[ columnIndex ] ); + } + + // data.iFilter = case insensitive ( if wo.filter_ignoreCase is true ), + // data.filter = case sensitive + data.iFilter = wo.filter_ignoreCase ? ( data.filter || '' ).toLowerCase() : data.filter; + fxn = vars.functions[ columnIndex ]; + filterMatched = null; + if ( fxn ) { + if ( typeof fxn === 'function' ) { + // filter callback( exact cell content, parser normalized content, + // filter input value, column index, jQuery row object ) + filterMatched = fxn( data.exact, data.cache, data.filter, columnIndex, data.$row, c, data ); + } else if ( typeof fxn[ ffxn || data.filter ] === 'function' ) { + // selector option function + txt = ffxn || data.filter; + filterMatched = + fxn[ txt ]( data.exact, data.cache, data.filter, columnIndex, data.$row, c, data ); + } + } + if ( filterMatched === null ) { + // cycle through the different filters + // filters return a boolean or null if nothing matches + filterMatched = tsf.processTypes( c, data, vars ); + // select with exact match; ignore "and" or "or" within the text; fixes #1486 + txt = fxn === true && (data.matchedOn === 'and' || data.matchedOn === 'or'); + if ( filterMatched !== null && !txt) { + result = filterMatched; + // Look for match, and add child row data for matching + } else { + // check fxn (filter-select in header) after filter types are checked + // without this, the filter + jQuery UI selectmenu demo was breaking + if ( fxn === true ) { + // default selector uses exact match unless 'filter-match' class is found + result = data.isMatch ? + // data.iExact may be a number + ( '' + data.iExact ).search( data.iFilter ) >= 0 : + data.filter === data.exact; + } else { + txt = ( data.iExact + data.childRowText ).indexOf( tsf.parseFilter( c, data.iFilter, data ) ); + result = ( ( !wo.filter_startsWith && txt >= 0 ) || ( wo.filter_startsWith && txt === 0 ) ); + } + } + } else { + result = filterMatched; + } + showRow = ( result ) ? showRow : false; + } + } + return showRow; + }, + findRows: function( table, filters, currentFilters ) { + if ( + tsf.equalFilters(table.config, table.config.lastSearch, currentFilters) || + !table.config.widgetOptions.filter_initialized + ) { + return; + } + var len, norm_rows, rowData, $rows, $row, rowIndex, tbodyIndex, $tbody, columnIndex, + isChild, childRow, lastSearch, showRow, showParent, time, val, indx, + notFiltered, searchFiltered, query, injected, res, id, txt, + storedFilters = $.extend( [], filters ), + c = table.config, + wo = c.widgetOptions, + debug = ts.debug(c, 'filter'), + // data object passed to filters; anyMatch is a flag for the filters + data = { + anyMatch: false, + filters: filters, + // regex filter type cache + filter_regexCache : [] + }, + vars = { + // anyMatch really screws up with these types of filters + noAnyMatch: [ 'range', 'operators' ], + // cache filter variables that use ts.getColumnData in the main loop + functions : [], + excludeFilter : [], + defaultColFilter : [], + defaultAnyFilter : ts.getColumnData( table, wo.filter_defaultFilter, c.columns, true ) || '' + }; + // parse columns after formatter, in case the class is added at that point + data.parsed = []; + for ( columnIndex = 0; columnIndex < c.columns; columnIndex++ ) { + data.parsed[ columnIndex ] = wo.filter_useParsedData || + // parser has a "parsed" parameter + ( c.parsers && c.parsers[ columnIndex ] && c.parsers[ columnIndex ].parsed || + // getData may not return 'parsed' if other 'filter-' class names exist + // ( e.g. ) + ts.getData && ts.getData( c.$headerIndexed[ columnIndex ], + ts.getColumnData( table, c.headers, columnIndex ), 'filter' ) === 'parsed' || + c.$headerIndexed[ columnIndex ].hasClass( 'filter-parsed' ) ); + + vars.functions[ columnIndex ] = + ts.getColumnData( table, wo.filter_functions, columnIndex ) || + c.$headerIndexed[ columnIndex ].hasClass( 'filter-select' ); + vars.defaultColFilter[ columnIndex ] = + ts.getColumnData( table, wo.filter_defaultFilter, columnIndex ) || ''; + vars.excludeFilter[ columnIndex ] = + ( ts.getColumnData( table, wo.filter_excludeFilter, columnIndex, true ) || '' ).split( /\s+/ ); + } + + if ( debug ) { + console.log( 'Filter >> Starting filter widget search', filters ); + time = new Date(); + } + // filtered rows count + c.filteredRows = 0; + c.totalRows = 0; + currentFilters = ( storedFilters || [] ); + + for ( tbodyIndex = 0; tbodyIndex < c.$tbodies.length; tbodyIndex++ ) { + $tbody = ts.processTbody( table, c.$tbodies.eq( tbodyIndex ), true ); + // skip child rows & widget added ( removable ) rows - fixes #448 thanks to @hempel! + // $rows = $tbody.children( 'tr' ).not( c.selectorRemove ); + columnIndex = c.columns; + // convert stored rows into a jQuery object + norm_rows = c.cache[ tbodyIndex ].normalized; + $rows = $( $.map( norm_rows, function( el ) { + return el[ columnIndex ].$row.get(); + }) ); + + if ( currentFilters.join('') === '' || wo.filter_serversideFiltering ) { + $rows + .removeClass( wo.filter_filteredRow ) + .not( '.' + c.cssChildRow ) + .css( 'display', '' ); + } else { + // filter out child rows + $rows = $rows.not( '.' + c.cssChildRow ); + len = $rows.length; + + if ( ( wo.filter_$anyMatch && wo.filter_$anyMatch.length ) || + typeof filters[c.columns] !== 'undefined' ) { + data.anyMatchFlag = true; + data.anyMatchFilter = '' + ( + filters[ c.columns ] || + wo.filter_$anyMatch && tsf.getLatestSearch( wo.filter_$anyMatch ).val() || + '' + ); + if ( wo.filter_columnAnyMatch ) { + // specific columns search + query = data.anyMatchFilter.split( tsfRegex.andSplit ); + injected = false; + for ( indx = 0; indx < query.length; indx++ ) { + res = query[ indx ].split( ':' ); + if ( res.length > 1 ) { + // make the column a one-based index ( non-developers start counting from one :P ) + if ( isNaN( res[0] ) ) { + $.each( c.headerContent, function( i, txt ) { + // multiple matches are possible + if ( txt.toLowerCase().indexOf( res[0] ) > -1 ) { + id = i; + filters[ id ] = res[1]; + } + }); + } else { + id = parseInt( res[0], 10 ) - 1; + } + if ( id >= 0 && id < c.columns ) { // if id is an integer + filters[ id ] = res[1]; + query.splice( indx, 1 ); + indx--; + injected = true; + } + } + } + if ( injected ) { + data.anyMatchFilter = query.join( ' && ' ); + } + } + } + + // optimize searching only through already filtered rows - see #313 + searchFiltered = wo.filter_searchFiltered; + lastSearch = c.lastSearch || c.$table.data( 'lastSearch' ) || []; + if ( searchFiltered ) { + // cycle through all filters; include last ( columnIndex + 1 = match any column ). Fixes #669 + for ( indx = 0; indx < columnIndex + 1; indx++ ) { + val = filters[indx] || ''; + // break out of loop if we've already determined not to search filtered rows + if ( !searchFiltered ) { indx = columnIndex; } + // search already filtered rows if... + searchFiltered = searchFiltered && lastSearch.length && + // there are no changes from beginning of filter + val.indexOf( lastSearch[indx] || '' ) === 0 && + // if there is NOT a logical 'or', or range ( 'to' or '-' ) in the string + !tsfRegex.alreadyFiltered.test( val ) && + // if we are not doing exact matches, using '|' ( logical or ) or not '!' + !tsfRegex.exactTest.test( val ) && + // don't search only filtered if the value is negative + // ( '> -10' => '> -100' will ignore hidden rows ) + !( tsfRegex.isNeg1.test( val ) || tsfRegex.isNeg2.test( val ) ) && + // if filtering using a select without a 'filter-match' class ( exact match ) - fixes #593 + !( val !== '' && c.$filters && c.$filters.filter( '[data-column="' + indx + '"]' ).find( 'select' ).length && + !tsf.matchType( c, indx ) ); + } + } + notFiltered = $rows.not( '.' + wo.filter_filteredRow ).length; + // can't search when all rows are hidden - this happens when looking for exact matches + if ( searchFiltered && notFiltered === 0 ) { searchFiltered = false; } + if ( debug ) { + console.log( 'Filter >> Searching through ' + + ( searchFiltered && notFiltered < len ? notFiltered : 'all' ) + ' rows' ); + } + if ( data.anyMatchFlag ) { + if ( c.sortLocaleCompare ) { + // replace accents + data.anyMatchFilter = ts.replaceAccents( data.anyMatchFilter ); + } + if ( wo.filter_defaultFilter && tsfRegex.iQuery.test( vars.defaultAnyFilter ) ) { + data.anyMatchFilter = tsf.defaultFilter( data.anyMatchFilter, vars.defaultAnyFilter ); + // clear search filtered flag because default filters are not saved to the last search + searchFiltered = false; + } + // make iAnyMatchFilter lowercase unless both filter widget & core ignoreCase options are true + // when c.ignoreCase is true, the cache contains all lower case data + data.iAnyMatchFilter = !( wo.filter_ignoreCase && c.ignoreCase ) ? + data.anyMatchFilter : + data.anyMatchFilter.toLowerCase(); + } + + // loop through the rows + for ( rowIndex = 0; rowIndex < len; rowIndex++ ) { + + txt = $rows[ rowIndex ].className; + // the first row can never be a child row + isChild = rowIndex && tsfRegex.child.test( txt ); + // skip child rows & already filtered rows + if ( isChild || ( searchFiltered && tsfRegex.filtered.test( txt ) ) ) { + continue; + } + + data.$row = $rows.eq( rowIndex ); + data.rowIndex = rowIndex; + data.cacheArray = norm_rows[ rowIndex ]; + rowData = data.cacheArray[ c.columns ]; + data.rawArray = rowData.raw; + data.childRowText = ''; + + if ( !wo.filter_childByColumn ) { + txt = ''; + // child row cached text + childRow = rowData.child; + // so, if 'table.config.widgetOptions.filter_childRows' is true and there is + // a match anywhere in the child row, then it will make the row visible + // checked here so the option can be changed dynamically + for ( indx = 0; indx < childRow.length; indx++ ) { + txt += ' ' + childRow[indx].join( ' ' ) || ''; + } + data.childRowText = wo.filter_childRows ? + ( wo.filter_ignoreCase ? txt.toLowerCase() : txt ) : + ''; + } + + showRow = false; + showParent = tsf.processRow( c, data, vars ); + $row = rowData.$row; + + // don't pass reference to val + val = showParent ? true : false; + childRow = rowData.$row.filter( ':gt(0)' ); + if ( wo.filter_childRows && childRow.length ) { + if ( wo.filter_childByColumn ) { + if ( !wo.filter_childWithSibs ) { + // hide all child rows + childRow.addClass( wo.filter_filteredRow ); + // if only showing resulting child row, only include parent + $row = $row.eq( 0 ); + } + // cycle through each child row + for ( indx = 0; indx < childRow.length; indx++ ) { + data.$row = childRow.eq( indx ); + data.cacheArray = rowData.child[ indx ]; + data.rawArray = data.cacheArray; + val = tsf.processRow( c, data, vars ); + // use OR comparison on child rows + showRow = showRow || val; + if ( !wo.filter_childWithSibs && val ) { + childRow.eq( indx ).removeClass( wo.filter_filteredRow ); + } + } + } + // keep parent row match even if no child matches... see #1020 + showRow = showRow || showParent; + } else { + showRow = val; + } + $row + .toggleClass( wo.filter_filteredRow, !showRow )[0] + .display = showRow ? '' : 'none'; + } + } + c.filteredRows += $rows.not( '.' + wo.filter_filteredRow ).length; + c.totalRows += $rows.length; + ts.processTbody( table, $tbody, false ); + } + // lastCombinedFilter is no longer used internally + c.lastCombinedFilter = storedFilters.join(''); // save last search + // don't save 'filters' directly since it may have altered ( AnyMatch column searches ) + c.lastSearch = storedFilters; + c.$table.data( 'lastSearch', storedFilters ); + if ( wo.filter_saveFilters && ts.storage ) { + ts.storage( table, 'tablesorter-filters', tsf.processFilters( storedFilters, true ) ); + } + if ( debug ) { + console.log( 'Filter >> Completed search' + ts.benchmark(time) ); + } + if ( wo.filter_initialized ) { + c.$table.triggerHandler( 'filterBeforeEnd', c ); + c.$table.triggerHandler( 'filterEnd', c ); + } + setTimeout( function() { + ts.applyWidget( c.table ); // make sure zebra widget is applied + }, 0 ); + }, + getOptionSource: function( table, column, onlyAvail ) { + table = $( table )[0]; + var c = table.config, + wo = c.widgetOptions, + arry = false, + source = wo.filter_selectSource, + last = c.$table.data( 'lastSearch' ) || [], + fxn = typeof source === 'function' ? true : ts.getColumnData( table, source, column ); + + if ( onlyAvail && last[column] !== '' ) { + onlyAvail = false; + } + + // filter select source option + if ( fxn === true ) { + // OVERALL source + arry = source( table, column, onlyAvail ); + } else if ( fxn instanceof $ || ( $.type( fxn ) === 'string' && fxn.indexOf( '' ) >= 0 ) ) { + // selectSource is a jQuery object or string of options + return fxn; + } else if ( $.isArray( fxn ) ) { + arry = fxn; + } else if ( $.type( source ) === 'object' && fxn ) { + // custom select source function for a SPECIFIC COLUMN + arry = fxn( table, column, onlyAvail ); + // abort - updating the selects from an external method + if (arry === null) { + return null; + } + } + if ( arry === false ) { + // fall back to original method + arry = tsf.getOptions( table, column, onlyAvail ); + } + + return tsf.processOptions( table, column, arry ); + + }, + processOptions: function( table, column, arry ) { + if ( !$.isArray( arry ) ) { + return false; + } + table = $( table )[0]; + var cts, txt, indx, len, parsedTxt, str, + c = table.config, + validColumn = typeof column !== 'undefined' && column !== null && column >= 0 && column < c.columns, + direction = validColumn ? c.$headerIndexed[ column ].hasClass( 'filter-select-sort-desc' ) : false, + parsed = []; + // get unique elements and sort the list + // if $.tablesorter.sortText exists ( not in the original tablesorter ), + // then natural sort the list otherwise use a basic sort + arry = $.grep( arry, function( value, indx ) { + if ( value.text ) { + return true; + } + return $.inArray( value, arry ) === indx; + }); + if ( validColumn && c.$headerIndexed[ column ].hasClass( 'filter-select-nosort' ) ) { + // unsorted select options + return arry; + } else { + len = arry.length; + // parse select option values + for ( indx = 0; indx < len; indx++ ) { + txt = arry[ indx ]; + // check for object + str = txt.text ? txt.text : txt; + // sortNatural breaks if you don't pass it strings + parsedTxt = ( validColumn && c.parsers && c.parsers.length && + c.parsers[ column ].format( str, table, [], column ) || str ).toString(); + parsedTxt = c.widgetOptions.filter_ignoreCase ? parsedTxt.toLowerCase() : parsedTxt; + // parse array data using set column parser; this DOES NOT pass the original + // table cell to the parser format function + if ( txt.text ) { + txt.parsed = parsedTxt; + parsed[ parsed.length ] = txt; + } else { + parsed[ parsed.length ] = { + text : txt, + // check parser length - fixes #934 + parsed : parsedTxt + }; + } + } + // sort parsed select options + cts = c.textSorter || ''; + parsed.sort( function( a, b ) { + var x = direction ? b.parsed : a.parsed, + y = direction ? a.parsed : b.parsed; + if ( validColumn && typeof cts === 'function' ) { + // custom OVERALL text sorter + return cts( x, y, true, column, table ); + } else if ( validColumn && typeof cts === 'object' && cts.hasOwnProperty( column ) ) { + // custom text sorter for a SPECIFIC COLUMN + return cts[column]( x, y, true, column, table ); + } else if ( ts.sortNatural ) { + // fall back to natural sort + return ts.sortNatural( x, y ); + } + // using an older version! do a basic sort + return true; + }); + // rebuild arry from sorted parsed data + arry = []; + len = parsed.length; + for ( indx = 0; indx < len; indx++ ) { + arry[ arry.length ] = parsed[indx]; + } + return arry; + } + }, + getOptions: function( table, column, onlyAvail ) { + table = $( table )[0]; + var rowIndex, tbodyIndex, len, row, cache, indx, child, childLen, + c = table.config, + wo = c.widgetOptions, + arry = []; + for ( tbodyIndex = 0; tbodyIndex < c.$tbodies.length; tbodyIndex++ ) { + cache = c.cache[tbodyIndex]; + len = c.cache[tbodyIndex].normalized.length; + // loop through the rows + for ( rowIndex = 0; rowIndex < len; rowIndex++ ) { + // get cached row from cache.row ( old ) or row data object + // ( new; last item in normalized array ) + row = cache.row ? + cache.row[ rowIndex ] : + cache.normalized[ rowIndex ][ c.columns ].$row[0]; + // check if has class filtered + if ( onlyAvail && row.className.match( wo.filter_filteredRow ) ) { + continue; + } + // get non-normalized cell content + if ( wo.filter_useParsedData || + c.parsers[column].parsed || + c.$headerIndexed[column].hasClass( 'filter-parsed' ) ) { + arry[ arry.length ] = '' + cache.normalized[ rowIndex ][ column ]; + // child row parsed data + if ( wo.filter_childRows && wo.filter_childByColumn ) { + childLen = cache.normalized[ rowIndex ][ c.columns ].$row.length - 1; + for ( indx = 0; indx < childLen; indx++ ) { + arry[ arry.length ] = '' + cache.normalized[ rowIndex ][ c.columns ].child[ indx ][ column ]; + } + } + } else { + // get raw cached data instead of content directly from the cells + arry[ arry.length ] = cache.normalized[ rowIndex ][ c.columns ].raw[ column ]; + // child row unparsed data + if ( wo.filter_childRows && wo.filter_childByColumn ) { + childLen = cache.normalized[ rowIndex ][ c.columns ].$row.length; + for ( indx = 1; indx < childLen; indx++ ) { + child = cache.normalized[ rowIndex ][ c.columns ].$row.eq( indx ).children().eq( column ); + arry[ arry.length ] = '' + ts.getElementText( c, child, column ); + } + } + } + } + } + return arry; + }, + buildSelect: function( table, column, arry, updating, onlyAvail ) { + table = $( table )[0]; + column = parseInt( column, 10 ); + if ( !table.config.cache || $.isEmptyObject( table.config.cache ) ) { + return; + } + + var indx, val, txt, t, $filters, $filter, option, + c = table.config, + wo = c.widgetOptions, + node = c.$headerIndexed[ column ], + // t.data( 'placeholder' ) won't work in jQuery older than 1.4.3 + options = '', + // Get curent filter value + currentValue = c.$table + .find( 'thead' ) + .find( 'select.' + tscss.filter + '[data-column="' + column + '"]' ) + .val(); + + // nothing included in arry ( external source ), so get the options from + // filter_selectSource or column data + if ( typeof arry === 'undefined' || arry === '' ) { + arry = tsf.getOptionSource( table, column, onlyAvail ); + // abort, selects are updated by an external method + if (arry === null) { + return; + } + } + + if ( $.isArray( arry ) ) { + // build option list + for ( indx = 0; indx < arry.length; indx++ ) { + option = arry[ indx ]; + if ( option.text ) { + // OBJECT!! add data-function-name in case the value is set in filter_functions + option['data-function-name'] = typeof option.value === 'undefined' ? option.text : option.value; + + // support jQuery < v1.8, otherwise the below code could be shortened to + // options += $( '
'), + $stickyWrap = $stickyTable.parent() + .addClass(ts.css.stickyHide) + .css({ + position : $attach.length ? 'absolute' : 'fixed', + padding : parseInt( $stickyTable.parent().parent().css('padding-left'), 10 ), + top : stickyOffset + nestedStickyTop, + left : 0, + visibility : 'hidden', + zIndex : wo.stickyHeaders_zIndex || 2 + }), + $stickyThead = $stickyTable.children('thead:first'), + $stickyCells, + laststate = '', + setWidth = function($orig, $clone) { + var index, width, border, $cell, $this, + $cells = $orig.filter(':visible'), + len = $cells.length; + for ( index = 0; index < len; index++ ) { + $cell = $clone.filter(':visible').eq(index); + $this = $cells.eq(index); + // code from https://github.com/jmosbech/StickyTableHeaders + if ($this.css('box-sizing') === 'border-box') { + width = $this.outerWidth(); + } else { + if ($cell.css('border-collapse') === 'collapse') { + if (window.getComputedStyle) { + width = parseFloat( window.getComputedStyle($this[0], null).width ); + } else { + // ie8 only + border = parseFloat( $this.css('border-width') ); + width = $this.outerWidth() - parseFloat( $this.css('padding-left') ) - parseFloat( $this.css('padding-right') ) - border; + } + } else { + width = $this.width(); + } + } + $cell.css({ + 'width': width, + 'min-width': width, + 'max-width': width + }); + } + }, + getLeftPosition = function(yWindow) { + if (yWindow === false && $nestedSticky.length) { + return $table.position().left; + } + return $attach.length ? + parseInt($attach.css('padding-left'), 10) || 0 : + $table.offset().left - parseInt($table.css('margin-left'), 10) - $(window).scrollLeft(); + }, + resizeHeader = function() { + $stickyWrap.css({ + left : getLeftPosition(), + width: $table.outerWidth() + }); + setWidth( $table, $stickyTable ); + setWidth( $header, $stickyCells ); + }, + scrollSticky = function( resizing ) { + if (!$table.is(':visible')) { return; } // fixes #278 + // Detect nested tables - fixes #724 + nestedStickyTop = $nestedSticky.length ? $nestedSticky.offset().top - $yScroll.scrollTop() + $nestedSticky.height() : 0; + var tmp, + offset = $table.offset(), + stickyOffset = getStickyOffset(c, wo), + yWindow = $.isWindow( $yScroll[0] ), // $.isWindow needs jQuery 1.4.3 + yScroll = yWindow ? + $yScroll.scrollTop() : + // use parent sticky position if nested AND inside of a scrollable element - see #1512 + $nestedSticky.length ? parseInt($nestedSticky[0].style.top, 10) : $yScroll.offset().top, + attachTop = $attach.length ? yScroll : $yScroll.scrollTop(), + captionHeight = wo.stickyHeaders_includeCaption ? 0 : $table.children( 'caption' ).height() || 0, + scrollTop = attachTop + stickyOffset + nestedStickyTop - captionHeight, + tableHeight = $table.height() - ($stickyWrap.height() + ($tfoot.height() || 0)) - captionHeight, + isVisible = ( scrollTop > offset.top ) && ( scrollTop < offset.top + tableHeight ) ? 'visible' : 'hidden', + state = isVisible === 'visible' ? ts.css.stickyVis : ts.css.stickyHide, + needsUpdating = !$stickyWrap.hasClass( state ), + cssSettings = { visibility : isVisible }; + if ($attach.length) { + // attached sticky headers always need updating + needsUpdating = true; + cssSettings.top = yWindow ? scrollTop - $attach.offset().top : $attach.scrollTop(); + } + // adjust when scrolling horizontally - fixes issue #143 + tmp = getLeftPosition(yWindow); + if (tmp !== parseInt($stickyWrap.css('left'), 10)) { + needsUpdating = true; + cssSettings.left = tmp; + } + cssSettings.top = ( cssSettings.top || 0 ) + + // If nested AND inside of a scrollable element, only add parent sticky height + (!yWindow && $nestedSticky.length ? $nestedSticky.height() : stickyOffset + nestedStickyTop); + if (needsUpdating) { + $stickyWrap + .removeClass( ts.css.stickyVis + ' ' + ts.css.stickyHide ) + .addClass( state ) + .css(cssSettings); + } + if (isVisible !== laststate || resizing) { + // make sure the column widths match + resizeHeader(); + laststate = isVisible; + } + }; + // only add a position relative if a position isn't already defined + if ($attach.length && !$attach.css('position')) { + $attach.css('position', 'relative'); + } + // fix clone ID, if it exists - fixes #271 + if ($stickyTable.attr('id')) { $stickyTable[0].id += wo.stickyHeaders_cloneId; } + // clear out cloned table, except for sticky header + // include caption & filter row (fixes #126 & #249) - don't remove cells to get correct cell indexing + $stickyTable.find('> thead:gt(0), tr.sticky-false').hide(); + $stickyTable.find('> tbody, > tfoot').remove(); + $stickyTable.find('caption').toggle(wo.stickyHeaders_includeCaption); + // issue #172 - find td/th in sticky header + $stickyCells = $stickyThead.children().children(); + $stickyTable.css({ height:0, width:0, margin: 0 }); + // remove resizable block + $stickyCells.find('.' + ts.css.resizer).remove(); + // update sticky header class names to match real header after sorting + $table + .addClass('hasStickyHeaders') + .bind('pagerComplete' + namespace, function() { + resizeHeader(); + }); + + ts.bindEvents(table, $stickyThead.children().children('.' + ts.css.header)); + + if (wo.stickyHeaders_appendTo) { + $(wo.stickyHeaders_appendTo).append( $stickyWrap ); + } else { + // add stickyheaders AFTER the table. If the table is selected by ID, the original one (first) will be returned. + $table.after( $stickyWrap ); + } + + // onRenderHeader is defined, we need to do something about it (fixes #641) + if (c.onRenderHeader) { + $t = $stickyThead.children('tr').children(); + len = $t.length; + for ( index = 0; index < len; index++ ) { + // send second parameter + c.onRenderHeader.apply( $t.eq( index ), [ index, c, $stickyTable ] ); + } + } + // make it sticky! + $xScroll.add($yScroll) + .unbind( ('scroll resize '.split(' ').join( namespace )).replace(/\s+/g, ' ') ) + .bind('scroll resize '.split(' ').join( namespace ), function( event ) { + scrollSticky( event.type === 'resize' ); + }); + c.$table + .unbind('stickyHeadersUpdate' + namespace) + .bind('stickyHeadersUpdate' + namespace, function() { + scrollSticky( true ); + }); + + if (wo.stickyHeaders_addResizeEvent) { + ts.addHeaderResizeEvent(table); + } + + // look for filter widget + if ($table.hasClass('hasFilters') && wo.filter_columnFilters) { + // scroll table into view after filtering, if sticky header is active - #482 + $table.bind('filterEnd' + namespace, function() { + // $(':focus') needs jQuery 1.6+ + var $td = $(document.activeElement).closest('td'), + column = $td.parent().children().index($td); + // only scroll if sticky header is active + if ($stickyWrap.hasClass(ts.css.stickyVis) && wo.stickyHeaders_filteredToTop) { + // scroll to original table (not sticky clone) + window.scrollTo(0, $table.position().top); + // give same input/select focus; check if c.$filters exists; fixes #594 + if (column >= 0 && c.$filters) { + c.$filters.eq(column).find('a, select, input').filter(':visible').focus(); + } + } + }); + ts.filter.bindSearch( $table, $stickyCells.find('.' + ts.css.filter) ); + // support hideFilters + if (wo.filter_hideFilters) { + ts.filter.hideFilters(c, $stickyTable); + } + } + + // resize table (Firefox) + if (wo.stickyHeaders_addResizeEvent) { + $table.bind('resize' + c.namespace + 'stickyheaders', function() { + resizeHeader(); + }); + } + + // make sure sticky is visible if page is partially scrolled + scrollSticky( true ); + $table.triggerHandler('stickyHeadersInit'); + + }, + remove: function(table, c, wo) { + var namespace = c.namespace + 'stickyheaders '; + c.$table + .removeClass('hasStickyHeaders') + .unbind( ('pagerComplete resize filterEnd stickyHeadersUpdate '.split(' ').join(namespace)).replace(/\s+/g, ' ') ) + .next('.' + ts.css.stickyWrap).remove(); + if (wo.$sticky && wo.$sticky.length) { wo.$sticky.remove(); } // remove cloned table + $(window) + .add(wo.stickyHeaders_xScroll) + .add(wo.stickyHeaders_yScroll) + .add(wo.stickyHeaders_attachTo) + .unbind( ('scroll resize '.split(' ').join(namespace)).replace(/\s+/g, ' ') ); + ts.addHeaderResizeEvent(table, true); + } + }); + +})(jQuery, window); + +/*! Widget: resizable - updated 2018-03-26 (v2.30.2) */ +/*jshint browser:true, jquery:true, unused:false */ +;(function ($, window) { + 'use strict'; + var ts = $.tablesorter || {}; + + $.extend(ts.css, { + resizableContainer : 'tablesorter-resizable-container', + resizableHandle : 'tablesorter-resizable-handle', + resizableNoSelect : 'tablesorter-disableSelection', + resizableStorage : 'tablesorter-resizable' + }); + + // Add extra scroller css + $(function() { + var s = ''; + $('head').append(s); + }); + + ts.resizable = { + init : function( c, wo ) { + if ( c.$table.hasClass( 'hasResizable' ) ) { return; } + c.$table.addClass( 'hasResizable' ); + + var noResize, $header, column, storedSizes, tmp, + $table = c.$table, + $parent = $table.parent(), + marginTop = parseInt( $table.css( 'margin-top' ), 10 ), + + // internal variables + vars = wo.resizable_vars = { + useStorage : ts.storage && wo.resizable !== false, + $wrap : $parent, + mouseXPosition : 0, + $target : null, + $next : null, + overflow : $parent.css('overflow') === 'auto' || + $parent.css('overflow') === 'scroll' || + $parent.css('overflow-x') === 'auto' || + $parent.css('overflow-x') === 'scroll', + storedSizes : [] + }; + + // set default widths + ts.resizableReset( c.table, true ); + + // now get measurements! + vars.tableWidth = $table.width(); + // attempt to autodetect + vars.fullWidth = Math.abs( $parent.width() - vars.tableWidth ) < 20; + + /* + // Hacky method to determine if table width is set to 'auto' + // http://stackoverflow.com/a/20892048/145346 + if ( !vars.fullWidth ) { + tmp = $table.width(); + $header = $table.wrap('').parent(); // temp variable + storedSizes = parseInt( $table.css( 'margin-left' ), 10 ) || 0; + $table.css( 'margin-left', storedSizes + 50 ); + vars.tableWidth = $header.width() > tmp ? 'auto' : tmp; + $table.css( 'margin-left', storedSizes ? storedSizes : '' ); + $header = null; + $table.unwrap(''); + } + */ + + if ( vars.useStorage && vars.overflow ) { + // save table width + ts.storage( c.table, 'tablesorter-table-original-css-width', vars.tableWidth ); + tmp = ts.storage( c.table, 'tablesorter-table-resized-width' ) || 'auto'; + ts.resizable.setWidth( $table, tmp, true ); + } + wo.resizable_vars.storedSizes = storedSizes = ( vars.useStorage ? + ts.storage( c.table, ts.css.resizableStorage ) : + [] ) || []; + ts.resizable.setWidths( c, wo, storedSizes ); + ts.resizable.updateStoredSizes( c, wo ); + + wo.$resizable_container = $( '
' ) + .css({ top : marginTop }) + .insertBefore( $table ); + // add container + for ( column = 0; column < c.columns; column++ ) { + $header = c.$headerIndexed[ column ]; + tmp = ts.getColumnData( c.table, c.headers, column ); + noResize = ts.getData( $header, tmp, 'resizable' ) === 'false'; + if ( !noResize ) { + $( '
' ) + .appendTo( wo.$resizable_container ) + .attr({ + 'data-column' : column, + 'unselectable' : 'on' + }) + .data( 'header', $header ) + .bind( 'selectstart', false ); + } + } + ts.resizable.bindings( c, wo ); + }, + + updateStoredSizes : function( c, wo ) { + var column, $header, + len = c.columns, + vars = wo.resizable_vars; + vars.storedSizes = []; + for ( column = 0; column < len; column++ ) { + $header = c.$headerIndexed[ column ]; + vars.storedSizes[ column ] = $header.is(':visible') ? $header.width() : 0; + } + }, + + setWidth : function( $el, width, overflow ) { + // overflow tables need min & max width set as well + $el.css({ + 'width' : width, + 'min-width' : overflow ? width : '', + 'max-width' : overflow ? width : '' + }); + }, + + setWidths : function( c, wo, storedSizes ) { + var column, $temp, + vars = wo.resizable_vars, + $extra = $( c.namespace + '_extra_headers' ), + $col = c.$table.children( 'colgroup' ).children( 'col' ); + storedSizes = storedSizes || vars.storedSizes || []; + // process only if table ID or url match + if ( storedSizes.length ) { + for ( column = 0; column < c.columns; column++ ) { + // set saved resizable widths + ts.resizable.setWidth( c.$headerIndexed[ column ], storedSizes[ column ], vars.overflow ); + if ( $extra.length ) { + // stickyHeaders needs to modify min & max width as well + $temp = $extra.eq( column ).add( $col.eq( column ) ); + ts.resizable.setWidth( $temp, storedSizes[ column ], vars.overflow ); + } + } + $temp = $( c.namespace + '_extra_table' ); + if ( $temp.length && !ts.hasWidget( c.table, 'scroller' ) ) { + ts.resizable.setWidth( $temp, c.$table.outerWidth(), vars.overflow ); + } + } + }, + + setHandlePosition : function( c, wo ) { + var startPosition, + tableHeight = c.$table.height(), + $handles = wo.$resizable_container.children(), + handleCenter = Math.floor( $handles.width() / 2 ); + + if ( ts.hasWidget( c.table, 'scroller' ) ) { + tableHeight = 0; + c.$table.closest( '.' + ts.css.scrollerWrap ).children().each(function() { + var $this = $(this); + // center table has a max-height set + tableHeight += $this.filter('[style*="height"]').length ? $this.height() : $this.children('table').height(); + }); + } + + if ( !wo.resizable_includeFooter && c.$table.children('tfoot').length ) { + tableHeight -= c.$table.children('tfoot').height(); + } + // subtract out table left position from resizable handles. Fixes #864 + // jQuery v3.3.0+ appears to include the start position with the $header.position().left; see #1544 + startPosition = parseFloat($.fn.jquery) >= 3.3 ? 0 : c.$table.position().left; + $handles.each( function() { + var $this = $(this), + column = parseInt( $this.attr( 'data-column' ), 10 ), + columns = c.columns - 1, + $header = $this.data( 'header' ); + if ( !$header ) { return; } // see #859 + if ( + !$header.is(':visible') || + ( !wo.resizable_addLastColumn && ts.resizable.checkVisibleColumns(c, column) ) + ) { + $this.hide(); + } else if ( column < columns || column === columns && wo.resizable_addLastColumn ) { + $this.css({ + display: 'inline-block', + height : tableHeight, + left : $header.position().left - startPosition + $header.outerWidth() - handleCenter + }); + } + }); + }, + + // Fixes #1485 + checkVisibleColumns: function( c, column ) { + var i, + len = 0; + for ( i = column + 1; i < c.columns; i++ ) { + len += c.$headerIndexed[i].is( ':visible' ) ? 1 : 0; + } + return len === 0; + }, + + // prevent text selection while dragging resize bar + toggleTextSelection : function( c, wo, toggle ) { + var namespace = c.namespace + 'tsresize'; + wo.resizable_vars.disabled = toggle; + $( 'body' ).toggleClass( ts.css.resizableNoSelect, toggle ); + if ( toggle ) { + $( 'body' ) + .attr( 'unselectable', 'on' ) + .bind( 'selectstart' + namespace, false ); + } else { + $( 'body' ) + .removeAttr( 'unselectable' ) + .unbind( 'selectstart' + namespace ); + } + }, + + bindings : function( c, wo ) { + var namespace = c.namespace + 'tsresize'; + wo.$resizable_container.children().bind( 'mousedown', function( event ) { + // save header cell and mouse position + var column, + vars = wo.resizable_vars, + $extras = $( c.namespace + '_extra_headers' ), + $header = $( event.target ).data( 'header' ); + + column = parseInt( $header.attr( 'data-column' ), 10 ); + vars.$target = $header = $header.add( $extras.filter('[data-column="' + column + '"]') ); + vars.target = column; + + // if table is not as wide as it's parent, then resize the table + vars.$next = event.shiftKey || wo.resizable_targetLast ? + $header.parent().children().not( '.resizable-false' ).filter( ':last' ) : + $header.nextAll( ':not(.resizable-false)' ).eq( 0 ); + + column = parseInt( vars.$next.attr( 'data-column' ), 10 ); + vars.$next = vars.$next.add( $extras.filter('[data-column="' + column + '"]') ); + vars.next = column; + + vars.mouseXPosition = event.pageX; + ts.resizable.updateStoredSizes( c, wo ); + ts.resizable.toggleTextSelection(c, wo, true ); + }); + + $( document ) + .bind( 'mousemove' + namespace, function( event ) { + var vars = wo.resizable_vars; + // ignore mousemove if no mousedown + if ( !vars.disabled || vars.mouseXPosition === 0 || !vars.$target ) { return; } + if ( wo.resizable_throttle ) { + clearTimeout( vars.timer ); + vars.timer = setTimeout( function() { + ts.resizable.mouseMove( c, wo, event ); + }, isNaN( wo.resizable_throttle ) ? 5 : wo.resizable_throttle ); + } else { + ts.resizable.mouseMove( c, wo, event ); + } + }) + .bind( 'mouseup' + namespace, function() { + if (!wo.resizable_vars.disabled) { return; } + ts.resizable.toggleTextSelection( c, wo, false ); + ts.resizable.stopResize( c, wo ); + ts.resizable.setHandlePosition( c, wo ); + }); + + // resizeEnd event triggered by scroller widget + $( window ).bind( 'resize' + namespace + ' resizeEnd' + namespace, function() { + ts.resizable.setHandlePosition( c, wo ); + }); + + // right click to reset columns to default widths + c.$table + .bind( 'columnUpdate pagerComplete resizableUpdate '.split( ' ' ).join( namespace + ' ' ), function() { + ts.resizable.setHandlePosition( c, wo ); + }) + .bind( 'resizableReset' + namespace, function() { + ts.resizableReset( c.table ); + }) + .find( 'thead:first' ) + .add( $( c.namespace + '_extra_table' ).find( 'thead:first' ) ) + .bind( 'contextmenu' + namespace, function() { + // $.isEmptyObject() needs jQuery 1.4+; allow right click if already reset + var allowClick = wo.resizable_vars.storedSizes.length === 0; + ts.resizableReset( c.table ); + ts.resizable.setHandlePosition( c, wo ); + wo.resizable_vars.storedSizes = []; + return allowClick; + }); + + }, + + mouseMove : function( c, wo, event ) { + if ( wo.resizable_vars.mouseXPosition === 0 || !wo.resizable_vars.$target ) { return; } + // resize columns + var column, + total = 0, + vars = wo.resizable_vars, + $next = vars.$next, + tar = vars.storedSizes[ vars.target ], + leftEdge = event.pageX - vars.mouseXPosition; + if ( vars.overflow ) { + if ( tar + leftEdge > 0 ) { + vars.storedSizes[ vars.target ] += leftEdge; + ts.resizable.setWidth( vars.$target, vars.storedSizes[ vars.target ], true ); + // update the entire table width + for ( column = 0; column < c.columns; column++ ) { + total += vars.storedSizes[ column ]; + } + ts.resizable.setWidth( c.$table.add( $( c.namespace + '_extra_table' ) ), total ); + } + if ( !$next.length ) { + // if expanding right-most column, scroll the wrapper + vars.$wrap[0].scrollLeft = c.$table.width(); + } + } else if ( vars.fullWidth ) { + vars.storedSizes[ vars.target ] += leftEdge; + vars.storedSizes[ vars.next ] -= leftEdge; + ts.resizable.setWidths( c, wo ); + } else { + vars.storedSizes[ vars.target ] += leftEdge; + ts.resizable.setWidths( c, wo ); + } + vars.mouseXPosition = event.pageX; + // dynamically update sticky header widths + c.$table.triggerHandler('stickyHeadersUpdate'); + }, + + stopResize : function( c, wo ) { + var vars = wo.resizable_vars; + ts.resizable.updateStoredSizes( c, wo ); + if ( vars.useStorage ) { + // save all column widths + ts.storage( c.table, ts.css.resizableStorage, vars.storedSizes ); + ts.storage( c.table, 'tablesorter-table-resized-width', c.$table.width() ); + } + vars.mouseXPosition = 0; + vars.$target = vars.$next = null; + // will update stickyHeaders, just in case, see #912 + c.$table.triggerHandler('stickyHeadersUpdate'); + c.$table.triggerHandler('resizableComplete'); + } + }; + + // this widget saves the column widths if + // $.tablesorter.storage function is included + // ************************** + ts.addWidget({ + id: 'resizable', + priority: 40, + options: { + resizable : true, // save column widths to storage + resizable_addLastColumn : false, + resizable_includeFooter: true, + resizable_widths : [], + resizable_throttle : false, // set to true (5ms) or any number 0-10 range + resizable_targetLast : false + }, + init: function(table, thisWidget, c, wo) { + ts.resizable.init( c, wo ); + }, + format: function( table, c, wo ) { + ts.resizable.setHandlePosition( c, wo ); + }, + remove: function( table, c, wo, refreshing ) { + if (wo.$resizable_container) { + var namespace = c.namespace + 'tsresize'; + c.$table.add( $( c.namespace + '_extra_table' ) ) + .removeClass('hasResizable') + .children( 'thead' ) + .unbind( 'contextmenu' + namespace ); + + wo.$resizable_container.remove(); + ts.resizable.toggleTextSelection( c, wo, false ); + ts.resizableReset( table, refreshing ); + $( document ).unbind( 'mousemove' + namespace + ' mouseup' + namespace ); + } + } + }); + + ts.resizableReset = function( table, refreshing ) { + $( table ).each(function() { + var index, $t, + c = this.config, + wo = c && c.widgetOptions, + vars = wo.resizable_vars; + if ( table && c && c.$headerIndexed.length ) { + // restore the initial table width + if ( vars.overflow && vars.tableWidth ) { + ts.resizable.setWidth( c.$table, vars.tableWidth, true ); + if ( vars.useStorage ) { + ts.storage( table, 'tablesorter-table-resized-width', vars.tableWidth ); + } + } + for ( index = 0; index < c.columns; index++ ) { + $t = c.$headerIndexed[ index ]; + if ( wo.resizable_widths && wo.resizable_widths[ index ] ) { + ts.resizable.setWidth( $t, wo.resizable_widths[ index ], vars.overflow ); + } else if ( !$t.hasClass( 'resizable-false' ) ) { + // don't clear the width of any column that is not resizable + ts.resizable.setWidth( $t, '', vars.overflow ); + } + } + + // reset stickyHeader widths + c.$table.triggerHandler( 'stickyHeadersUpdate' ); + if ( ts.storage && !refreshing ) { + ts.storage( this, ts.css.resizableStorage, [] ); + } + } + }); + }; + +})( jQuery, window ); + +/*! Widget: saveSort - updated 2018-03-19 (v2.30.1) *//* +* Requires tablesorter v2.16+ +* by Rob Garrison +*/ +;(function ($) { + 'use strict'; + var ts = $.tablesorter || {}; + + function getStoredSortList(c) { + var stored = ts.storage( c.table, 'tablesorter-savesort' ); + return (stored && stored.hasOwnProperty('sortList') && $.isArray(stored.sortList)) ? stored.sortList : []; + } + + function sortListChanged(c, sortList) { + return (sortList || getStoredSortList(c)).join(',') !== c.sortList.join(','); + } + + // this widget saves the last sort only if the + // saveSort widget option is true AND the + // $.tablesorter.storage function is included + // ************************** + ts.addWidget({ + id: 'saveSort', + priority: 20, + options: { + saveSort : true + }, + init: function(table, thisWidget, c, wo) { + // run widget format before all other widgets are applied to the table + thisWidget.format(table, c, wo, true); + }, + format: function(table, c, wo, init) { + var time, + $table = c.$table, + saveSort = wo.saveSort !== false, // make saveSort active/inactive; default to true + sortList = { 'sortList' : c.sortList }, + debug = ts.debug(c, 'saveSort'); + if (debug) { + time = new Date(); + } + if ($table.hasClass('hasSaveSort')) { + if (saveSort && table.hasInitialized && ts.storage && sortListChanged(c)) { + ts.storage( table, 'tablesorter-savesort', sortList ); + if (debug) { + console.log('saveSort >> Saving last sort: ' + c.sortList + ts.benchmark(time)); + } + } + } else { + // set table sort on initial run of the widget + $table.addClass('hasSaveSort'); + sortList = ''; + // get data + if (ts.storage) { + sortList = getStoredSortList(c); + if (debug) { + console.log('saveSort >> Last sort loaded: "' + sortList + '"' + ts.benchmark(time)); + } + $table.bind('saveSortReset', function(event) { + event.stopPropagation(); + ts.storage( table, 'tablesorter-savesort', '' ); + }); + } + // init is true when widget init is run, this will run this widget before all other widgets have initialized + // this method allows using this widget in the original tablesorter plugin; but then it will run all widgets twice. + if (init && sortList && sortList.length > 0) { + c.sortList = sortList; + } else if (table.hasInitialized && sortList && sortList.length > 0) { + // update sort change + if (sortListChanged(c, sortList)) { + ts.sortOn(c, sortList); + } + } + } + }, + remove: function(table, c) { + c.$table.removeClass('hasSaveSort'); + // clear storage + if (ts.storage) { ts.storage( table, 'tablesorter-savesort', '' ); } + } + }); + +})(jQuery); +return jQuery.tablesorter;})); diff --git a/modules/pdproductattributeslist/views/js/jquery.tablesorter.combined.min.js b/modules/pdproductattributeslist/views/js/jquery.tablesorter.combined.min.js new file mode 100644 index 00000000..4693581a --- /dev/null +++ b/modules/pdproductattributeslist/views/js/jquery.tablesorter.combined.min.js @@ -0,0 +1,3 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! tablesorter (FORK) - updated 2024-08-13 (v2.32.0)*/ +!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof module&&"object"==typeof module.exports?module.exports=e(require("jquery")):e(jQuery)}(function(e){return function(R){"use strict";var T=R.tablesorter={version:"2.32.0",parsers:[],widgets:[],defaults:{theme:"default",widthFixed:!1,showProcessing:!1,headerTemplate:"{content}",onRenderTemplate:null,onRenderHeader:null,cancelSelection:!0,tabIndex:!0,dateFormat:"mmddyyyy",sortMultiSortKey:"shiftKey",sortResetKey:"ctrlKey",usNumberFormat:!0,delayInit:!1,serverSideSorting:!1,resort:!0,headers:null,ignoreCase:!0,sortForce:null,sortList:[],sortAppend:null,sortStable:!1,sortInitialOrder:"asc",sortLocaleCompare:!1,sortReset:!1,sortRestart:!1,emptyTo:"bottom",stringTo:"max",duplicateSpan:!0,textExtraction:"basic",textAttribute:"data-text",textSorter:null,numberSorter:null,initWidgets:!0,widgetClass:"widget-{name}",widgets:[],widgetOptions:{zebra:["even","odd"]},initialized:null,tableClass:"",cssAsc:"",cssDesc:"",cssNone:"",cssHeader:"",cssHeaderRow:"",cssProcessing:"",cssChildRow:"tablesorter-childRow",cssInfoBlock:"tablesorter-infoOnly",cssNoSort:"tablesorter-noSort",cssIgnoreRow:"tablesorter-ignoreRow",cssIcon:"tablesorter-icon",cssIconNone:"",cssIconAsc:"",cssIconDesc:"",cssIconDisabled:"",pointerClick:"click",pointerDown:"mousedown",pointerUp:"mouseup",selectorHeaders:"> thead th, > thead td",selectorSort:"th, td",selectorRemove:".remove-me",debug:!1,headerList:[],empties:{},strings:{},parsers:[],globalize:0,imgAttr:0},css:{table:"tablesorter",cssHasChild:"tablesorter-hasChildRow",childRow:"tablesorter-childRow",colgroup:"tablesorter-colgroup",header:"tablesorter-header",headerRow:"tablesorter-headerRow",headerIn:"tablesorter-header-inner",icon:"tablesorter-icon",processing:"tablesorter-processing",sortAsc:"tablesorter-headerAsc",sortDesc:"tablesorter-headerDesc",sortNone:"tablesorter-headerUnSorted"},language:{sortAsc:"Ascending sort applied, ",sortDesc:"Descending sort applied, ",sortNone:"No sort applied, ",sortDisabled:"sorting is disabled",nextAsc:"activate to apply an ascending sort",nextDesc:"activate to apply a descending sort",nextNone:"activate to remove the sort"},regex:{templateContent:/\{content\}/g,templateIcon:/\{icon\}/g,templateName:/\{name\}/i,spaces:/\s+/g,nonWord:/\W/g,formElements:/(input|select|button|textarea)/i,chunk:/(^([+\-]?(?:\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?)?$|^0x[0-9a-f]+$|\d+)/gi,chunks:/(^\\0|\\0$)/,hex:/^0x[0-9a-f]+$/i,comma:/,/g,digitNonUS:/[\s|\.]/g,digitNegativeTest:/^\s*\([.\d]+\)/,digitNegativeReplace:/^\s*\(([.\d]+)\)/,digitTest:/^[\-+(]?\d+[)]?$/,digitReplace:/[,.'"\s]/g},string:{max:1,min:-1,emptymin:1,emptymax:-1,zero:0,none:0,null:0,top:!0,bottom:!1},keyCodes:{enter:13},dates:{},instanceMethods:{},setup:function(t,r){var e,a,s,i;t&&t.tHead&&0!==t.tBodies.length&&!0!==t.hasInitialized?(e="",a=R(t),s=R.metadata,t.hasInitialized=!1,t.isProcessing=!0,t.config=r,R.data(t,"tablesorter",r),T.debug(r,"core")&&(console[console.group?"group":"log"]("Initializing tablesorter v"+T.version),R.data(t,"startoveralltimer",new Date)),r.supportsDataObject=((i=R.fn.jquery.split("."))[0]=parseInt(i[0],10),1':"",n.$headers=R(R.map(n.$table.find(n.selectorHeaders),function(e,t){var r,a,s,i,o=R(e);if(!T.getClosest(o,"tr").hasClass(n.cssIgnoreRow))return/(th|td)/i.test(e.nodeName)||(i=T.getClosest(o,"th, td"),o.attr("data-column",i.attr("data-column"))),r=T.getColumnData(n.table,n.headers,t,!0),n.headerContent[t]=o.html(),""===n.headerTemplate||o.find("."+T.css.headerIn).length||(s=n.headerTemplate.replace(T.regex.templateContent,o.html()).replace(T.regex.templateIcon,o.find("."+T.css.icon).length?"":l),n.onRenderTemplate&&(a=n.onRenderTemplate.apply(o,[t,s]))&&"string"==typeof a&&(s=a),o.html('
'+s+"
")),n.onRenderHeader&&n.onRenderHeader.apply(o,[t,n,n.$table]),a=parseInt(o.attr("data-column"),10),e.column=a,i=T.getOrder(T.getData(o,r,"sortInitialOrder")||n.sortInitialOrder),n.sortVars[a]={count:-1,order:i?n.sortReset?[1,0,2]:[1,0]:n.sortReset?[0,1,2]:[0,1],lockedOrder:!1,sortedBy:""},void 0!==(i=T.getData(o,r,"lockedOrder")||!1)&&!1!==i&&(n.sortVars[a].lockedOrder=!0,n.sortVars[a].order=T.getOrder(i)?[1,1]:[0,0]),n.headerList[t]=e,o.addClass(T.css.header+" "+n.cssHeader),T.getClosest(o,"tr").addClass(T.css.headerRow+" "+n.cssHeaderRow).attr("role","row"),n.tabIndex&&o.attr("tabindex",0),e})),n.$headerIndexed=[],r=0;r'),t=e.$table.width(),s=(a=e.$tbodies.find("tr:first").children(":visible")).length,i=0;i").css("width",r));e.$table.prepend(o)}},getData:function(e,t,r){var a,s,i="",e=R(e);return e.length?(a=!!R.metadata&&e.metadata(),s=" "+(e.attr("class")||""),void 0!==e.data(r)||void 0!==e.data(r.toLowerCase())?i+=e.data(r)||e.data(r.toLowerCase()):a&&void 0!==a[r]?i+=a[r]:t&&void 0!==t[r]?i+=t[r]:" "!==s&&s.match(" "+r+"-")&&(i=s.match(new RegExp("\\s"+r+"-([\\w-]+)"))[1]||""),R.trim(i)):""},getColumnData:function(e,t,r,a,s){if("object"!=typeof t||null===t)return t;var i,e=(e=R(e)[0]).config,s=s||e.$headers,o=e.$headerIndexed&&e.$headerIndexed[r]||s.find('[data-column="'+r+'"]:last');if(void 0!==t[r])return a?t[r]:t[s.index(o)];for(i in t)if("string"==typeof i&&o.filter(i).add(o.find(i)).length)return t[i]},isProcessing:function(e,t,r){var a=(e=R(e))[0].config,s=r||e.find("."+T.css.header);t?(void 0!==r&&0'),R.fn.detach?t.detach():t.remove();r=R(e).find("colgroup.tablesorter-savemyplace");t.insertAfter(r),r.remove(),e.isProcessing=!1},clearTableBody:function(e){R(e)[0].config.$tbodies.children().detach()},characterEquivalents:{a:"áàâãäąå",A:"ÁÀÂÃÄĄÅ",c:"çćč",C:"ÇĆČ",e:"éèêëěę",E:"ÉÈÊËĚĘ",i:"íìİîïı",I:"ÍÌİÎÏ",o:"óòôõöō",O:"ÓÒÔÕÖŌ",ss:"ß",SS:"ẞ",u:"úùûüů",U:"ÚÙÛÜŮ"},replaceAccents:function(e){var t,r="[",a=T.characterEquivalents;if(!T.characterRegex){for(t in T.characterRegexArray={},a)"string"==typeof t&&(r+=a[t],T.characterRegexArray[t]=new RegExp("["+a[t]+"]","g"));T.characterRegex=new RegExp(r+"]")}if(T.characterRegex.test(e))for(t in a)"string"==typeof t&&(e=e.replace(T.characterRegexArray[t],t));return e},validateOptions:function(e){var t,r,a,s,i="headers sortForce sortList sortAppend widgets".split(" "),o=e.originalSettings;if(o){for(t in T.debug(e,"core")&&(s=new Date),o)if("undefined"===(a=typeof T.defaults[t]))console.warn('Tablesorter Warning! "table.config.'+t+'" option not recognized');else if("object"===a)for(r in o[t])a=T.defaults[t]&&typeof T.defaults[t][r],R.inArray(t,i)<0&&"undefined"===a&&console.warn('Tablesorter Warning! "table.config.'+t+"."+r+'" option not recognized');T.debug(e,"core")&&console.log("validate options time:"+T.benchmark(s))}},restoreHeaders:function(e){for(var t,r=R(e)[0].config,a=r.$table.find(r.selectorHeaders),s=a.length,i=0;i tr").children("th, td"),!1===t&&0<=R.inArray("uitheme",s.widgets)&&(a.triggerHandler("applyWidgetId",["uitheme"]),a.triggerHandler("applyWidgetId",["zebra"])),i.find("tr").not(o).remove(),i="sortReset update updateRows updateAll updateHeaders updateCell addRows updateComplete sorton appendCache updateCache applyWidgetId applyWidgets refreshWidgets removeWidget destroy mouseup mouseleave "+"keypress sortBegin sortEnd resetToLoadState ".split(" ").join(s.namespace+" "),a.removeData("tablesorter").unbind(i.replace(T.regex.spaces," ")),s.$headers.add(n).removeClass([T.css.header,s.cssHeader,s.cssAsc,s.cssDesc,T.css.sortAsc,T.css.sortDesc,T.css.sortNone].join(" ")).removeAttr("data-column").removeAttr("aria-label").attr("aria-disabled","true"),o.find(s.selectorSort).unbind("mousedown mouseup keypress ".split(" ").join(s.namespace+" ").replace(T.regex.spaces," ")),T.restoreHeaders(e),a.toggleClass(T.css.table+" "+s.tableClass+" tablesorter-"+s.theme,!1===t),a.removeClass(s.namespace.slice(1)),e.hasInitialized=!1,delete e.config.cache,"function"==typeof r&&r(e),T.debug(s,"core"))&&console.log("tablesorter has been removed")}};R.fn.tablesorter=function(t){return this.each(function(){var e=R.extend(!0,{},T.defaults,t,T.instanceMethods);e.originalSettings=t,!this.hasInitialized&&T.buildTable&&"TABLE"!==this.nodeName?T.buildTable(this,e):T.setup(this,e)})},window.console&&window.console.log||(T.logs=[],(console={}).log=console.warn=console.error=console.table=function(){var e=1> Using",s?c:"cookies"),u.parseJSON&&(i=s?u.parseJSON(g[c][t]||"null")||{}:(a=p.cookie.split(/[;\s|=]/),0!==(n=u.inArray(t,a)+1)&&u.parseJSON(a[n]||"null")||{})),void 0===r||!g.JSON||!JSON.hasOwnProperty("stringify"))return i&&i[f]?i[f][e]:"";i[f]||(i[f]={}),i[f][e]=r,s?g[c][t]=JSON.stringify(i):((o=new Date).setTime(o.getTime()+31536e6),p.cookie=t+"="+JSON.stringify(i).replace(/\"/g,'"')+"; expires="+o.toGMTString()+"; path=/")}}(e,window,document),function(_){"use strict";var $=_.tablesorter||{};$.themes={bootstrap:{table:"table table-bordered table-striped",caption:"caption",header:"bootstrap-header",sortNone:"",sortAsc:"",sortDesc:"",active:"",hover:"",icons:"",iconSortNone:"bootstrap-icon-unsorted",iconSortAsc:"glyphicon glyphicon-chevron-up",iconSortDesc:"glyphicon glyphicon-chevron-down",filterRow:"",footerRow:"",footerCells:"",even:"",odd:""},jui:{table:"ui-widget ui-widget-content ui-corner-all",caption:"ui-widget-content",header:"ui-widget-header ui-corner-all ui-state-default",sortNone:"",sortAsc:"",sortDesc:"",active:"ui-state-active",hover:"ui-state-hover",icons:"ui-icon",iconSortNone:"ui-icon-carat-2-n-s ui-icon-caret-2-n-s",iconSortAsc:"ui-icon-carat-1-n ui-icon-caret-1-n",iconSortDesc:"ui-icon-carat-1-s ui-icon-caret-1-s",filterRow:"",footerRow:"",footerCells:"",even:"ui-widget-content",odd:"ui-state-default"}},_.extend($.css,{wrapper:"tablesorter-wrapper"}),$.addWidget({id:"uitheme",priority:10,format:function(e,t,r){var a,s,i,o,n,l,c,d,f,u,g,p,h=$.themes,m=t.$table.add(_(t.namespace+"_extra_table")),b=t.$headers.add(_(t.namespace+"_extra_headers")),y=t.theme||"jui",w=h[y]||{},v=_.trim([w.sortNone,w.sortDesc,w.sortAsc,w.active].join(" ")),x=_.trim([w.iconSortNone,w.iconSortDesc,w.iconSortAsc].join(" ")),C=$.debug(t,"uitheme");for(C&&(n=new Date),m.hasClass("tablesorter-"+y)&&t.theme===t.appliedTheme&&r.uitheme_applied||(r.uitheme_applied=!0,u=h[t.appliedTheme]||{},h=(p=!_.isEmptyObject(u))?[u.sortNone,u.sortDesc,u.sortAsc,u.active].join(" "):"",g=p?[u.iconSortNone,u.iconSortDesc,u.iconSortAsc].join(" "):"",p&&(r.zebra[0]=_.trim(" "+r.zebra[0].replace(" "+u.even,"")),r.zebra[1]=_.trim(" "+r.zebra[1].replace(" "+u.odd,"")),t.$tbodies.children().removeClass([u.even,u.odd].join(" "))),w.even&&(r.zebra[0]+=" "+w.even),w.odd&&(r.zebra[1]+=" "+w.odd),m.children("caption").removeClass(u.caption||"").addClass(w.caption),d=m.removeClass((t.appliedTheme?"tablesorter-"+(t.appliedTheme||""):"")+" "+(u.table||"")).addClass("tablesorter-"+y+" "+(w.table||"")).children("tfoot"),t.appliedTheme=t.theme,d.length&&d.children("tr").removeClass(u.footerRow||"").addClass(w.footerRow).children("th, td").removeClass(u.footerCells||"").addClass(w.footerCells),b.removeClass((p?[u.header,u.hover,h].join(" "):"")||"").addClass(w.header).not(".sorter-false").unbind("mouseenter.tsuitheme mouseleave.tsuitheme").bind("mouseenter.tsuitheme mouseleave.tsuitheme",function(e){_(this)["mouseenter"===e.type?"addClass":"removeClass"](w.hover||"")}),b.each(function(){var e=_(this);e.find("."+$.css.wrapper).length||e.wrapInner('
')}),t.cssIcon&&b.find("."+$.css.icon).removeClass(p?[u.icons,g].join(" "):"").addClass(w.icons||""),$.hasWidget(t.table,"filter")&&(s=function(){m.children("thead").children("."+$.css.filterRow).removeClass(p&&u.filterRow||"").addClass(w.filterRow||"")},r.filter_initialized?s():m.one("filterInit",function(){s()}))),a=0;a> Applied "+y+" theme"+$.benchmark(n))},remove:function(e,t,r,a){var s,i,o,n,l;r.uitheme_applied&&(s=t.$table,t=t.appliedTheme||"jui",i=$.themes[t]||$.themes.jui,o=s.children("thead").children(),n=i.sortNone+" "+i.sortDesc+" "+i.sortAsc,l=i.iconSortNone+" "+i.iconSortDesc+" "+i.iconSortAsc,s.removeClass("tablesorter-"+t+" "+i.table),r.uitheme_applied=!1,a||(s.find($.css.header).removeClass(i.header),o.unbind("mouseenter.tsuitheme mouseleave.tsuitheme").removeClass(i.hover+" "+n+" "+i.active).filter("."+$.css.filterRow).removeClass(i.filterRow),o.find("."+$.css.icon).removeClass(i.icons+" "+l)))}})}(e),function(m){"use strict";var b=m.tablesorter||{};b.addWidget({id:"columns",priority:65,options:{columns:["primary","secondary","tertiary"]},format:function(e,t,r){for(var a,s,i,o,n,l=t.$table,c=t.$tbodies,d=t.sortList,f=d.length,u=r&&r.columns||["primary","secondary","tertiary"],g=u.length-1,p=u.join(" "),h=0;h=]/g,query:"(q|query)",wild01:/\?/g,wild0More:/\*/g,quote:/\"/g,isNeg1:/(>=?\s*-\d)/,isNeg2:/(<=?\s*\d)/},types:{or:function(e,t,r){if(!H.orTest.test(t.iFilter)&&!H.orSplit.test(t.filter)||H.regex.test(t.filter))return null;for(var a,s,i=A.extend({},t),o=t.filter.split(H.orSplit),n=t.iFilter.split(H.orSplit),l=o.length,c=0;c]=?/,gtTest:/>/,gteTest:/>=/,ltTest:/'+(i.data("placeholder")||i.attr("data-placeholder")||f.filter_placeholder.select||"")+"":"",0<=(s=n=a).indexOf(f.filter_selectSourceSeparator)&&(s=(n=a.split(f.filter_selectSourceSeparator))[1],n=n[0]),t+="");d.$table.find("thead").find("select."+h.filter+'[data-column="'+o+'"]').append(t),("function"==typeof(s=f.filter_selectSource)||N.getColumnData(r,s,o))&&D.buildSelect(d.table,o,"",!0,i.hasClass(f.filter_onlyAvail))}D.buildDefault(r,!0),D.bindSearch(r,d.$table.find("."+h.filter),!0),f.filter_external&&D.bindSearch(r,f.filter_external),f.filter_hideFilters&&D.hideFilters(d),d.showProcessing&&(s="filterStart filterEnd ".split(" ").join(d.namespace+"filter-sp "),d.$table.unbind(s.replace(N.regex.spaces," ")).bind(s,function(e,t){i=t?d.$table.find("."+h.header).filter("[data-column]").filter(function(){return""!==t[A(this).data("column")]}):"",N.isProcessing(r,"filterStart"===e.type,t?i:"")})),d.filteredRows=d.totalRows,s="tablesorter-initialized pagerBeforeInitialized ".split(" ").join(d.namespace+"filter "),d.$table.unbind(s.replace(N.regex.spaces," ")).bind(s,function(){D.completeInit(this)}),d.pager&&d.pager.initialized&&!f.filter_initialized?(d.$table.triggerHandler("filterFomatterUpdate"),setTimeout(function(){D.filterInitComplete(d)},100)):f.filter_initialized||D.completeInit(r)},completeInit:function(e){var t=e.config,r=t.widgetOptions,a=D.setDefaults(e,t,r)||[];!a.length||t.delayInit&&""===a.join("")||N.setFilters(e,a,!0),t.$table.triggerHandler("filterFomatterUpdate"),setTimeout(function(){r.filter_initialized||D.filterInitComplete(t)},100)},formatterUpdated:function(e,t){e=e&&e.closest("table"),e=e.length&&e[0].config,e=e&&e.widgetOptions;e&&!e.filter_initialized&&(e.filter_formatterInit[t]=1)},filterInitComplete:function(e){function t(){s.filter_initialized=!0,e.lastSearch=e.$table.data("lastSearch"),e.$table.triggerHandler("filterInit",e),D.findRows(e.table,e.lastSearch||[]),N.debug(e,"filter")&&console.log("Filter >> Widget initialized")}var r,a,s=e.widgetOptions,i=0;if(A.isEmptyObject(s.filter_formatter))t();else{for(a=s.filter_formatterInit.length,r=0;r',p=0;p");for(t.$filters=A(g+="").appendTo(t.$table.children("thead").eq(0)).children("td"),p=0;p").appendTo(a):((l=N.getColumnData(e,r.filter_formatter,p))?(r.filter_formatterCount++,(g=(g=l(a,p))&&0===g.length?a.children("input"):g)&&(0===g.parent().length||g.parent().length&&g.parent()[0]!==a[0])&&a.append(g)):g=A('').appendTo(a),g&&(c=s.data("placeholder")||s.attr("data-placeholder")||r.filter_placeholder.search||"",g.attr("placeholder",c))),g)&&(n=(A.isArray(r.filter_cssFilter)?void 0!==r.filter_cssFilter[p]&&r.filter_cssFilter[p]||"":r.filter_cssFilter)||"",g.addClass(h.filter+" "+n),c=(n=r.filter_filterLabel).match(/{{([^}]+?)}}/g),A.each(c=c||["{{label}}"],function(e,t){var r=new RegExp(t,"g"),t=s.attr("data-"+t.replace(/{{|}}/g,"")),t=void 0===t?s.text():t;n=n.replace(r,A.trim(t))}),g.attr({"data-column":a.attr("data-column"),"aria-label":n}),o)&&(g.attr("placeholder","").addClass(h.filterDisabled)[0].disabled=!0)},bindSearch:function(s,e,t){var r,i,o,a,n;s=A(s)[0],(e=A(e)).length&&(i=s.config,o=i.widgetOptions,a=i.namespace+"filter",n=o.filter_$externalFilters,!0!==t&&(r=o.filter_anyColumnSelector+","+o.filter_multipleColumnSelector,o.filter_$anyMatch=e.filter(r),n&&n.length?o.filter_$externalFilters=o.filter_$externalFilters.add(e):o.filter_$externalFilters=e,N.setFilters(s,i.$table.data("lastSearch")||[],!1===t)),r="keypress keyup keydown search change input ".split(" ").join(a+" "),e.attr("data-lastSearchTime",(new Date).getTime()).unbind(r.replace(N.regex.spaces," ")).bind("keydown"+a,function(e){if(e.which===l.escape&&!s.config.widgetOptions.filter_resetOnEsc)return!1}).bind("keyup"+a,function(e){o=s.config.widgetOptions;var t=parseInt(A(this).attr("data-column"),10),r="boolean"==typeof o.filter_liveSearch?o.filter_liveSearch:N.getColumnData(s,o.filter_liveSearch,t);if(void 0===r&&(r=o.filter_liveSearch.fallback||!1),A(this).attr("data-lastSearchTime",(new Date).getTime()),e.which===l.escape)this.value=o.filter_resetOnEsc?"":i.lastSearch[t];else{if(""!==this.value&&("number"==typeof r&&this.value.length=l.left&&e.which<=l.down)))return;if(!1===r&&""!==this.value&&e.which!==l.enter)return}D.searching(s,!0,!0,t)}).bind("search change keypress input blur ".split(" ").join(a+" "),function(e){var t=parseInt(A(this).attr("data-column"),10),r=e.type,a="boolean"==typeof o.filter_liveSearch?o.filter_liveSearch:N.getColumnData(s,o.filter_liveSearch,t);!s.config.widgetOptions.filter_initialized||e.which!==l.enter&&"search"!==r&&"blur"!==r&&("change"!==r&&"input"!==r||!0!==a&&(!0===a||"INPUT"===e.target.nodeName)||this.value===i.lastSearch[t])||(e.preventDefault(),A(this).attr("data-lastSearchTime",(new Date).getTime()),D.searching(s,"keypress"!==r||e.which===l.enter,!0,t))}))},searching:function(e,t,r,a){var s,i=e.config.widgetOptions;void 0===a?s=!1:void 0===(s="boolean"==typeof i.filter_liveSearch?i.filter_liveSearch:N.getColumnData(e,i.filter_liveSearch,a))&&(s=i.filter_liveSearch.fallback||!1),clearTimeout(i.filter_searchTimer),void 0===t||!0===t?i.filter_searchTimer=setTimeout(function(){D.checkFilters(e,t,r)},s?i.filter_searchDelay:10):D.checkFilters(e,t,r)},equalFilters:function(e,t,r){var a,s=[],i=[],o=e.columns+1;for(t=A.isArray(t)?t:[],r=A.isArray(r)?r:[],a=0;a=e.columns&&(o=e.columns-1);i<=o;i++)f[f.length]=i;t=t.replace(a[c],"")}if(!r&&/,/.test(t))for(d=(n=t.split(/\s*,\s*/)).length,l=0;l> Starting filter widget search",r),m=new Date),F.filteredRows=0,t=z||[],c=F.totalRows=0;c> Searching through "+(v&&w> Completed search"+N.benchmark(m)),R.filter_initialized&&(F.$table.triggerHandler("filterBeforeEnd",F),F.$table.triggerHandler("filterEnd",F)),setTimeout(function(){N.applyWidget(F.table)},0)}},getOptionSource:function(e,t,r){var a=(e=A(e)[0]).config,s=!1,i=a.widgetOptions.filter_selectSource,a=a.$table.data("lastSearch")||[],o="function"==typeof i||N.getColumnData(e,i,t);if(r&&""!==a[t]&&(r=!1),!0===o)s=i(e,t,r);else{if(o instanceof A||"string"===A.type(o)&&0<=o.indexOf(""))return o;if(A.isArray(o))s=o;else if("object"===A.type(i)&&o&&null===(s=o(e,t,r)))return null}return!1===s&&(s=D.getOptions(e,t,r)),D.processOptions(e,t,s)},processOptions:function(a,s,r){if(!A.isArray(r))return!1;var i,e,t,o,n,l=(a=A(a)[0]).config,c=null!=s&&0<=s&&s'+(u.data("placeholder")||u.attr("data-placeholder")||f.filter_placeholder.select||"")+"",u=d.$table.find("thead").find("select."+h.filter+'[data-column="'+t+'"]').val();if(void 0!==r&&""!==r||null!==(r=D.getOptionSource(e,t,s))){if(A.isArray(r)){for(i=0;i"}else""+c!="[object Object]"&&(0<=(o=n=c=(""+c).replace(H.quote,""")).indexOf(f.filter_selectSourceSeparator)&&(o=(l=n.split(f.filter_selectSourceSeparator))[0],n=l[1]),g+=""!==c?"":"");r=[]}e=(d.$filters||d.$table.children("thead")).find("."+h.filter),(s=(e=f.filter_$externalFilters?e&&e.length?e.add(f.filter_$externalFilters):f.filter_$externalFilters:e).filter('select[data-column="'+t+'"]')).length&&(s[a?"html":"append"](g),A.isArray(r)||s.append(r).val(u),s.val(u))}}},buildDefault:function(e,t){for(var r,a,s=e.config,i=s.widgetOptions,o=s.columns,n=0;n'),y=b.parent().addClass(z.css.stickyHide).css({position:d.length?"absolute":"fixed",padding:parseInt(b.parent().parent().css("padding-left"),10),top:p+m,left:0,visibility:"hidden",zIndex:l.stickyHeaders_zIndex||2}),p=b.children("thead:first"),w="",v=function(e,t){for(var r,a,s,i=e.filter(":visible"),o=i.length,n=0;ns.top&&a thead:gt(0), tr.sticky-false").hide(),b.find("> tbody, > tfoot").remove(),b.find("caption").toggle(l.stickyHeaders_includeCaption),i=p.children().children(),b.css({height:0,width:0,margin:0}),i.find("."+z.css.resizer).remove(),c.addClass("hasStickyHeaders").bind("pagerComplete"+o,function(){C()}),z.bindEvents(e,p.children().children("."+z.css.header)),l.stickyHeaders_appendTo?$(l.stickyHeaders_appendTo).append(y):c.after(y),t.onRenderHeader)for(a=(s=p.children("tr").children()).length,r=0;r";c("head").append(e)}),d.resizable={init:function(e,t){if(!e.$table.hasClass("hasResizable")){e.$table.addClass("hasResizable");var r,a,s,i=e.$table,o=i.parent(),n=parseInt(i.css("margin-top"),10),l=t.resizable_vars={useStorage:d.storage&&!1!==t.resizable,$wrap:o,mouseXPosition:0,$target:null,$next:null,overflow:"auto"===o.css("overflow")||"scroll"===o.css("overflow")||"auto"===o.css("overflow-x")||"scroll"===o.css("overflow-x"),storedSizes:[]};for(d.resizableReset(e.table,!0),l.tableWidth=i.width(),l.fullWidth=Math.abs(o.width()-l.tableWidth)<20,l.useStorage&&l.overflow&&(d.storage(e.table,"tablesorter-table-original-css-width",l.tableWidth),s=d.storage(e.table,"tablesorter-table-resized-width")||"auto",d.resizable.setWidth(i,s,!0)),t.resizable_vars.storedSizes=o=(l.useStorage?d.storage(e.table,d.css.resizableStorage):[])||[],d.resizable.setWidths(e,t,o),d.resizable.updateStoredSizes(e,t),t.$resizable_container=c('
').css({top:n}).insertBefore(i),a=0;a').appendTo(t.$resizable_container).attr({"data-column":a,unselectable:"on"}).data("header",r).bind("selectstart",!1);d.resizable.bindings(e,t)}},updateStoredSizes:function(e,t){var r,a,s=e.columns,i=t.resizable_vars;for(i.storedSizes=[],r=0;r> Saving last sort: "+e.sortList+l.benchmark(s)):(i.addClass("hasSaveSort"),o="",l.storage&&(o=c(e),n&&console.log('saveSort >> Last sort loaded: "'+o+'"'+l.benchmark(s)),i.bind("saveSortReset",function(e){e.stopPropagation(),l.storage(t,"tablesorter-savesort","")})),a&&o&&0 // class from cssIcon + onRenderTemplate : null, // function( index, template ) { return template; }, // template is a string + onRenderHeader : null, // function( index ) {}, // nothing to return + + // *** functionality + cancelSelection : true, // prevent text selection in the header + tabIndex : true, // add tabindex to header for keyboard accessibility + dateFormat : 'mmddyyyy', // other options: 'ddmmyyy' or 'yyyymmdd' + sortMultiSortKey : 'shiftKey', // key used to select additional columns + sortResetKey : 'ctrlKey', // key used to remove sorting on a column + usNumberFormat : true, // false for German '1.234.567,89' or French '1 234 567,89' + delayInit : false, // if false, the parsed table contents will not update until the first sort + serverSideSorting: false, // if true, server-side sorting should be performed because client-side sorting will be disabled, but the ui and events will still be used. + resort : true, // default setting to trigger a resort after an 'update', 'addRows', 'updateCell', etc has completed + + // *** sort options + headers : null, // set sorter, string, empty, locked order, sortInitialOrder, filter, etc. + ignoreCase : true, // ignore case while sorting + sortForce : null, // column(s) first sorted; always applied + sortList : [], // Initial sort order; applied initially; updated when manually sorted + sortAppend : null, // column(s) sorted last; always applied + sortStable : false, // when sorting two rows with exactly the same content, the original sort order is maintained + + sortInitialOrder : 'asc', // sort direction on first click + sortLocaleCompare: false, // replace equivalent character (accented characters) + sortReset : false, // third click on the header will reset column to default - unsorted + sortRestart : false, // restart sort to 'sortInitialOrder' when clicking on previously unsorted columns + + emptyTo : 'bottom', // sort empty cell to bottom, top, none, zero, emptyMax, emptyMin + stringTo : 'max', // sort strings in numerical column as max, min, top, bottom, zero + duplicateSpan : true, // colspan cells in the tbody will have duplicated content in the cache for each spanned column + textExtraction : 'basic', // text extraction method/function - function( node, table, cellIndex ) {} + textAttribute : 'data-text',// data-attribute that contains alternate cell text (used in default textExtraction function) + textSorter : null, // choose overall or specific column sorter function( a, b, direction, table, columnIndex ) [alt: ts.sortText] + numberSorter : null, // choose overall numeric sorter function( a, b, direction, maxColumnValue ) + + // *** widget options + initWidgets : true, // apply widgets on tablesorter initialization + widgetClass : 'widget-{name}', // table class name template to match to include a widget + widgets : [], // method to add widgets, e.g. widgets: ['zebra'] + widgetOptions : { + zebra : [ 'even', 'odd' ] // zebra widget alternating row class names + }, + + // *** callbacks + initialized : null, // function( table ) {}, + + // *** extra css class names + tableClass : '', + cssAsc : '', + cssDesc : '', + cssNone : '', + cssHeader : '', + cssHeaderRow : '', + cssProcessing : '', // processing icon applied to header during sort/filter + + cssChildRow : 'tablesorter-childRow', // class name indiciating that a row is to be attached to its parent + cssInfoBlock : 'tablesorter-infoOnly', // don't sort tbody with this class name (only one class name allowed here!) + cssNoSort : 'tablesorter-noSort', // class name added to element inside header; clicking on it won't cause a sort + cssIgnoreRow : 'tablesorter-ignoreRow',// header row to ignore; cells within this row will not be added to c.$headers + + cssIcon : 'tablesorter-icon', // if this class does not exist, the {icon} will not be added from the headerTemplate + cssIconNone : '', // class name added to the icon when there is no column sort + cssIconAsc : '', // class name added to the icon when the column has an ascending sort + cssIconDesc : '', // class name added to the icon when the column has a descending sort + cssIconDisabled : '', // class name added to the icon when the column has a disabled sort + + // *** events + pointerClick : 'click', + pointerDown : 'mousedown', + pointerUp : 'mouseup', + + // *** selectors + selectorHeaders : '> thead th, > thead td', + selectorSort : 'th, td', // jQuery selector of content within selectorHeaders that is clickable to trigger a sort + selectorRemove : '.remove-me', + + // *** advanced + debug : false, + + // *** Internal variables + headerList: [], + empties: {}, + strings: {}, + parsers: [], + + // *** parser options for validator; values must be falsy! + globalize: 0, + imgAttr: 0 + + // removed: widgetZebra: { css: ['even', 'odd'] } + + }, + + // internal css classes - these will ALWAYS be added to + // the table and MUST only contain one class name - fixes #381 + css : { + table : 'tablesorter', + cssHasChild: 'tablesorter-hasChildRow', + childRow : 'tablesorter-childRow', + colgroup : 'tablesorter-colgroup', + header : 'tablesorter-header', + headerRow : 'tablesorter-headerRow', + headerIn : 'tablesorter-header-inner', + icon : 'tablesorter-icon', + processing : 'tablesorter-processing', + sortAsc : 'tablesorter-headerAsc', + sortDesc : 'tablesorter-headerDesc', + sortNone : 'tablesorter-headerUnSorted' + }, + + // labels applied to sortable headers for accessibility (aria) support + language : { + sortAsc : 'Ascending sort applied, ', + sortDesc : 'Descending sort applied, ', + sortNone : 'No sort applied, ', + sortDisabled : 'sorting is disabled', + nextAsc : 'activate to apply an ascending sort', + nextDesc : 'activate to apply a descending sort', + nextNone : 'activate to remove the sort' + }, + + regex : { + templateContent : /\{content\}/g, + templateIcon : /\{icon\}/g, + templateName : /\{name\}/i, + spaces : /\s+/g, + nonWord : /\W/g, + formElements : /(input|select|button|textarea)/i, + + // *** sort functions *** + // regex used in natural sort + // chunk/tokenize numbers & letters + chunk : /(^([+\-]?(?:\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?)?$|^0x[0-9a-f]+$|\d+)/gi, + // replace chunks @ ends + chunks : /(^\\0|\\0$)/, + hex : /^0x[0-9a-f]+$/i, + + // *** formatFloat *** + comma : /,/g, + digitNonUS : /[\s|\.]/g, + digitNegativeTest : /^\s*\([.\d]+\)/, + digitNegativeReplace : /^\s*\(([.\d]+)\)/, + + // *** isDigit *** + digitTest : /^[\-+(]?\d+[)]?$/, + digitReplace : /[,.'"\s]/g + + }, + + // digit sort, text location + string : { + max : 1, + min : -1, + emptymin : 1, + emptymax : -1, + zero : 0, + none : 0, + 'null' : 0, + top : true, + bottom : false + }, + + keyCodes : { + enter : 13 + }, + + // placeholder date parser data (globalize) + dates : {}, + + // These methods can be applied on table.config instance + instanceMethods : {}, + + /* + ▄█████ ██████ ██████ ██ ██ █████▄ + ▀█▄ ██▄▄ ██ ██ ██ ██▄▄██ + ▀█▄ ██▀▀ ██ ██ ██ ██▀▀▀ + █████▀ ██████ ██ ▀████▀ ██ + */ + + setup : function( table, c ) { + // if no thead or tbody, or tablesorter is already present, quit + if ( !table || !table.tHead || table.tBodies.length === 0 || table.hasInitialized === true ) { + if ( ts.debug(c, 'core') ) { + if ( table.hasInitialized ) { + console.warn( 'Stopping initialization. Tablesorter has already been initialized' ); + } else { + console.error( 'Stopping initialization! No table, thead or tbody', table ); + } + } + return; + } + + var tmp = '', + $table = $( table ), + meta = $.metadata; + // initialization flag + table.hasInitialized = false; + // table is being processed flag + table.isProcessing = true; + // make sure to store the config object + table.config = c; + // save the settings where they read + $.data( table, 'tablesorter', c ); + if ( ts.debug(c, 'core') ) { + console[ console.group ? 'group' : 'log' ]( 'Initializing tablesorter v' + ts.version ); + $.data( table, 'startoveralltimer', new Date() ); + } + + // removing this in version 3 (only supports jQuery 1.7+) + c.supportsDataObject = ( function( version ) { + version[ 0 ] = parseInt( version[ 0 ], 10 ); + return ( version[ 0 ] > 1 ) || ( version[ 0 ] === 1 && parseInt( version[ 1 ], 10 ) >= 4 ); + })( $.fn.jquery.split( '.' ) ); + // ensure case insensitivity + c.emptyTo = c.emptyTo.toLowerCase(); + c.stringTo = c.stringTo.toLowerCase(); + c.last = { sortList : [], clickedIndex : -1 }; + // add table theme class only if there isn't already one there + if ( !/tablesorter\-/.test( $table.attr( 'class' ) ) ) { + tmp = ( c.theme !== '' ? ' tablesorter-' + c.theme : '' ); + } + + // give the table a unique id, which will be used in namespace binding + if ( !c.namespace ) { + c.namespace = '.tablesorter' + Math.random().toString( 16 ).slice( 2 ); + } else { + // make sure namespace starts with a period & doesn't have weird characters + c.namespace = '.' + c.namespace.replace( ts.regex.nonWord, '' ); + } + + c.table = table; + c.$table = $table + // add namespace to table to allow bindings on extra elements to target + // the parent table (e.g. parser-input-select) + .addClass( ts.css.table + ' ' + c.tableClass + tmp + ' ' + c.namespace.slice(1) ) + .attr( 'role', 'grid' ); + c.$headers = $table.find( c.selectorHeaders ); + + c.$table.children().children( 'tr' ).attr( 'role', 'row' ); + c.$tbodies = $table.children( 'tbody:not(.' + c.cssInfoBlock + ')' ).attr({ + 'aria-live' : 'polite', + 'aria-relevant' : 'all' + }); + if ( c.$table.children( 'caption' ).length ) { + tmp = c.$table.children( 'caption' )[ 0 ]; + if ( !tmp.id ) { tmp.id = c.namespace.slice( 1 ) + 'caption'; } + c.$table.attr( 'aria-labelledby', tmp.id ); + } + c.widgetInit = {}; // keep a list of initialized widgets + // change textExtraction via data-attribute + c.textExtraction = c.$table.attr( 'data-text-extraction' ) || c.textExtraction || 'basic'; + // build headers + ts.buildHeaders( c ); + // fixate columns if the users supplies the fixedWidth option + // do this after theme has been applied + ts.fixColumnWidth( table ); + // add widgets from class name + ts.addWidgetFromClass( table ); + // add widget options before parsing (e.g. grouping widget has parser settings) + ts.applyWidgetOptions( table ); + // try to auto detect column type, and store in tables config + ts.setupParsers( c ); + // start total row count at zero + c.totalRows = 0; + // only validate options while debugging. See #1528 + if (c.debug) { + ts.validateOptions( c ); + } + // build the cache for the tbody cells + // delayInit will delay building the cache until the user starts a sort + if ( !c.delayInit ) { ts.buildCache( c ); } + // bind all header events and methods + ts.bindEvents( table, c.$headers, true ); + ts.bindMethods( c ); + // get sort list from jQuery data or metadata + // in jQuery < 1.4, an error occurs when calling $table.data() + if ( c.supportsDataObject && typeof $table.data().sortlist !== 'undefined' ) { + c.sortList = $table.data().sortlist; + } else if ( meta && ( $table.metadata() && $table.metadata().sortlist ) ) { + c.sortList = $table.metadata().sortlist; + } + // apply widget init code + ts.applyWidget( table, true ); + // if user has supplied a sort list to constructor + if ( c.sortList.length > 0 ) { + // save sortList before any sortAppend is added + c.last.sortList = c.sortList; + ts.sortOn( c, c.sortList, {}, !c.initWidgets ); + } else { + ts.setHeadersCss( c ); + if ( c.initWidgets ) { + // apply widget format + ts.applyWidget( table, false ); + } + } + + // show processesing icon + if ( c.showProcessing ) { + $table + .unbind( 'sortBegin' + c.namespace + ' sortEnd' + c.namespace ) + .bind( 'sortBegin' + c.namespace + ' sortEnd' + c.namespace, function( e ) { + clearTimeout( c.timerProcessing ); + ts.isProcessing( table ); + if ( e.type === 'sortBegin' ) { + c.timerProcessing = setTimeout( function() { + ts.isProcessing( table, true ); + }, 500 ); + } + }); + } + + // initialized + table.hasInitialized = true; + table.isProcessing = false; + if ( ts.debug(c, 'core') ) { + console.log( 'Overall initialization time:' + ts.benchmark( $.data( table, 'startoveralltimer' ) ) ); + if ( ts.debug(c, 'core') && console.groupEnd ) { console.groupEnd(); } + } + $table.triggerHandler( 'tablesorter-initialized', table ); + if ( typeof c.initialized === 'function' ) { + c.initialized( table ); + } + }, + + bindMethods : function( c ) { + var $table = c.$table, + namespace = c.namespace, + events = ( 'sortReset update updateRows updateAll updateHeaders addRows updateCell updateComplete ' + + 'sorton appendCache updateCache applyWidgetId applyWidgets refreshWidgets destroy mouseup ' + + 'mouseleave ' ).split( ' ' ) + .join( namespace + ' ' ); + // apply easy methods that trigger bound events + $table + .unbind( events.replace( ts.regex.spaces, ' ' ) ) + .bind( 'sortReset' + namespace, function( e, callback ) { + e.stopPropagation(); + // using this.config to ensure functions are getting a non-cached version of the config + ts.sortReset( this.config, function( table ) { + if (table.isApplyingWidgets) { + // multiple triggers in a row... filterReset, then sortReset - see #1361 + // wait to update widgets + setTimeout( function() { + ts.applyWidget( table, '', callback ); + }, 100 ); + } else { + ts.applyWidget( table, '', callback ); + } + }); + }) + .bind( 'updateAll' + namespace, function( e, resort, callback ) { + e.stopPropagation(); + ts.updateAll( this.config, resort, callback ); + }) + .bind( 'update' + namespace + ' updateRows' + namespace, function( e, resort, callback ) { + e.stopPropagation(); + ts.update( this.config, resort, callback ); + }) + .bind( 'updateHeaders' + namespace, function( e, callback ) { + e.stopPropagation(); + ts.updateHeaders( this.config, callback ); + }) + .bind( 'updateCell' + namespace, function( e, cell, resort, callback ) { + e.stopPropagation(); + ts.updateCell( this.config, cell, resort, callback ); + }) + .bind( 'addRows' + namespace, function( e, $row, resort, callback ) { + e.stopPropagation(); + ts.addRows( this.config, $row, resort, callback ); + }) + .bind( 'updateComplete' + namespace, function() { + this.isUpdating = false; + }) + .bind( 'sorton' + namespace, function( e, list, callback, init ) { + e.stopPropagation(); + ts.sortOn( this.config, list, callback, init ); + }) + .bind( 'appendCache' + namespace, function( e, callback, init ) { + e.stopPropagation(); + ts.appendCache( this.config, init ); + if ( $.isFunction( callback ) ) { + callback( this ); + } + }) + // $tbodies variable is used by the tbody sorting widget + .bind( 'updateCache' + namespace, function( e, callback, $tbodies ) { + e.stopPropagation(); + ts.updateCache( this.config, callback, $tbodies ); + }) + .bind( 'applyWidgetId' + namespace, function( e, id ) { + e.stopPropagation(); + ts.applyWidgetId( this, id ); + }) + .bind( 'applyWidgets' + namespace, function( e, callback ) { + e.stopPropagation(); + // apply widgets (false = not initializing) + ts.applyWidget( this, false, callback ); + }) + .bind( 'refreshWidgets' + namespace, function( e, all, dontapply ) { + e.stopPropagation(); + ts.refreshWidgets( this, all, dontapply ); + }) + .bind( 'removeWidget' + namespace, function( e, name, refreshing ) { + e.stopPropagation(); + ts.removeWidget( this, name, refreshing ); + }) + .bind( 'destroy' + namespace, function( e, removeClasses, callback ) { + e.stopPropagation(); + ts.destroy( this, removeClasses, callback ); + }) + .bind( 'resetToLoadState' + namespace, function( e ) { + e.stopPropagation(); + // remove all widgets + ts.removeWidget( this, true, false ); + var tmp = $.extend( true, {}, c.originalSettings ); + // restore original settings; this clears out current settings, but does not clear + // values saved to storage. + c = $.extend( true, {}, ts.defaults, tmp ); + c.originalSettings = tmp; + this.hasInitialized = false; + // setup the entire table again + ts.setup( this, c ); + }); + }, + + bindEvents : function( table, $headers, core ) { + table = $( table )[ 0 ]; + var tmp, + c = table.config, + namespace = c.namespace, + downTarget = null; + if ( core !== true ) { + $headers.addClass( namespace.slice( 1 ) + '_extra_headers' ); + tmp = ts.getClosest( $headers, 'table' ); + if ( tmp.length && tmp[ 0 ].nodeName === 'TABLE' && tmp[ 0 ] !== table ) { + $( tmp[ 0 ] ).addClass( namespace.slice( 1 ) + '_extra_table' ); + } + } + tmp = ( c.pointerDown + ' ' + c.pointerUp + ' ' + c.pointerClick + ' sort keyup ' ) + .replace( ts.regex.spaces, ' ' ) + .split( ' ' ) + .join( namespace + ' ' ); + // apply event handling to headers and/or additional headers (stickyheaders, scroller, etc) + $headers + // http://stackoverflow.com/questions/5312849/jquery-find-self; + .find( c.selectorSort ) + .add( $headers.filter( c.selectorSort ) ) + .unbind( tmp ) + .bind( tmp, function( e, external ) { + var $cell, cell, temp, + $target = $( e.target ), + // wrap event type in spaces, so the match doesn't trigger on inner words + type = ' ' + e.type + ' '; + // only recognize left clicks + if ( ( ( e.which || e.button ) !== 1 && !type.match( ' ' + c.pointerClick + ' | sort | keyup ' ) ) || + // allow pressing enter + ( type === ' keyup ' && e.which !== ts.keyCodes.enter ) || + // allow triggering a click event (e.which is undefined) & ignore physical clicks + ( type.match( ' ' + c.pointerClick + ' ' ) && typeof e.which !== 'undefined' ) ) { + return; + } + // ignore mouseup if mousedown wasn't on the same target + if ( type.match( ' ' + c.pointerUp + ' ' ) && downTarget !== e.target && external !== true ) { + return; + } + // set target on mousedown + if ( type.match( ' ' + c.pointerDown + ' ' ) ) { + downTarget = e.target; + // preventDefault needed or jQuery v1.3.2 and older throws an + // "Uncaught TypeError: handler.apply is not a function" error + temp = $target.jquery.split( '.' ); + if ( temp[ 0 ] === '1' && temp[ 1 ] < 4 ) { e.preventDefault(); } + return; + } + downTarget = null; + $cell = ts.getClosest( $( this ), '.' + ts.css.header ); + // prevent sort being triggered on form elements + if ( ts.regex.formElements.test( e.target.nodeName ) || + // nosort class name, or elements within a nosort container + $target.hasClass( c.cssNoSort ) || $target.parents( '.' + c.cssNoSort ).length > 0 || + // disabled cell directly clicked + $cell.hasClass( 'sorter-false' ) || + // elements within a button + $target.parents( 'button' ).length > 0 ) { + return !c.cancelSelection; + } + if ( c.delayInit && ts.isEmptyObject( c.cache ) ) { + ts.buildCache( c ); + } + // use column index from data-attribute or index of current row; fixes #1116 + c.last.clickedIndex = $cell.attr( 'data-column' ) || $cell.index(); + cell = c.$headerIndexed[ c.last.clickedIndex ][0]; + if ( cell && !cell.sortDisabled ) { + ts.initSort( c, cell, e ); + } + }); + if ( c.cancelSelection ) { + // cancel selection + $headers + .attr( 'unselectable', 'on' ) + .bind( 'selectstart', false ) + .css({ + 'user-select' : 'none', + 'MozUserSelect' : 'none' // not needed for jQuery 1.8+ + }); + } + }, + + buildHeaders : function( c ) { + var $temp, icon, timer, indx; + c.headerList = []; + c.headerContent = []; + c.sortVars = []; + if ( ts.debug(c, 'core') ) { + timer = new Date(); + } + // children tr in tfoot - see issue #196 & #547 + // don't pass table.config to computeColumnIndex here - widgets (math) pass it to "quickly" index tbody cells + c.columns = ts.computeColumnIndex( c.$table.children( 'thead, tfoot' ).children( 'tr' ) ); + // add icon if cssIcon option exists + icon = c.cssIcon ? + '' : + ''; + // redefine c.$headers here in case of an updateAll that replaces or adds an entire header cell - see #683 + c.$headers = $( $.map( c.$table.find( c.selectorHeaders ), function( elem, index ) { + var configHeaders, header, column, template, tmp, + $elem = $( elem ); + // ignore cell (don't add it to c.$headers) if row has ignoreRow class + if ( ts.getClosest( $elem, 'tr' ).hasClass( c.cssIgnoreRow ) ) { return; } + // transfer data-column to element if not th/td - #1459 + if ( !/(th|td)/i.test( elem.nodeName ) ) { + tmp = ts.getClosest( $elem, 'th, td' ); + $elem.attr( 'data-column', tmp.attr( 'data-column' ) ); + } + // make sure to get header cell & not column indexed cell + configHeaders = ts.getColumnData( c.table, c.headers, index, true ); + // save original header content + c.headerContent[ index ] = $elem.html(); + // if headerTemplate is empty, don't reformat the header cell + if ( c.headerTemplate !== '' && !$elem.find( '.' + ts.css.headerIn ).length ) { + // set up header template + template = c.headerTemplate + .replace( ts.regex.templateContent, $elem.html() ) + .replace( ts.regex.templateIcon, $elem.find( '.' + ts.css.icon ).length ? '' : icon ); + if ( c.onRenderTemplate ) { + header = c.onRenderTemplate.apply( $elem, [ index, template ] ); + // only change t if something is returned + if ( header && typeof header === 'string' ) { + template = header; + } + } + $elem.html( '
' + template + '
' ); // faster than wrapInner + } + if ( c.onRenderHeader ) { + c.onRenderHeader.apply( $elem, [ index, c, c.$table ] ); + } + column = parseInt( $elem.attr( 'data-column' ), 10 ); + elem.column = column; + tmp = ts.getOrder( ts.getData( $elem, configHeaders, 'sortInitialOrder' ) || c.sortInitialOrder ); + // this may get updated numerous times if there are multiple rows + c.sortVars[ column ] = { + count : -1, // set to -1 because clicking on the header automatically adds one + order : tmp ? + ( c.sortReset ? [ 1, 0, 2 ] : [ 1, 0 ] ) : // desc, asc, unsorted + ( c.sortReset ? [ 0, 1, 2 ] : [ 0, 1 ] ), // asc, desc, unsorted + lockedOrder : false, + sortedBy : '' + }; + tmp = ts.getData( $elem, configHeaders, 'lockedOrder' ) || false; + if ( typeof tmp !== 'undefined' && tmp !== false ) { + c.sortVars[ column ].lockedOrder = true; + c.sortVars[ column ].order = ts.getOrder( tmp ) ? [ 1, 1 ] : [ 0, 0 ]; + } + // add cell to headerList + c.headerList[ index ] = elem; + $elem.addClass( ts.css.header + ' ' + c.cssHeader ); + // add to parent in case there are multiple rows + ts.getClosest( $elem, 'tr' ) + .addClass( ts.css.headerRow + ' ' + c.cssHeaderRow ) + .attr( 'role', 'row' ); + // allow keyboard cursor to focus on element + if ( c.tabIndex ) { + $elem.attr( 'tabindex', 0 ); + } + return elem; + }) ); + // cache headers per column + c.$headerIndexed = []; + for ( indx = 0; indx < c.columns; indx++ ) { + // colspan in header making a column undefined + if ( ts.isEmptyObject( c.sortVars[ indx ] ) ) { + c.sortVars[ indx ] = {}; + } + // Use c.$headers.parent() in case selectorHeaders doesn't point to the th/td + $temp = c.$headers.filter( '[data-column="' + indx + '"]' ); + // target sortable column cells, unless there are none, then use non-sortable cells + // .last() added in jQuery 1.4; use .filter(':last') to maintain compatibility with jQuery v1.2.6 + c.$headerIndexed[ indx ] = $temp.length ? + $temp.not( '.sorter-false' ).length ? + $temp.not( '.sorter-false' ).filter( ':last' ) : + $temp.filter( ':last' ) : + $(); + } + c.$table.find( c.selectorHeaders ).attr({ + scope: 'col', + role : 'columnheader' + }); + // enable/disable sorting + ts.updateHeader( c ); + if ( ts.debug(c, 'core') ) { + console.log( 'Built headers:' + ts.benchmark( timer ) ); + console.log( c.$headers ); + } + }, + + // Use it to add a set of methods to table.config which will be available for all tables. + // This should be done before table initialization + addInstanceMethods : function( methods ) { + $.extend( ts.instanceMethods, methods ); + }, + + /* + █████▄ ▄████▄ █████▄ ▄█████ ██████ █████▄ ▄█████ + ██▄▄██ ██▄▄██ ██▄▄██ ▀█▄ ██▄▄ ██▄▄██ ▀█▄ + ██▀▀▀ ██▀▀██ ██▀██ ▀█▄ ██▀▀ ██▀██ ▀█▄ + ██ ██ ██ ██ ██ █████▀ ██████ ██ ██ █████▀ + */ + setupParsers : function( c, $tbodies ) { + var rows, list, span, max, colIndex, indx, header, configHeaders, + noParser, parser, extractor, time, tbody, len, + table = c.table, + tbodyIndex = 0, + debug = ts.debug(c, 'core'), + debugOutput = {}; + // update table bodies in case we start with an empty table + c.$tbodies = c.$table.children( 'tbody:not(.' + c.cssInfoBlock + ')' ); + tbody = typeof $tbodies === 'undefined' ? c.$tbodies : $tbodies; + len = tbody.length; + if ( len === 0 ) { + return debug ? console.warn( 'Warning: *Empty table!* Not building a parser cache' ) : ''; + } else if ( debug ) { + time = new Date(); + console[ console.group ? 'group' : 'log' ]( 'Detecting parsers for each column' ); + } + list = { + extractors: [], + parsers: [] + }; + while ( tbodyIndex < len ) { + rows = tbody[ tbodyIndex ].rows; + if ( rows.length ) { + colIndex = 0; + max = c.columns; + for ( indx = 0; indx < max; indx++ ) { + header = c.$headerIndexed[ colIndex ]; + if ( header && header.length ) { + // get column indexed table cell; adding true parameter fixes #1362 but + // it would break backwards compatibility... + configHeaders = ts.getColumnData( table, c.headers, colIndex ); // , true ); + // get column parser/extractor + extractor = ts.getParserById( ts.getData( header, configHeaders, 'extractor' ) ); + parser = ts.getParserById( ts.getData( header, configHeaders, 'sorter' ) ); + noParser = ts.getData( header, configHeaders, 'parser' ) === 'false'; + // empty cells behaviour - keeping emptyToBottom for backwards compatibility + c.empties[colIndex] = ( + ts.getData( header, configHeaders, 'empty' ) || + c.emptyTo || ( c.emptyToBottom ? 'bottom' : 'top' ) ).toLowerCase(); + // text strings behaviour in numerical sorts + c.strings[colIndex] = ( + ts.getData( header, configHeaders, 'string' ) || + c.stringTo || + 'max' ).toLowerCase(); + if ( noParser ) { + parser = ts.getParserById( 'no-parser' ); + } + if ( !extractor ) { + // For now, maybe detect someday + extractor = false; + } + if ( !parser ) { + parser = ts.detectParserForColumn( c, rows, -1, colIndex ); + } + if ( debug ) { + debugOutput[ '(' + colIndex + ') ' + header.text() ] = { + parser : parser.id, + extractor : extractor ? extractor.id : 'none', + string : c.strings[ colIndex ], + empty : c.empties[ colIndex ] + }; + } + list.parsers[ colIndex ] = parser; + list.extractors[ colIndex ] = extractor; + span = header[ 0 ].colSpan - 1; + if ( span > 0 ) { + colIndex += span; + max += span; + while ( span + 1 > 0 ) { + // set colspan columns to use the same parsers & extractors + list.parsers[ colIndex - span ] = parser; + list.extractors[ colIndex - span ] = extractor; + span--; + } + } + } + colIndex++; + } + } + tbodyIndex += ( list.parsers.length ) ? len : 1; + } + if ( debug ) { + if ( !ts.isEmptyObject( debugOutput ) ) { + console[ console.table ? 'table' : 'log' ]( debugOutput ); + } else { + console.warn( ' No parsers detected!' ); + } + console.log( 'Completed detecting parsers' + ts.benchmark( time ) ); + if ( console.groupEnd ) { console.groupEnd(); } + } + c.parsers = list.parsers; + c.extractors = list.extractors; + }, + + addParser : function( parser ) { + var indx, + len = ts.parsers.length, + add = true; + for ( indx = 0; indx < len; indx++ ) { + if ( ts.parsers[ indx ].id.toLowerCase() === parser.id.toLowerCase() ) { + add = false; + } + } + if ( add ) { + ts.parsers[ ts.parsers.length ] = parser; + } + }, + + getParserById : function( name ) { + /*jshint eqeqeq:false */ // eslint-disable-next-line eqeqeq + if ( name == 'false' ) { return false; } + var indx, + len = ts.parsers.length; + for ( indx = 0; indx < len; indx++ ) { + if ( ts.parsers[ indx ].id.toLowerCase() === ( name.toString() ).toLowerCase() ) { + return ts.parsers[ indx ]; + } + } + return false; + }, + + detectParserForColumn : function( c, rows, rowIndex, cellIndex ) { + var cur, $node, row, + indx = ts.parsers.length, + node = false, + nodeValue = '', + debug = ts.debug(c, 'core'), + keepLooking = true; + while ( nodeValue === '' && keepLooking ) { + rowIndex++; + row = rows[ rowIndex ]; + // stop looking after 50 empty rows + if ( row && rowIndex < 50 ) { + if ( row.className.indexOf( ts.cssIgnoreRow ) < 0 ) { + node = rows[ rowIndex ].cells[ cellIndex ]; + nodeValue = ts.getElementText( c, node, cellIndex ); + $node = $( node ); + if ( debug ) { + console.log( 'Checking if value was empty on row ' + rowIndex + ', column: ' + + cellIndex + ': "' + nodeValue + '"' ); + } + } + } else { + keepLooking = false; + } + } + while ( --indx >= 0 ) { + cur = ts.parsers[ indx ]; + // ignore the default text parser because it will always be true + if ( cur && cur.id !== 'text' && cur.is && cur.is( nodeValue, c.table, node, $node ) ) { + return cur; + } + } + // nothing found, return the generic parser (text) + return ts.getParserById( 'text' ); + }, + + getElementText : function( c, node, cellIndex ) { + if ( !node ) { return ''; } + var tmp, + extract = c.textExtraction || '', + // node could be a jquery object + // http://jsperf.com/jquery-vs-instanceof-jquery/2 + $node = node.jquery ? node : $( node ); + if ( typeof extract === 'string' ) { + // check data-attribute first when set to 'basic'; don't use node.innerText - it's really slow! + // http://www.kellegous.com/j/2013/02/27/innertext-vs-textcontent/ + if ( extract === 'basic' && typeof ( tmp = $node.attr( c.textAttribute ) ) !== 'undefined' ) { + return $.trim( tmp ); + } + return $.trim( node.textContent || $node.text() ); + } else { + if ( typeof extract === 'function' ) { + return $.trim( extract( $node[ 0 ], c.table, cellIndex ) ); + } else if ( typeof ( tmp = ts.getColumnData( c.table, extract, cellIndex ) ) === 'function' ) { + return $.trim( tmp( $node[ 0 ], c.table, cellIndex ) ); + } + } + // fallback + return $.trim( $node[ 0 ].textContent || $node.text() ); + }, + + // centralized function to extract/parse cell contents + getParsedText : function( c, cell, colIndex, txt ) { + if ( typeof txt === 'undefined' ) { + txt = ts.getElementText( c, cell, colIndex ); + } + // if no parser, make sure to return the txt + var val = '' + txt, + parser = c.parsers[ colIndex ], + extractor = c.extractors[ colIndex ]; + if ( parser ) { + // do extract before parsing, if there is one + if ( extractor && typeof extractor.format === 'function' ) { + txt = extractor.format( txt, c.table, cell, colIndex ); + } + // allow parsing if the string is empty, previously parsing would change it to zero, + // in case the parser needs to extract data from the table cell attributes + val = parser.id === 'no-parser' ? '' : + // make sure txt is a string (extractor may have converted it) + parser.format( '' + txt, c.table, cell, colIndex ); + if ( c.ignoreCase && typeof val === 'string' ) { + val = val.toLowerCase(); + } + } + return val; + }, + + /* + ▄████▄ ▄████▄ ▄████▄ ██ ██ ██████ + ██ ▀▀ ██▄▄██ ██ ▀▀ ██▄▄██ ██▄▄ + ██ ▄▄ ██▀▀██ ██ ▄▄ ██▀▀██ ██▀▀ + ▀████▀ ██ ██ ▀████▀ ██ ██ ██████ + */ + buildCache : function( c, callback, $tbodies ) { + var cache, val, txt, rowIndex, colIndex, tbodyIndex, $tbody, $row, + cols, $cells, cell, cacheTime, totalRows, rowData, prevRowData, + colMax, span, cacheIndex, hasParser, max, len, index, + table = c.table, + parsers = c.parsers, + debug = ts.debug(c, 'core'); + // update tbody variable + c.$tbodies = c.$table.children( 'tbody:not(.' + c.cssInfoBlock + ')' ); + $tbody = typeof $tbodies === 'undefined' ? c.$tbodies : $tbodies, + c.cache = {}; + c.totalRows = 0; + // if no parsers found, return - it's an empty table. + if ( !parsers ) { + return debug ? console.warn( 'Warning: *Empty table!* Not building a cache' ) : ''; + } + if ( debug ) { + cacheTime = new Date(); + } + // processing icon + if ( c.showProcessing ) { + ts.isProcessing( table, true ); + } + for ( tbodyIndex = 0; tbodyIndex < $tbody.length; tbodyIndex++ ) { + colMax = []; // column max value per tbody + cache = c.cache[ tbodyIndex ] = { + normalized: [] // array of normalized row data; last entry contains 'rowData' above + // colMax: # // added at the end + }; + + totalRows = ( $tbody[ tbodyIndex ] && $tbody[ tbodyIndex ].rows.length ) || 0; + for ( rowIndex = 0; rowIndex < totalRows; ++rowIndex ) { + rowData = { + // order: original row order # + // $row : jQuery Object[] + child: [], // child row text (filter widget) + raw: [] // original row text + }; + /** Add the table data to main data array */ + $row = $( $tbody[ tbodyIndex ].rows[ rowIndex ] ); + cols = []; + // ignore "remove-me" rows + if ( $row.hasClass( c.selectorRemove.slice(1) ) ) { + continue; + } + // if this is a child row, add it to the last row's children and continue to the next row + // ignore child row class, if it is the first row + if ( $row.hasClass( c.cssChildRow ) && rowIndex !== 0 ) { + len = cache.normalized.length - 1; + prevRowData = cache.normalized[ len ][ c.columns ]; + prevRowData.$row = prevRowData.$row.add( $row ); + // add 'hasChild' class name to parent row + if ( !$row.prev().hasClass( c.cssChildRow ) ) { + $row.prev().addClass( ts.css.cssHasChild ); + } + // save child row content (un-parsed!) + $cells = $row.children( 'th, td' ); + len = prevRowData.child.length; + prevRowData.child[ len ] = []; + // child row content does not account for colspans/rowspans; so indexing may be off + cacheIndex = 0; + max = c.columns; + for ( colIndex = 0; colIndex < max; colIndex++ ) { + cell = $cells[ colIndex ]; + if ( cell ) { + prevRowData.child[ len ][ colIndex ] = ts.getParsedText( c, cell, colIndex ); + span = $cells[ colIndex ].colSpan - 1; + if ( span > 0 ) { + cacheIndex += span; + max += span; + } + } + cacheIndex++; + } + // go to the next for loop + continue; + } + rowData.$row = $row; + rowData.order = rowIndex; // add original row position to rowCache + cacheIndex = 0; + max = c.columns; + for ( colIndex = 0; colIndex < max; ++colIndex ) { + cell = $row[ 0 ].cells[ colIndex ]; + if ( cell && cacheIndex < c.columns ) { + hasParser = typeof parsers[ cacheIndex ] !== 'undefined'; + if ( !hasParser && debug ) { + console.warn( 'No parser found for row: ' + rowIndex + ', column: ' + colIndex + + '; cell containing: "' + $(cell).text() + '"; does it have a header?' ); + } + val = ts.getElementText( c, cell, cacheIndex ); + rowData.raw[ cacheIndex ] = val; // save original row text + // save raw column text even if there is no parser set + txt = ts.getParsedText( c, cell, cacheIndex, val ); + cols[ cacheIndex ] = txt; + if ( hasParser && ( parsers[ cacheIndex ].type || '' ).toLowerCase() === 'numeric' ) { + // determine column max value (ignore sign) + colMax[ cacheIndex ] = Math.max( Math.abs( txt ) || 0, colMax[ cacheIndex ] || 0 ); + } + // allow colSpan in tbody + span = cell.colSpan - 1; + if ( span > 0 ) { + index = 0; + while ( index <= span ) { + // duplicate text (or not) to spanned columns + // instead of setting duplicate span to empty string, use textExtraction to try to get a value + // see http://stackoverflow.com/q/36449711/145346 + txt = c.duplicateSpan || index === 0 ? + txt : + typeof c.textExtraction !== 'string' ? + ts.getElementText( c, cell, cacheIndex + index ) || '' : + ''; + rowData.raw[ cacheIndex + index ] = txt; + cols[ cacheIndex + index ] = txt; + index++; + } + cacheIndex += span; + max += span; + } + } + cacheIndex++; + } + // ensure rowData is always in the same location (after the last column) + cols[ c.columns ] = rowData; + cache.normalized[ cache.normalized.length ] = cols; + } + cache.colMax = colMax; + // total up rows, not including child rows + c.totalRows += cache.normalized.length; + + } + if ( c.showProcessing ) { + ts.isProcessing( table ); // remove processing icon + } + if ( debug ) { + len = Math.min( 5, c.cache[ 0 ].normalized.length ); + console[ console.group ? 'group' : 'log' ]( 'Building cache for ' + c.totalRows + + ' rows (showing ' + len + ' rows in log) and ' + c.columns + ' columns' + + ts.benchmark( cacheTime ) ); + val = {}; + for ( colIndex = 0; colIndex < c.columns; colIndex++ ) { + for ( cacheIndex = 0; cacheIndex < len; cacheIndex++ ) { + if ( !val[ 'row: ' + cacheIndex ] ) { + val[ 'row: ' + cacheIndex ] = {}; + } + val[ 'row: ' + cacheIndex ][ c.$headerIndexed[ colIndex ].text() ] = + c.cache[ 0 ].normalized[ cacheIndex ][ colIndex ]; + } + } + console[ console.table ? 'table' : 'log' ]( val ); + if ( console.groupEnd ) { console.groupEnd(); } + } + if ( $.isFunction( callback ) ) { + callback( table ); + } + }, + + getColumnText : function( table, column, callback, rowFilter ) { + table = $( table )[0]; + var tbodyIndex, rowIndex, cache, row, tbodyLen, rowLen, raw, parsed, $cell, result, + hasCallback = typeof callback === 'function', + allColumns = column === 'all', + data = { raw : [], parsed: [], $cell: [] }, + c = table.config; + if ( ts.isEmptyObject( c ) ) { + if ( ts.debug(c, 'core') ) { + console.warn( 'No cache found - aborting getColumnText function!' ); + } + } else { + tbodyLen = c.$tbodies.length; + for ( tbodyIndex = 0; tbodyIndex < tbodyLen; tbodyIndex++ ) { + cache = c.cache[ tbodyIndex ].normalized; + rowLen = cache.length; + for ( rowIndex = 0; rowIndex < rowLen; rowIndex++ ) { + row = cache[ rowIndex ]; + if ( rowFilter && !row[ c.columns ].$row.is( rowFilter ) ) { + continue; + } + result = true; + parsed = ( allColumns ) ? row.slice( 0, c.columns ) : row[ column ]; + row = row[ c.columns ]; + raw = ( allColumns ) ? row.raw : row.raw[ column ]; + $cell = ( allColumns ) ? row.$row.children() : row.$row.children().eq( column ); + if ( hasCallback ) { + result = callback({ + tbodyIndex : tbodyIndex, + rowIndex : rowIndex, + parsed : parsed, + raw : raw, + $row : row.$row, + $cell : $cell + }); + } + if ( result !== false ) { + data.parsed[ data.parsed.length ] = parsed; + data.raw[ data.raw.length ] = raw; + data.$cell[ data.$cell.length ] = $cell; + } + } + } + // return everything + return data; + } + }, + + /* + ██ ██ █████▄ █████▄ ▄████▄ ██████ ██████ + ██ ██ ██▄▄██ ██ ██ ██▄▄██ ██ ██▄▄ + ██ ██ ██▀▀▀ ██ ██ ██▀▀██ ██ ██▀▀ + ▀████▀ ██ █████▀ ██ ██ ██ ██████ + */ + setHeadersCss : function( c ) { + var indx, column, + list = c.sortList, + len = list.length, + none = ts.css.sortNone + ' ' + c.cssNone, + css = [ ts.css.sortAsc + ' ' + c.cssAsc, ts.css.sortDesc + ' ' + c.cssDesc ], + cssIcon = [ c.cssIconAsc, c.cssIconDesc, c.cssIconNone ], + aria = [ 'ascending', 'descending' ], + updateColumnSort = function($el, index) { + $el + .removeClass( none ) + .addClass( css[ index ] ) + .attr( 'aria-sort', aria[ index ] ) + .find( '.' + ts.css.icon ) + .removeClass( cssIcon[ 2 ] ) + .addClass( cssIcon[ index ] ); + }, + // find the footer + $extras = c.$table + .find( 'tfoot tr' ) + .children( 'td, th' ) + .add( $( c.namespace + '_extra_headers' ) ) + .removeClass( css.join( ' ' ) ), + // remove all header information + $sorted = c.$headers + .add( $( 'thead ' + c.namespace + '_extra_headers' ) ) + .removeClass( css.join( ' ' ) ) + .addClass( none ) + .attr( 'aria-sort', 'none' ) + .find( '.' + ts.css.icon ) + .removeClass( cssIcon.join( ' ' ) ) + .end(); + // add css none to all sortable headers + $sorted + .not( '.sorter-false' ) + .find( '.' + ts.css.icon ) + .addClass( cssIcon[ 2 ] ); + // add disabled css icon class + if ( c.cssIconDisabled ) { + $sorted + .filter( '.sorter-false' ) + .find( '.' + ts.css.icon ) + .addClass( c.cssIconDisabled ); + } + for ( indx = 0; indx < len; indx++ ) { + // direction = 2 means reset! + if ( list[ indx ][ 1 ] !== 2 ) { + // multicolumn sorting updating - see #1005 + // .not(function() {}) needs jQuery 1.4 + // filter(function(i, el) {}) <- el is undefined in jQuery v1.2.6 + $sorted = c.$headers.filter( function( i ) { + // only include headers that are in the sortList (this includes colspans) + var include = true, + $el = c.$headers.eq( i ), + col = parseInt( $el.attr( 'data-column' ), 10 ), + end = col + ts.getClosest( $el, 'th, td' )[0].colSpan; + for ( ; col < end; col++ ) { + include = include ? include || ts.isValueInArray( col, c.sortList ) > -1 : false; + } + return include; + }); + + // choose the :last in case there are nested columns + $sorted = $sorted + .not( '.sorter-false' ) + .filter( '[data-column="' + list[ indx ][ 0 ] + '"]' + ( len === 1 ? ':last' : '' ) ); + if ( $sorted.length ) { + for ( column = 0; column < $sorted.length; column++ ) { + if ( !$sorted[ column ].sortDisabled ) { + updateColumnSort( $sorted.eq( column ), list[ indx ][ 1 ] ); + } + } + } + // add sorted class to footer & extra headers, if they exist + if ( $extras.length ) { + updateColumnSort( $extras.filter( '[data-column="' + list[ indx ][ 0 ] + '"]' ), list[ indx ][ 1 ] ); + } + } + } + // add verbose aria labels + len = c.$headers.length; + for ( indx = 0; indx < len; indx++ ) { + ts.setColumnAriaLabel( c, c.$headers.eq( indx ) ); + } + }, + + getClosest : function( $el, selector ) { + // jQuery v1.2.6 doesn't have closest() + if ( $.fn.closest ) { + return $el.closest( selector ); + } + return $el.is( selector ) ? + $el : + $el.parents( selector ).filter( ':first' ); + }, + + // nextSort (optional), lets you disable next sort text + setColumnAriaLabel : function( c, $header, nextSort ) { + if ( $header.length ) { + var column = parseInt( $header.attr( 'data-column' ), 10 ), + vars = c.sortVars[ column ], + tmp = $header.hasClass( ts.css.sortAsc ) ? + 'sortAsc' : + $header.hasClass( ts.css.sortDesc ) ? 'sortDesc' : 'sortNone', + txt = $.trim( $header.text() ) + ': ' + ts.language[ tmp ]; + if ( $header.hasClass( 'sorter-false' ) || nextSort === false ) { + txt += ts.language.sortDisabled; + } else { + tmp = ( vars.count + 1 ) % vars.order.length; + nextSort = vars.order[ tmp ]; + // if nextSort + txt += ts.language[ nextSort === 0 ? 'nextAsc' : nextSort === 1 ? 'nextDesc' : 'nextNone' ]; + } + $header.attr( 'aria-label', txt ); + if (vars.sortedBy) { + $header.attr( 'data-sortedBy', vars.sortedBy ); + } else { + $header.removeAttr('data-sortedBy'); + } + } + }, + + updateHeader : function( c ) { + var index, isDisabled, $header, col, + table = c.table, + len = c.$headers.length; + for ( index = 0; index < len; index++ ) { + $header = c.$headers.eq( index ); + col = ts.getColumnData( table, c.headers, index, true ); + // add 'sorter-false' class if 'parser-false' is set + isDisabled = ts.getData( $header, col, 'sorter' ) === 'false' || ts.getData( $header, col, 'parser' ) === 'false'; + ts.setColumnSort( c, $header, isDisabled ); + } + }, + + setColumnSort : function( c, $header, isDisabled ) { + var id = c.table.id; + $header[ 0 ].sortDisabled = isDisabled; + $header[ isDisabled ? 'addClass' : 'removeClass' ]( 'sorter-false' ) + .attr( 'aria-disabled', '' + isDisabled ); + // disable tab index on disabled cells + if ( c.tabIndex ) { + if ( isDisabled ) { + $header.removeAttr( 'tabindex' ); + } else { + $header.attr( 'tabindex', '0' ); + } + } + // aria-controls - requires table ID + if ( id ) { + if ( isDisabled ) { + $header.removeAttr( 'aria-controls' ); + } else { + $header.attr( 'aria-controls', id ); + } + } + }, + + updateHeaderSortCount : function( c, list ) { + var col, dir, group, indx, primary, temp, val, order, + sortList = list || c.sortList, + len = sortList.length; + c.sortList = []; + for ( indx = 0; indx < len; indx++ ) { + val = sortList[ indx ]; + // ensure all sortList values are numeric - fixes #127 + col = parseInt( val[ 0 ], 10 ); + // prevents error if sorton array is wrong + if ( col < c.columns ) { + + // set order if not already defined - due to colspan header without associated header cell + // adding this check prevents a javascript error + if ( !c.sortVars[ col ].order ) { + if ( ts.getOrder( c.sortInitialOrder ) ) { + order = c.sortReset ? [ 1, 0, 2 ] : [ 1, 0 ]; + } else { + order = c.sortReset ? [ 0, 1, 2 ] : [ 0, 1 ]; + } + c.sortVars[ col ].order = order; + c.sortVars[ col ].count = 0; + } + + order = c.sortVars[ col ].order; + dir = ( '' + val[ 1 ] ).match( /^(1|d|s|o|n)/ ); + dir = dir ? dir[ 0 ] : ''; + // 0/(a)sc (default), 1/(d)esc, (s)ame, (o)pposite, (n)ext + switch ( dir ) { + case '1' : case 'd' : // descending + dir = 1; + break; + case 's' : // same direction (as primary column) + // if primary sort is set to 's', make it ascending + dir = primary || 0; + break; + case 'o' : + temp = order[ ( primary || 0 ) % order.length ]; + // opposite of primary column; but resets if primary resets + dir = temp === 0 ? 1 : temp === 1 ? 0 : 2; + break; + case 'n' : + dir = order[ ( ++c.sortVars[ col ].count ) % order.length ]; + break; + default : // ascending + dir = 0; + break; + } + primary = indx === 0 ? dir : primary; + group = [ col, parseInt( dir, 10 ) || 0 ]; + c.sortList[ c.sortList.length ] = group; + dir = $.inArray( group[ 1 ], order ); // fixes issue #167 + c.sortVars[ col ].count = dir >= 0 ? dir : group[ 1 ] % order.length; + } + } + }, + + updateAll : function( c, resort, callback ) { + var table = c.table; + table.isUpdating = true; + ts.refreshWidgets( table, true, true ); + ts.buildHeaders( c ); + ts.bindEvents( table, c.$headers, true ); + ts.bindMethods( c ); + ts.commonUpdate( c, resort, callback ); + }, + + update : function( c, resort, callback ) { + var table = c.table; + table.isUpdating = true; + // update sorting (if enabled/disabled) + ts.updateHeader( c ); + ts.commonUpdate( c, resort, callback ); + }, + + // simple header update - see #989 + updateHeaders : function( c, callback ) { + c.table.isUpdating = true; + ts.buildHeaders( c ); + ts.bindEvents( c.table, c.$headers, true ); + ts.resortComplete( c, callback ); + }, + + updateCell : function( c, cell, resort, callback ) { + // updateCell for child rows is a mess - we'll ignore them for now + // eventually I'll break out the "update" row cache code to make everything consistent + if ( $( cell ).closest( 'tr' ).hasClass( c.cssChildRow ) ) { + console.warn('Tablesorter Warning! "updateCell" for child row content has been disabled, use "update" instead'); + return; + } + if ( ts.isEmptyObject( c.cache ) ) { + // empty table, do an update instead - fixes #1099 + ts.updateHeader( c ); + ts.commonUpdate( c, resort, callback ); + return; + } + c.table.isUpdating = true; + c.$table.find( c.selectorRemove ).remove(); + // get position from the dom + var tmp, indx, row, icell, cache, len, + $tbodies = c.$tbodies, + $cell = $( cell ), + // update cache - format: function( s, table, cell, cellIndex ) + // no closest in jQuery v1.2.6 + tbodyIndex = $tbodies.index( ts.getClosest( $cell, 'tbody' ) ), + tbcache = c.cache[ tbodyIndex ], + $row = ts.getClosest( $cell, 'tr' ); + cell = $cell[ 0 ]; // in case cell is a jQuery object + // tbody may not exist if update is initialized while tbody is removed for processing + if ( $tbodies.length && tbodyIndex >= 0 ) { + row = $tbodies.eq( tbodyIndex ).find( 'tr' ).not( '.' + c.cssChildRow ).index( $row ); + cache = tbcache.normalized[ row ]; + len = $row[ 0 ].cells.length; + if ( len !== c.columns ) { + // colspan in here somewhere! + icell = 0; + tmp = false; + for ( indx = 0; indx < len; indx++ ) { + if ( !tmp && $row[ 0 ].cells[ indx ] !== cell ) { + icell += $row[ 0 ].cells[ indx ].colSpan; + } else { + tmp = true; + } + } + } else { + icell = $cell.index(); + } + tmp = ts.getElementText( c, cell, icell ); // raw + cache[ c.columns ].raw[ icell ] = tmp; + tmp = ts.getParsedText( c, cell, icell, tmp ); + cache[ icell ] = tmp; // parsed + if ( ( c.parsers[ icell ].type || '' ).toLowerCase() === 'numeric' ) { + // update column max value (ignore sign) + tbcache.colMax[ icell ] = Math.max( Math.abs( tmp ) || 0, tbcache.colMax[ icell ] || 0 ); + } + tmp = resort !== 'undefined' ? resort : c.resort; + if ( tmp !== false ) { + // widgets will be reapplied + ts.checkResort( c, tmp, callback ); + } else { + // don't reapply widgets is resort is false, just in case it causes + // problems with element focus + ts.resortComplete( c, callback ); + } + } else { + if ( ts.debug(c, 'core') ) { + console.error( 'updateCell aborted, tbody missing or not within the indicated table' ); + } + c.table.isUpdating = false; + } + }, + + addRows : function( c, $row, resort, callback ) { + var txt, val, tbodyIndex, rowIndex, rows, cellIndex, len, order, + cacheIndex, rowData, cells, cell, span, + // allow passing a row string if only one non-info tbody exists in the table + valid = typeof $row === 'string' && c.$tbodies.length === 1 && / 0 ) { + cacheIndex += span; + } + cacheIndex++; + } + // add the row data to the end + cells[ c.columns ] = rowData; + // update cache + c.cache[ tbodyIndex ].normalized[ order ] = cells; + } + // resort using current settings + ts.checkResort( c, resort, callback ); + } + }, + + updateCache : function( c, callback, $tbodies ) { + // rebuild parsers + if ( !( c.parsers && c.parsers.length ) ) { + ts.setupParsers( c, $tbodies ); + } + // rebuild the cache map + ts.buildCache( c, callback, $tbodies ); + }, + + // init flag (true) used by pager plugin to prevent widget application + // renamed from appendToTable + appendCache : function( c, init ) { + var parsed, totalRows, $tbody, $curTbody, rowIndex, tbodyIndex, appendTime, + table = c.table, + $tbodies = c.$tbodies, + rows = [], + cache = c.cache; + // empty table - fixes #206/#346 + if ( ts.isEmptyObject( cache ) ) { + // run pager appender in case the table was just emptied + return c.appender ? c.appender( table, rows ) : + table.isUpdating ? c.$table.triggerHandler( 'updateComplete', table ) : ''; // Fixes #532 + } + if ( ts.debug(c, 'core') ) { + appendTime = new Date(); + } + for ( tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { + $tbody = $tbodies.eq( tbodyIndex ); + if ( $tbody.length ) { + // detach tbody for manipulation + $curTbody = ts.processTbody( table, $tbody, true ); + parsed = cache[ tbodyIndex ].normalized; + totalRows = parsed.length; + for ( rowIndex = 0; rowIndex < totalRows; rowIndex++ ) { + rows[rows.length] = parsed[ rowIndex ][ c.columns ].$row; + // removeRows used by the pager plugin; don't render if using ajax - fixes #411 + if ( !c.appender || ( c.pager && !c.pager.removeRows && !c.pager.ajax ) ) { + $curTbody.append( parsed[ rowIndex ][ c.columns ].$row ); + } + } + // restore tbody + ts.processTbody( table, $curTbody, false ); + } + } + if ( c.appender ) { + c.appender( table, rows ); + } + if ( ts.debug(c, 'core') ) { + console.log( 'Rebuilt table' + ts.benchmark( appendTime ) ); + } + // apply table widgets; but not before ajax completes + if ( !init && !c.appender ) { + ts.applyWidget( table ); + } + if ( table.isUpdating ) { + c.$table.triggerHandler( 'updateComplete', table ); + } + }, + + commonUpdate : function( c, resort, callback ) { + // remove rows/elements before update + c.$table.find( c.selectorRemove ).remove(); + // rebuild parsers + ts.setupParsers( c ); + // rebuild the cache map + ts.buildCache( c ); + ts.checkResort( c, resort, callback ); + }, + + /* + ▄█████ ▄████▄ █████▄ ██████ ██ █████▄ ▄████▄ + ▀█▄ ██ ██ ██▄▄██ ██ ██ ██ ██ ██ ▄▄▄ + ▀█▄ ██ ██ ██▀██ ██ ██ ██ ██ ██ ▀██ + █████▀ ▀████▀ ██ ██ ██ ██ ██ ██ ▀████▀ + */ + initSort : function( c, cell, event ) { + if ( c.table.isUpdating ) { + // let any updates complete before initializing a sort + return setTimeout( function() { + ts.initSort( c, cell, event ); + }, 50 ); + } + + var arry, indx, headerIndx, dir, temp, tmp, $header, + notMultiSort = !event[ c.sortMultiSortKey ], + table = c.table, + len = c.$headers.length, + th = ts.getClosest( $( cell ), 'th, td' ), + col = parseInt( th.attr( 'data-column' ), 10 ), + sortedBy = event.type === 'mouseup' ? 'user' : event.type, + order = c.sortVars[ col ].order; + th = th[0]; + // Only call sortStart if sorting is enabled + c.$table.triggerHandler( 'sortStart', table ); + // get current column sort order + tmp = ( c.sortVars[ col ].count + 1 ) % order.length; + c.sortVars[ col ].count = event[ c.sortResetKey ] ? 2 : tmp; + // reset all sorts on non-current column - issue #30 + if ( c.sortRestart ) { + for ( headerIndx = 0; headerIndx < len; headerIndx++ ) { + $header = c.$headers.eq( headerIndx ); + tmp = parseInt( $header.attr( 'data-column' ), 10 ); + // only reset counts on columns that weren't just clicked on and if not included in a multisort + if ( col !== tmp && ( notMultiSort || $header.hasClass( ts.css.sortNone ) ) ) { + c.sortVars[ tmp ].count = -1; + } + } + } + // user only wants to sort on one column + if ( notMultiSort ) { + $.each( c.sortVars, function( i ) { + c.sortVars[ i ].sortedBy = ''; + }); + // flush the sort list + c.sortList = []; + c.last.sortList = []; + if ( c.sortForce !== null ) { + arry = c.sortForce; + for ( indx = 0; indx < arry.length; indx++ ) { + if ( arry[ indx ][ 0 ] !== col ) { + c.sortList[ c.sortList.length ] = arry[ indx ]; + c.sortVars[ arry[ indx ][ 0 ] ].sortedBy = 'sortForce'; + } + } + } + // add column to sort list + dir = order[ c.sortVars[ col ].count ]; + if ( dir < 2 ) { + c.sortList[ c.sortList.length ] = [ col, dir ]; + c.sortVars[ col ].sortedBy = sortedBy; + // add other columns if header spans across multiple + if ( th.colSpan > 1 ) { + for ( indx = 1; indx < th.colSpan; indx++ ) { + c.sortList[ c.sortList.length ] = [ col + indx, dir ]; + // update count on columns in colSpan + c.sortVars[ col + indx ].count = $.inArray( dir, order ); + c.sortVars[ col + indx ].sortedBy = sortedBy; + } + } + } + // multi column sorting + } else { + // get rid of the sortAppend before adding more - fixes issue #115 & #523 + c.sortList = $.extend( [], c.last.sortList ); + + // the user has clicked on an already sorted column + if ( ts.isValueInArray( col, c.sortList ) >= 0 ) { + // reverse the sorting direction + c.sortVars[ col ].sortedBy = sortedBy; + for ( indx = 0; indx < c.sortList.length; indx++ ) { + tmp = c.sortList[ indx ]; + if ( tmp[ 0 ] === col ) { + // order.count seems to be incorrect when compared to cell.count + tmp[ 1 ] = order[ c.sortVars[ col ].count ]; + if ( tmp[1] === 2 ) { + c.sortList.splice( indx, 1 ); + c.sortVars[ col ].count = -1; + } + } + } + } else { + // add column to sort list array + dir = order[ c.sortVars[ col ].count ]; + c.sortVars[ col ].sortedBy = sortedBy; + if ( dir < 2 ) { + c.sortList[ c.sortList.length ] = [ col, dir ]; + // add other columns if header spans across multiple + if ( th.colSpan > 1 ) { + for ( indx = 1; indx < th.colSpan; indx++ ) { + c.sortList[ c.sortList.length ] = [ col + indx, dir ]; + // update count on columns in colSpan + c.sortVars[ col + indx ].count = $.inArray( dir, order ); + c.sortVars[ col + indx ].sortedBy = sortedBy; + } + } + } + } + } + // save sort before applying sortAppend + c.last.sortList = $.extend( [], c.sortList ); + if ( c.sortList.length && c.sortAppend ) { + arry = $.isArray( c.sortAppend ) ? c.sortAppend : c.sortAppend[ c.sortList[ 0 ][ 0 ] ]; + if ( !ts.isEmptyObject( arry ) ) { + for ( indx = 0; indx < arry.length; indx++ ) { + if ( arry[ indx ][ 0 ] !== col && ts.isValueInArray( arry[ indx ][ 0 ], c.sortList ) < 0 ) { + dir = arry[ indx ][ 1 ]; + temp = ( '' + dir ).match( /^(a|d|s|o|n)/ ); + if ( temp ) { + tmp = c.sortList[ 0 ][ 1 ]; + switch ( temp[ 0 ] ) { + case 'd' : + dir = 1; + break; + case 's' : + dir = tmp; + break; + case 'o' : + dir = tmp === 0 ? 1 : 0; + break; + case 'n' : + dir = ( tmp + 1 ) % order.length; + break; + default: + dir = 0; + break; + } + } + c.sortList[ c.sortList.length ] = [ arry[ indx ][ 0 ], dir ]; + c.sortVars[ arry[ indx ][ 0 ] ].sortedBy = 'sortAppend'; + } + } + } + } + // sortBegin event triggered immediately before the sort + c.$table.triggerHandler( 'sortBegin', table ); + // setTimeout needed so the processing icon shows up + setTimeout( function() { + // set css for headers + ts.setHeadersCss( c ); + ts.multisort( c ); + ts.appendCache( c ); + c.$table.triggerHandler( 'sortBeforeEnd', table ); + c.$table.triggerHandler( 'sortEnd', table ); + }, 1 ); + }, + + // sort multiple columns + multisort : function( c ) { /*jshint loopfunc:true */ + var tbodyIndex, sortTime, colMax, rows, tmp, + table = c.table, + sorter = [], + dir = 0, + textSorter = c.textSorter || '', + sortList = c.sortList, + sortLen = sortList.length, + len = c.$tbodies.length; + if ( c.serverSideSorting || ts.isEmptyObject( c.cache ) ) { + // empty table - fixes #206/#346 + return; + } + if ( ts.debug(c, 'core') ) { sortTime = new Date(); } + // cache textSorter to optimize speed + if ( typeof textSorter === 'object' ) { + colMax = c.columns; + while ( colMax-- ) { + tmp = ts.getColumnData( table, textSorter, colMax ); + if ( typeof tmp === 'function' ) { + sorter[ colMax ] = tmp; + } + } + } + for ( tbodyIndex = 0; tbodyIndex < len; tbodyIndex++ ) { + colMax = c.cache[ tbodyIndex ].colMax; + rows = c.cache[ tbodyIndex ].normalized; + + rows.sort( function( a, b ) { + var sortIndex, num, col, order, sort, x, y; + // rows is undefined here in IE, so don't use it! + for ( sortIndex = 0; sortIndex < sortLen; sortIndex++ ) { + col = sortList[ sortIndex ][ 0 ]; + order = sortList[ sortIndex ][ 1 ]; + // sort direction, true = asc, false = desc + dir = order === 0; + + if ( c.sortStable && a[ col ] === b[ col ] && sortLen === 1 ) { + return a[ c.columns ].order - b[ c.columns ].order; + } + + // fallback to natural sort since it is more robust + num = /n/i.test( ts.getSortType( c.parsers, col ) ); + if ( num && c.strings[ col ] ) { + // sort strings in numerical columns + if ( typeof ( ts.string[ c.strings[ col ] ] ) === 'boolean' ) { + num = ( dir ? 1 : -1 ) * ( ts.string[ c.strings[ col ] ] ? -1 : 1 ); + } else { + num = ( c.strings[ col ] ) ? ts.string[ c.strings[ col ] ] || 0 : 0; + } + // fall back to built-in numeric sort + // var sort = $.tablesorter['sort' + s]( a[col], b[col], dir, colMax[col], table ); + sort = c.numberSorter ? c.numberSorter( a[ col ], b[ col ], dir, colMax[ col ], table ) : + ts[ 'sortNumeric' + ( dir ? 'Asc' : 'Desc' ) ]( a[ col ], b[ col ], num, colMax[ col ], col, c ); + } else { + // set a & b depending on sort direction + x = dir ? a : b; + y = dir ? b : a; + // text sort function + if ( typeof textSorter === 'function' ) { + // custom OVERALL text sorter + sort = textSorter( x[ col ], y[ col ], dir, col, table ); + } else if ( typeof sorter[ col ] === 'function' ) { + // custom text sorter for a SPECIFIC COLUMN + sort = sorter[ col ]( x[ col ], y[ col ], dir, col, table ); + } else { + // fall back to natural sort + sort = ts[ 'sortNatural' + ( dir ? 'Asc' : 'Desc' ) ]( a[ col ] || '', b[ col ] || '', col, c ); + } + } + if ( sort ) { return sort; } + } + return a[ c.columns ].order - b[ c.columns ].order; + }); + } + if ( ts.debug(c, 'core') ) { + console.log( 'Applying sort ' + sortList.toString() + ts.benchmark( sortTime ) ); + } + }, + + resortComplete : function( c, callback ) { + if ( c.table.isUpdating ) { + c.$table.triggerHandler( 'updateComplete', c.table ); + } + if ( $.isFunction( callback ) ) { + callback( c.table ); + } + }, + + checkResort : function( c, resort, callback ) { + var sortList = $.isArray( resort ) ? resort : c.sortList, + // if no resort parameter is passed, fallback to config.resort (true by default) + resrt = typeof resort === 'undefined' ? c.resort : resort; + // don't try to resort if the table is still processing + // this will catch spamming of the updateCell method + if ( resrt !== false && !c.serverSideSorting && !c.table.isProcessing ) { + if ( sortList.length ) { + ts.sortOn( c, sortList, function() { + ts.resortComplete( c, callback ); + }, true ); + } else { + ts.sortReset( c, function() { + ts.resortComplete( c, callback ); + ts.applyWidget( c.table, false ); + } ); + } + } else { + ts.resortComplete( c, callback ); + ts.applyWidget( c.table, false ); + } + }, + + sortOn : function( c, list, callback, init ) { + var indx, + table = c.table; + c.$table.triggerHandler( 'sortStart', table ); + for (indx = 0; indx < c.columns; indx++) { + c.sortVars[ indx ].sortedBy = ts.isValueInArray( indx, list ) > -1 ? 'sorton' : ''; + } + // update header count index + ts.updateHeaderSortCount( c, list ); + // set css for headers + ts.setHeadersCss( c ); + // fixes #346 + if ( c.delayInit && ts.isEmptyObject( c.cache ) ) { + ts.buildCache( c ); + } + c.$table.triggerHandler( 'sortBegin', table ); + // sort the table and append it to the dom + ts.multisort( c ); + ts.appendCache( c, init ); + c.$table.triggerHandler( 'sortBeforeEnd', table ); + c.$table.triggerHandler( 'sortEnd', table ); + ts.applyWidget( table ); + if ( $.isFunction( callback ) ) { + callback( table ); + } + }, + + sortReset : function( c, callback ) { + c.sortList = []; + var indx; + for (indx = 0; indx < c.columns; indx++) { + c.sortVars[ indx ].count = -1; + c.sortVars[ indx ].sortedBy = ''; + } + ts.setHeadersCss( c ); + ts.multisort( c ); + ts.appendCache( c ); + if ( $.isFunction( callback ) ) { + callback( c.table ); + } + }, + + getSortType : function( parsers, column ) { + return ( parsers && parsers[ column ] ) ? parsers[ column ].type || '' : ''; + }, + + getOrder : function( val ) { + // look for 'd' in 'desc' order; return true + return ( /^d/i.test( val ) || val === 1 ); + }, + + // Natural sort - https://github.com/overset/javascript-natural-sort (date sorting removed) + sortNatural : function( a, b ) { + if ( a === b ) { return 0; } + a = ( a || '' ).toString(); + b = ( b || '' ).toString(); + var aNum, bNum, aFloat, bFloat, indx, max, + regex = ts.regex; + // first try and sort Hex codes + if ( regex.hex.test( b ) ) { + aNum = parseInt( a.match( regex.hex ), 16 ); + bNum = parseInt( b.match( regex.hex ), 16 ); + if ( aNum < bNum ) { return -1; } + if ( aNum > bNum ) { return 1; } + } + // chunk/tokenize + aNum = a.replace( regex.chunk, '\\0$1\\0' ).replace( regex.chunks, '' ).split( '\\0' ); + bNum = b.replace( regex.chunk, '\\0$1\\0' ).replace( regex.chunks, '' ).split( '\\0' ); + max = Math.max( aNum.length, bNum.length ); + // natural sorting through split numeric strings and default strings + for ( indx = 0; indx < max; indx++ ) { + // find floats not starting with '0', string or 0 if not defined + aFloat = isNaN( aNum[ indx ] ) ? aNum[ indx ] || 0 : parseFloat( aNum[ indx ] ) || 0; + bFloat = isNaN( bNum[ indx ] ) ? bNum[ indx ] || 0 : parseFloat( bNum[ indx ] ) || 0; + // handle numeric vs string comparison - number < string - (Kyle Adams) + if ( isNaN( aFloat ) !== isNaN( bFloat ) ) { return isNaN( aFloat ) ? 1 : -1; } + // rely on string comparison if different types - i.e. '02' < 2 != '02' < '2' + if ( typeof aFloat !== typeof bFloat ) { + aFloat += ''; + bFloat += ''; + } + if ( aFloat < bFloat ) { return -1; } + if ( aFloat > bFloat ) { return 1; } + } + return 0; + }, + + sortNaturalAsc : function( a, b, col, c ) { + if ( a === b ) { return 0; } + var empty = ts.string[ ( c.empties[ col ] || c.emptyTo ) ]; + if ( a === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? -1 : 1 ) : -empty || -1; } + if ( b === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? 1 : -1 ) : empty || 1; } + return ts.sortNatural( a, b ); + }, + + sortNaturalDesc : function( a, b, col, c ) { + if ( a === b ) { return 0; } + var empty = ts.string[ ( c.empties[ col ] || c.emptyTo ) ]; + if ( a === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? -1 : 1 ) : empty || 1; } + if ( b === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? 1 : -1 ) : -empty || -1; } + return ts.sortNatural( b, a ); + }, + + // basic alphabetical sort + sortText : function( a, b ) { + return a > b ? 1 : ( a < b ? -1 : 0 ); + }, + + // return text string value by adding up ascii value + // so the text is somewhat sorted when using a digital sort + // this is NOT an alphanumeric sort + getTextValue : function( val, num, max ) { + if ( max ) { + // make sure the text value is greater than the max numerical value (max) + var indx, + len = val ? val.length : 0, + n = max + num; + for ( indx = 0; indx < len; indx++ ) { + n += val.charCodeAt( indx ); + } + return num * n; + } + return 0; + }, + + sortNumericAsc : function( a, b, num, max, col, c ) { + if ( a === b ) { return 0; } + var empty = ts.string[ ( c.empties[ col ] || c.emptyTo ) ]; + if ( a === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? -1 : 1 ) : -empty || -1; } + if ( b === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? 1 : -1 ) : empty || 1; } + if ( isNaN( a ) ) { a = ts.getTextValue( a, num, max ); } + if ( isNaN( b ) ) { b = ts.getTextValue( b, num, max ); } + return a - b; + }, + + sortNumericDesc : function( a, b, num, max, col, c ) { + if ( a === b ) { return 0; } + var empty = ts.string[ ( c.empties[ col ] || c.emptyTo ) ]; + if ( a === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? -1 : 1 ) : empty || 1; } + if ( b === '' && empty !== 0 ) { return typeof empty === 'boolean' ? ( empty ? 1 : -1 ) : -empty || -1; } + if ( isNaN( a ) ) { a = ts.getTextValue( a, num, max ); } + if ( isNaN( b ) ) { b = ts.getTextValue( b, num, max ); } + return b - a; + }, + + sortNumeric : function( a, b ) { + return a - b; + }, + + /* + ██ ██ ██ ██ █████▄ ▄████▄ ██████ ██████ ▄█████ + ██ ██ ██ ██ ██ ██ ██ ▄▄▄ ██▄▄ ██ ▀█▄ + ██ ██ ██ ██ ██ ██ ██ ▀██ ██▀▀ ██ ▀█▄ + ███████▀ ██ █████▀ ▀████▀ ██████ ██ █████▀ + */ + addWidget : function( widget ) { + if ( widget.id && !ts.isEmptyObject( ts.getWidgetById( widget.id ) ) ) { + console.warn( '"' + widget.id + '" widget was loaded more than once!' ); + } + ts.widgets[ ts.widgets.length ] = widget; + }, + + hasWidget : function( $table, name ) { + $table = $( $table ); + return $table.length && $table[ 0 ].config && $table[ 0 ].config.widgetInit[ name ] || false; + }, + + getWidgetById : function( name ) { + var indx, widget, + len = ts.widgets.length; + for ( indx = 0; indx < len; indx++ ) { + widget = ts.widgets[ indx ]; + if ( widget && widget.id && widget.id.toLowerCase() === name.toLowerCase() ) { + return widget; + } + } + }, + + applyWidgetOptions : function( table ) { + var indx, widget, wo, + c = table.config, + len = c.widgets.length; + if ( len ) { + for ( indx = 0; indx < len; indx++ ) { + widget = ts.getWidgetById( c.widgets[ indx ] ); + if ( widget && widget.options ) { + wo = $.extend( true, {}, widget.options ); + c.widgetOptions = $.extend( true, wo, c.widgetOptions ); + // add widgetOptions to defaults for option validator + $.extend( true, ts.defaults.widgetOptions, widget.options ); + } + } + } + }, + + addWidgetFromClass : function( table ) { + var len, indx, + c = table.config, + // look for widgets to apply from table class + // don't match from 'ui-widget-content'; use \S instead of \w to include widgets + // with dashes in the name, e.g. "widget-test-2" extracts out "test-2" + regex = '^' + c.widgetClass.replace( ts.regex.templateName, '(\\S+)+' ) + '$', + widgetClass = new RegExp( regex, 'g' ), + // split up table class (widget id's can include dashes) - stop using match + // otherwise only one widget gets extracted, see #1109 + widgets = ( table.className || '' ).split( ts.regex.spaces ); + if ( widgets.length ) { + len = widgets.length; + for ( indx = 0; indx < len; indx++ ) { + if ( widgets[ indx ].match( widgetClass ) ) { + c.widgets[ c.widgets.length ] = widgets[ indx ].replace( widgetClass, '$1' ); + } + } + } + }, + + applyWidgetId : function( table, id, init ) { + table = $(table)[0]; + var applied, time, name, + c = table.config, + wo = c.widgetOptions, + debug = ts.debug(c, 'core'), + widget = ts.getWidgetById( id ); + if ( widget ) { + name = widget.id; + applied = false; + // add widget name to option list so it gets reapplied after sorting, filtering, etc + if ( $.inArray( name, c.widgets ) < 0 ) { + c.widgets[ c.widgets.length ] = name; + } + if ( debug ) { time = new Date(); } + + if ( init || !( c.widgetInit[ name ] ) ) { + // set init flag first to prevent calling init more than once (e.g. pager) + c.widgetInit[ name ] = true; + if ( table.hasInitialized ) { + // don't reapply widget options on tablesorter init + ts.applyWidgetOptions( table ); + } + if ( typeof widget.init === 'function' ) { + applied = true; + if ( debug ) { + console[ console.group ? 'group' : 'log' ]( 'Initializing ' + name + ' widget' ); + } + widget.init( table, widget, c, wo ); + } + } + if ( !init && typeof widget.format === 'function' ) { + applied = true; + if ( debug ) { + console[ console.group ? 'group' : 'log' ]( 'Updating ' + name + ' widget' ); + } + widget.format( table, c, wo, false ); + } + if ( debug ) { + if ( applied ) { + console.log( 'Completed ' + ( init ? 'initializing ' : 'applying ' ) + name + ' widget' + ts.benchmark( time ) ); + if ( console.groupEnd ) { console.groupEnd(); } + } + } + } + }, + + applyWidget : function( table, init, callback ) { + table = $( table )[ 0 ]; // in case this is called externally + var indx, len, names, widget, time, + c = table.config, + debug = ts.debug(c, 'core'), + widgets = []; + // prevent numerous consecutive widget applications + if ( init !== false && table.hasInitialized && ( table.isApplyingWidgets || table.isUpdating ) ) { + return; + } + if ( debug ) { time = new Date(); } + ts.addWidgetFromClass( table ); + // prevent "tablesorter-ready" from firing multiple times in a row + clearTimeout( c.timerReady ); + if ( c.widgets.length ) { + table.isApplyingWidgets = true; + // ensure unique widget ids + c.widgets = $.grep( c.widgets, function( val, index ) { + return $.inArray( val, c.widgets ) === index; + }); + names = c.widgets || []; + len = names.length; + // build widget array & add priority as needed + for ( indx = 0; indx < len; indx++ ) { + widget = ts.getWidgetById( names[ indx ] ); + if ( widget && widget.id ) { + // set priority to 10 if not defined + if ( !widget.priority ) { widget.priority = 10; } + widgets[ indx ] = widget; + } else if ( debug ) { + console.warn( '"' + names[ indx ] + '" was enabled, but the widget code has not been loaded!' ); + } + } + // sort widgets by priority + widgets.sort( function( a, b ) { + return a.priority < b.priority ? -1 : a.priority === b.priority ? 0 : 1; + }); + // add/update selected widgets + len = widgets.length; + if ( debug ) { + console[ console.group ? 'group' : 'log' ]( 'Start ' + ( init ? 'initializing' : 'applying' ) + ' widgets' ); + } + for ( indx = 0; indx < len; indx++ ) { + widget = widgets[ indx ]; + if ( widget && widget.id ) { + ts.applyWidgetId( table, widget.id, init ); + } + } + if ( debug && console.groupEnd ) { console.groupEnd(); } + } + c.timerReady = setTimeout( function() { + table.isApplyingWidgets = false; + $.data( table, 'lastWidgetApplication', new Date() ); + c.$table.triggerHandler( 'tablesorter-ready' ); + // callback executed on init only + if ( !init && typeof callback === 'function' ) { + callback( table ); + } + if ( debug ) { + widget = c.widgets.length; + console.log( 'Completed ' + + ( init === true ? 'initializing ' : 'applying ' ) + widget + + ' widget' + ( widget !== 1 ? 's' : '' ) + ts.benchmark( time ) ); + } + }, 10 ); + }, + + removeWidget : function( table, name, refreshing ) { + table = $( table )[ 0 ]; + var index, widget, indx, len, + c = table.config; + // if name === true, add all widgets from $.tablesorter.widgets + if ( name === true ) { + name = []; + len = ts.widgets.length; + for ( indx = 0; indx < len; indx++ ) { + widget = ts.widgets[ indx ]; + if ( widget && widget.id ) { + name[ name.length ] = widget.id; + } + } + } else { + // name can be either an array of widgets names, + // or a space/comma separated list of widget names + name = ( $.isArray( name ) ? name.join( ',' ) : name || '' ).toLowerCase().split( /[\s,]+/ ); + } + len = name.length; + for ( index = 0; index < len; index++ ) { + widget = ts.getWidgetById( name[ index ] ); + indx = $.inArray( name[ index ], c.widgets ); + // don't remove the widget from config.widget if refreshing + if ( indx >= 0 && refreshing !== true ) { + c.widgets.splice( indx, 1 ); + } + if ( widget && widget.remove ) { + if ( ts.debug(c, 'core') ) { + console.log( ( refreshing ? 'Refreshing' : 'Removing' ) + ' "' + name[ index ] + '" widget' ); + } + widget.remove( table, c, c.widgetOptions, refreshing ); + c.widgetInit[ name[ index ] ] = false; + } + } + c.$table.triggerHandler( 'widgetRemoveEnd', table ); + }, + + refreshWidgets : function( table, doAll, dontapply ) { + table = $( table )[ 0 ]; // see issue #243 + var indx, widget, + c = table.config, + curWidgets = c.widgets, + widgets = ts.widgets, + len = widgets.length, + list = [], + callback = function( table ) { + $( table ).triggerHandler( 'refreshComplete' ); + }; + // remove widgets not defined in config.widgets, unless doAll is true + for ( indx = 0; indx < len; indx++ ) { + widget = widgets[ indx ]; + if ( widget && widget.id && ( doAll || $.inArray( widget.id, curWidgets ) < 0 ) ) { + list[ list.length ] = widget.id; + } + } + ts.removeWidget( table, list.join( ',' ), true ); + if ( dontapply !== true ) { + // call widget init if + ts.applyWidget( table, doAll || false, callback ); + if ( doAll ) { + // apply widget format + ts.applyWidget( table, false, callback ); + } + } else { + callback( table ); + } + }, + + /* + ██ ██ ██████ ██ ██ ██ ██████ ██ ██████ ▄█████ + ██ ██ ██ ██ ██ ██ ██ ██ ██▄▄ ▀█▄ + ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀█▄ + ▀████▀ ██ ██ ██████ ██ ██ ██ ██████ █████▀ + */ + benchmark : function( diff ) { + return ( ' (' + ( new Date().getTime() - diff.getTime() ) + ' ms)' ); + }, + // deprecated ts.log + log : function() { + console.log( arguments ); + }, + debug : function(c, name) { + return c && ( + c.debug === true || + typeof c.debug === 'string' && c.debug.indexOf(name) > -1 + ); + }, + + // $.isEmptyObject from jQuery v1.4 + isEmptyObject : function( obj ) { + /*jshint forin: false */ + for ( var name in obj ) { + return false; + } + return true; + }, + + isValueInArray : function( column, arry ) { + var indx, + len = arry && arry.length || 0; + for ( indx = 0; indx < len; indx++ ) { + if ( arry[ indx ][ 0 ] === column ) { + return indx; + } + } + return -1; + }, + + formatFloat : function( str, table ) { + if ( typeof str !== 'string' || str === '' ) { return str; } + // allow using formatFloat without a table; defaults to US number format + var num, + usFormat = table && table.config ? table.config.usNumberFormat !== false : + typeof table !== 'undefined' ? table : true; + if ( usFormat ) { + // US Format - 1,234,567.89 -> 1234567.89 + str = str.replace( ts.regex.comma, '' ); + } else { + // German Format = 1.234.567,89 -> 1234567.89 + // French Format = 1 234 567,89 -> 1234567.89 + str = str.replace( ts.regex.digitNonUS, '' ).replace( ts.regex.comma, '.' ); + } + if ( ts.regex.digitNegativeTest.test( str ) ) { + // make (#) into a negative number -> (10) = -10 + str = str.replace( ts.regex.digitNegativeReplace, '-$1' ); + } + num = parseFloat( str ); + // return the text instead of zero + return isNaN( num ) ? $.trim( str ) : num; + }, + + isDigit : function( str ) { + // replace all unwanted chars and match + return isNaN( str ) ? + ts.regex.digitTest.test( str.toString().replace( ts.regex.digitReplace, '' ) ) : + str !== ''; + }, + + // computeTableHeaderCellIndexes from: + // http://www.javascripttoolbox.com/lib/table/examples.php + // http://www.javascripttoolbox.com/temp/table_cellindex.html + computeColumnIndex : function( $rows, c ) { + var i, j, k, l, cell, cells, rowIndex, rowSpan, colSpan, firstAvailCol, + // total columns has been calculated, use it to set the matrixrow + columns = c && c.columns || 0, + matrix = [], + matrixrow = new Array( columns ); + for ( i = 0; i < $rows.length; i++ ) { + cells = $rows[ i ].cells; + for ( j = 0; j < cells.length; j++ ) { + cell = cells[ j ]; + rowIndex = i; + rowSpan = cell.rowSpan || 1; + colSpan = cell.colSpan || 1; + if ( typeof matrix[ rowIndex ] === 'undefined' ) { + matrix[ rowIndex ] = []; + } + // Find first available column in the first row + for ( k = 0; k < matrix[ rowIndex ].length + 1; k++ ) { + if ( typeof matrix[ rowIndex ][ k ] === 'undefined' ) { + firstAvailCol = k; + break; + } + } + // jscs:disable disallowEmptyBlocks + if ( columns && cell.cellIndex === firstAvailCol ) { + // don't to anything + } else if ( cell.setAttribute ) { + // jscs:enable disallowEmptyBlocks + // add data-column (setAttribute = IE8+) + cell.setAttribute( 'data-column', firstAvailCol ); + } else { + // remove once we drop support for IE7 - 1/12/2016 + $( cell ).attr( 'data-column', firstAvailCol ); + } + for ( k = rowIndex; k < rowIndex + rowSpan; k++ ) { + if ( typeof matrix[ k ] === 'undefined' ) { + matrix[ k ] = []; + } + matrixrow = matrix[ k ]; + for ( l = firstAvailCol; l < firstAvailCol + colSpan; l++ ) { + matrixrow[ l ] = 'x'; + } + } + } + } + ts.checkColumnCount($rows, matrix, matrixrow.length); + return matrixrow.length; + }, + + checkColumnCount : function($rows, matrix, columns) { + // this DOES NOT report any tbody column issues, except for the math and + // and column selector widgets + var i, len, + valid = true, + cells = []; + for ( i = 0; i < matrix.length; i++ ) { + // some matrix entries are undefined when testing the footer because + // it is using the rowIndex property + if ( matrix[i] ) { + len = matrix[i].length; + if ( matrix[i].length !== columns ) { + valid = false; + break; + } + } + } + if ( !valid ) { + $rows.each( function( indx, el ) { + var cell = el.parentElement.nodeName; + if ( cells.indexOf( cell ) < 0 ) { + cells.push( cell ); + } + }); + console.error( + 'Invalid or incorrect number of columns in the ' + + cells.join( ' or ' ) + '; expected ' + columns + + ', but found ' + len + ' columns' + ); + } + }, + + // automatically add a colgroup with col elements set to a percentage width + fixColumnWidth : function( table ) { + table = $( table )[ 0 ]; + var overallWidth, percent, $tbodies, len, index, + c = table.config, + $colgroup = c.$table.children( 'colgroup' ); + // remove plugin-added colgroup, in case we need to refresh the widths + if ( $colgroup.length && $colgroup.hasClass( ts.css.colgroup ) ) { + $colgroup.remove(); + } + if ( c.widthFixed && c.$table.children( 'colgroup' ).length === 0 ) { + $colgroup = $( '' ); + overallWidth = c.$table.width(); + // only add col for visible columns - fixes #371 + $tbodies = c.$tbodies.find( 'tr:first' ).children( ':visible' ); + len = $tbodies.length; + for ( index = 0; index < len; index++ ) { + percent = parseInt( ( $tbodies.eq( index ).width() / overallWidth ) * 1000, 10 ) / 10 + '%'; + $colgroup.append( $( '' ).css( 'width', percent ) ); + } + c.$table.prepend( $colgroup ); + } + }, + + // get sorter, string, empty, etc options for each column from + // jQuery data, metadata, header option or header class name ('sorter-false') + // priority = jQuery data > meta > headers option > header class name + getData : function( header, configHeader, key ) { + var meta, cl4ss, + val = '', + $header = $( header ); + if ( !$header.length ) { return ''; } + meta = $.metadata ? $header.metadata() : false; + cl4ss = ' ' + ( $header.attr( 'class' ) || '' ); + if ( typeof $header.data( key ) !== 'undefined' || + typeof $header.data( key.toLowerCase() ) !== 'undefined' ) { + // 'data-lockedOrder' is assigned to 'lockedorder'; but 'data-locked-order' is assigned to 'lockedOrder' + // 'data-sort-initial-order' is assigned to 'sortInitialOrder' + val += $header.data( key ) || $header.data( key.toLowerCase() ); + } else if ( meta && typeof meta[ key ] !== 'undefined' ) { + val += meta[ key ]; + } else if ( configHeader && typeof configHeader[ key ] !== 'undefined' ) { + val += configHeader[ key ]; + } else if ( cl4ss !== ' ' && cl4ss.match( ' ' + key + '-' ) ) { + // include sorter class name 'sorter-text', etc; now works with 'sorter-my-custom-parser' + val = cl4ss.match( new RegExp( '\\s' + key + '-([\\w-]+)' ) )[ 1 ] || ''; + } + return $.trim( val ); + }, + + getColumnData : function( table, obj, indx, getCell, $headers ) { + if ( typeof obj !== 'object' || obj === null ) { + return obj; + } + table = $( table )[ 0 ]; + var $header, key, + c = table.config, + $cells = ( $headers || c.$headers ), + // c.$headerIndexed is not defined initially + $cell = c.$headerIndexed && c.$headerIndexed[ indx ] || + $cells.find( '[data-column="' + indx + '"]:last' ); + if ( typeof obj[ indx ] !== 'undefined' ) { + return getCell ? obj[ indx ] : obj[ $cells.index( $cell ) ]; + } + for ( key in obj ) { + if ( typeof key === 'string' ) { + $header = $cell + // header cell with class/id + .filter( key ) + // find elements within the header cell with cell/id + .add( $cell.find( key ) ); + if ( $header.length ) { + return obj[ key ]; + } + } + } + return; + }, + + // *** Process table *** + // add processing indicator + isProcessing : function( $table, toggle, $headers ) { + $table = $( $table ); + var c = $table[ 0 ].config, + // default to all headers + $header = $headers || $table.find( '.' + ts.css.header ); + if ( toggle ) { + // don't use sortList if custom $headers used + if ( typeof $headers !== 'undefined' && c.sortList.length > 0 ) { + // get headers from the sortList + $header = $header.filter( function() { + // get data-column from attr to keep compatibility with jQuery 1.2.6 + return this.sortDisabled ? + false : + ts.isValueInArray( parseFloat( $( this ).attr( 'data-column' ) ), c.sortList ) >= 0; + }); + } + $table.add( $header ).addClass( ts.css.processing + ' ' + c.cssProcessing ); + } else { + $table.add( $header ).removeClass( ts.css.processing + ' ' + c.cssProcessing ); + } + }, + + // detach tbody but save the position + // don't use tbody because there are portions that look for a tbody index (updateCell) + processTbody : function( table, $tb, getIt ) { + table = $( table )[ 0 ]; + if ( getIt ) { + table.isProcessing = true; + $tb.before( '' ); + return $.fn.detach ? $tb.detach() : $tb.remove(); + } + var holdr = $( table ).find( 'colgroup.tablesorter-savemyplace' ); + $tb.insertAfter( holdr ); + holdr.remove(); + table.isProcessing = false; + }, + + clearTableBody : function( table ) { + $( table )[ 0 ].config.$tbodies.children().detach(); + }, + + // used when replacing accented characters during sorting + characterEquivalents : { + 'a' : '\u00e1\u00e0\u00e2\u00e3\u00e4\u0105\u00e5', // áàâãäąå + 'A' : '\u00c1\u00c0\u00c2\u00c3\u00c4\u0104\u00c5', // ÁÀÂÃÄĄÅ + 'c' : '\u00e7\u0107\u010d', // çćč + 'C' : '\u00c7\u0106\u010c', // ÇĆČ + 'e' : '\u00e9\u00e8\u00ea\u00eb\u011b\u0119', // éèêëěę + 'E' : '\u00c9\u00c8\u00ca\u00cb\u011a\u0118', // ÉÈÊËĚĘ + 'i' : '\u00ed\u00ec\u0130\u00ee\u00ef\u0131', // íìİîïı + 'I' : '\u00cd\u00cc\u0130\u00ce\u00cf', // ÍÌİÎÏ + 'o' : '\u00f3\u00f2\u00f4\u00f5\u00f6\u014d', // óòôõöō + 'O' : '\u00d3\u00d2\u00d4\u00d5\u00d6\u014c', // ÓÒÔÕÖŌ + 'ss': '\u00df', // ß (s sharp) + 'SS': '\u1e9e', // ẞ (Capital sharp s) + 'u' : '\u00fa\u00f9\u00fb\u00fc\u016f', // úùûüů + 'U' : '\u00da\u00d9\u00db\u00dc\u016e' // ÚÙÛÜŮ + }, + + replaceAccents : function( str ) { + var chr, + acc = '[', + eq = ts.characterEquivalents; + if ( !ts.characterRegex ) { + ts.characterRegexArray = {}; + for ( chr in eq ) { + if ( typeof chr === 'string' ) { + acc += eq[ chr ]; + ts.characterRegexArray[ chr ] = new RegExp( '[' + eq[ chr ] + ']', 'g' ); + } + } + ts.characterRegex = new RegExp( acc + ']' ); + } + if ( ts.characterRegex.test( str ) ) { + for ( chr in eq ) { + if ( typeof chr === 'string' ) { + str = str.replace( ts.characterRegexArray[ chr ], chr ); + } + } + } + return str; + }, + + validateOptions : function( c ) { + var setting, setting2, typ, timer, + // ignore options containing an array + ignore = 'headers sortForce sortList sortAppend widgets'.split( ' ' ), + orig = c.originalSettings; + if ( orig ) { + if ( ts.debug(c, 'core') ) { + timer = new Date(); + } + for ( setting in orig ) { + typ = typeof ts.defaults[setting]; + if ( typ === 'undefined' ) { + console.warn( 'Tablesorter Warning! "table.config.' + setting + '" option not recognized' ); + } else if ( typ === 'object' ) { + for ( setting2 in orig[setting] ) { + typ = ts.defaults[setting] && typeof ts.defaults[setting][setting2]; + if ( $.inArray( setting, ignore ) < 0 && typ === 'undefined' ) { + console.warn( 'Tablesorter Warning! "table.config.' + setting + '.' + setting2 + '" option not recognized' ); + } + } + } + } + if ( ts.debug(c, 'core') ) { + console.log( 'validate options time:' + ts.benchmark( timer ) ); + } + } + }, + + // restore headers + restoreHeaders : function( table ) { + var index, $cell, + c = $( table )[ 0 ].config, + $headers = c.$table.find( c.selectorHeaders ), + len = $headers.length; + // don't use c.$headers here in case header cells were swapped + for ( index = 0; index < len; index++ ) { + $cell = $headers.eq( index ); + // only restore header cells if it is wrapped + // because this is also used by the updateAll method + if ( $cell.find( '.' + ts.css.headerIn ).length ) { + $cell.html( c.headerContent[ index ] ); + } + } + }, + + destroy : function( table, removeClasses, callback ) { + table = $( table )[ 0 ]; + if ( !table.hasInitialized ) { return; } + // remove all widgets + ts.removeWidget( table, true, false ); + var events, + $t = $( table ), + c = table.config, + $h = $t.find( 'thead:first' ), + $r = $h.find( 'tr.' + ts.css.headerRow ).removeClass( ts.css.headerRow + ' ' + c.cssHeaderRow ), + $f = $t.find( 'tfoot:first > tr' ).children( 'th, td' ); + if ( removeClasses === false && $.inArray( 'uitheme', c.widgets ) >= 0 ) { + // reapply uitheme classes, in case we want to maintain appearance + $t.triggerHandler( 'applyWidgetId', [ 'uitheme' ] ); + $t.triggerHandler( 'applyWidgetId', [ 'zebra' ] ); + } + // remove widget added rows, just in case + $h.find( 'tr' ).not( $r ).remove(); + // disable tablesorter - not using .unbind( namespace ) because namespacing was + // added in jQuery v1.4.3 - see http://api.jquery.com/event.namespace/ + events = 'sortReset update updateRows updateAll updateHeaders updateCell addRows updateComplete sorton ' + + 'appendCache updateCache applyWidgetId applyWidgets refreshWidgets removeWidget destroy mouseup mouseleave ' + + 'keypress sortBegin sortEnd resetToLoadState '.split( ' ' ) + .join( c.namespace + ' ' ); + $t + .removeData( 'tablesorter' ) + .unbind( events.replace( ts.regex.spaces, ' ' ) ); + c.$headers + .add( $f ) + .removeClass( [ ts.css.header, c.cssHeader, c.cssAsc, c.cssDesc, ts.css.sortAsc, ts.css.sortDesc, ts.css.sortNone ].join( ' ' ) ) + .removeAttr( 'data-column' ) + .removeAttr( 'aria-label' ) + .attr( 'aria-disabled', 'true' ); + $r + .find( c.selectorSort ) + .unbind( ( 'mousedown mouseup keypress '.split( ' ' ).join( c.namespace + ' ' ) ).replace( ts.regex.spaces, ' ' ) ); + ts.restoreHeaders( table ); + $t.toggleClass( ts.css.table + ' ' + c.tableClass + ' tablesorter-' + c.theme, removeClasses === false ); + $t.removeClass(c.namespace.slice(1)); + // clear flag in case the plugin is initialized again + table.hasInitialized = false; + delete table.config.cache; + if ( typeof callback === 'function' ) { + callback( table ); + } + if ( ts.debug(c, 'core') ) { + console.log( 'tablesorter has been removed' ); + } + } + + }; + + $.fn.tablesorter = function( settings ) { + return this.each( function() { + var table = this, + // merge & extend config options + c = $.extend( true, {}, ts.defaults, settings, ts.instanceMethods ); + // save initial settings + c.originalSettings = settings; + // create a table from data (build table widget) + if ( !table.hasInitialized && ts.buildTable && this.nodeName !== 'TABLE' ) { + // return the table (in case the original target is the table's container) + ts.buildTable( table, c ); + } else { + ts.setup( table, c ); + } + }); + }; + + // set up debug logs + if ( !( window.console && window.console.log ) ) { + // access $.tablesorter.logs for browsers that don't have a console... + ts.logs = []; + /*jshint -W020 */ + console = {}; + console.log = console.warn = console.error = console.table = function() { + var arg = arguments.length > 1 ? arguments : arguments[0]; + ts.logs[ ts.logs.length ] = { date: Date.now(), log: arg }; + }; + } + + // add default parsers + ts.addParser({ + id : 'no-parser', + is : function() { + return false; + }, + format : function() { + return ''; + }, + type : 'text' + }); + + ts.addParser({ + id : 'text', + is : function() { + return true; + }, + format : function( str, table ) { + var c = table.config; + if ( str ) { + str = $.trim( c.ignoreCase ? str.toLocaleLowerCase() : str ); + str = c.sortLocaleCompare ? ts.replaceAccents( str ) : str; + } + return str; + }, + type : 'text' + }); + + ts.regex.nondigit = /[^\w,. \-()]/g; + ts.addParser({ + id : 'digit', + is : function( str ) { + return ts.isDigit( str ); + }, + format : function( str, table ) { + var num = ts.formatFloat( ( str || '' ).replace( ts.regex.nondigit, '' ), table ); + return str && typeof num === 'number' ? num : + str ? $.trim( str && table.config.ignoreCase ? str.toLocaleLowerCase() : str ) : str; + }, + type : 'numeric' + }); + + ts.regex.currencyReplace = /[+\-,. ]/g; + ts.regex.currencyTest = /^\(?\d+[\u00a3$\u20ac\u00a4\u00a5\u00a2?.]|[\u00a3$\u20ac\u00a4\u00a5\u00a2?.]\d+\)?$/; + ts.addParser({ + id : 'currency', + is : function( str ) { + str = ( str || '' ).replace( ts.regex.currencyReplace, '' ); + // test for £$€¤¥¢ + return ts.regex.currencyTest.test( str ); + }, + format : function( str, table ) { + var num = ts.formatFloat( ( str || '' ).replace( ts.regex.nondigit, '' ), table ); + return str && typeof num === 'number' ? num : + str ? $.trim( str && table.config.ignoreCase ? str.toLocaleLowerCase() : str ) : str; + }, + type : 'numeric' + }); + + // too many protocols to add them all https://en.wikipedia.org/wiki/URI_scheme + // now, this regex can be updated before initialization + ts.regex.urlProtocolTest = /^(https?|ftp|file):\/\//; + ts.regex.urlProtocolReplace = /(https?|ftp|file):\/\/(www\.)?/; + ts.addParser({ + id : 'url', + is : function( str ) { + return ts.regex.urlProtocolTest.test( str ); + }, + format : function( str ) { + return str ? $.trim( str.replace( ts.regex.urlProtocolReplace, '' ) ) : str; + }, + type : 'text' + }); + + ts.regex.dash = /-/g; + ts.regex.isoDate = /^\d{4}[\/\-]\d{1,2}[\/\-]\d{1,2}/; + ts.addParser({ + id : 'isoDate', + is : function( str ) { + return ts.regex.isoDate.test( str ); + }, + format : function( str ) { + var date = str ? new Date( str.replace( ts.regex.dash, '/' ) ) : str; + return date instanceof Date && isFinite( date ) ? date.getTime() : str; + }, + type : 'numeric' + }); + + ts.regex.percent = /%/g; + ts.regex.percentTest = /(\d\s*?%|%\s*?\d)/; + ts.addParser({ + id : 'percent', + is : function( str ) { + return ts.regex.percentTest.test( str ) && str.length < 15; + }, + format : function( str, table ) { + return str ? ts.formatFloat( str.replace( ts.regex.percent, '' ), table ) : str; + }, + type : 'numeric' + }); + + // added image parser to core v2.17.9 + ts.addParser({ + id : 'image', + is : function( str, table, node, $node ) { + return $node.find( 'img' ).length > 0; + }, + format : function( str, table, cell ) { + return $( cell ).find( 'img' ).attr( table.config.imgAttr || 'alt' ) || str; + }, + parsed : true, // filter widget flag + type : 'text' + }); + + ts.regex.dateReplace = /(\S)([AP]M)$/i; // used by usLongDate & time parser + ts.regex.usLongDateTest1 = /^[A-Z]{3,10}\.?\s+\d{1,2},?\s+(\d{4})(\s+\d{1,2}:\d{2}(:\d{2})?(\s+[AP]M)?)?$/i; + ts.regex.usLongDateTest2 = /^\d{1,2}\s+[A-Z]{3,10}\s+\d{4}/i; + ts.addParser({ + id : 'usLongDate', + is : function( str ) { + // two digit years are not allowed cross-browser + // Jan 01, 2013 12:34:56 PM or 01 Jan 2013 + return ts.regex.usLongDateTest1.test( str ) || ts.regex.usLongDateTest2.test( str ); + }, + format : function( str ) { + var date = str ? new Date( str.replace( ts.regex.dateReplace, '$1 $2' ) ) : str; + return date instanceof Date && isFinite( date ) ? date.getTime() : str; + }, + type : 'numeric' + }); + + // testing for ##-##-#### or ####-##-##, so it's not perfect; time can be included + ts.regex.shortDateTest = /(^\d{1,2}[\/\s]\d{1,2}[\/\s]\d{4})|(^\d{4}[\/\s]\d{1,2}[\/\s]\d{1,2})/; + // escaped "-" because JSHint in Firefox was showing it as an error + ts.regex.shortDateReplace = /[\-.,]/g; + // XXY covers MDY & DMY formats + ts.regex.shortDateXXY = /(\d{1,2})[\/\s](\d{1,2})[\/\s](\d{4})/; + ts.regex.shortDateYMD = /(\d{4})[\/\s](\d{1,2})[\/\s](\d{1,2})/; + ts.convertFormat = function( dateString, format ) { + dateString = ( dateString || '' ) + .replace( ts.regex.spaces, ' ' ) + .replace( ts.regex.shortDateReplace, '/' ); + if ( format === 'mmddyyyy' ) { + dateString = dateString.replace( ts.regex.shortDateXXY, '$3/$1/$2' ); + } else if ( format === 'ddmmyyyy' ) { + dateString = dateString.replace( ts.regex.shortDateXXY, '$3/$2/$1' ); + } else if ( format === 'yyyymmdd' ) { + dateString = dateString.replace( ts.regex.shortDateYMD, '$1/$2/$3' ); + } + var date = new Date( dateString ); + return date instanceof Date && isFinite( date ) ? date.getTime() : ''; + }; + + ts.addParser({ + id : 'shortDate', // 'mmddyyyy', 'ddmmyyyy' or 'yyyymmdd' + is : function( str ) { + str = ( str || '' ).replace( ts.regex.spaces, ' ' ).replace( ts.regex.shortDateReplace, '/' ); + return ts.regex.shortDateTest.test( str ); + }, + format : function( str, table, cell, cellIndex ) { + if ( str ) { + var c = table.config, + $header = c.$headerIndexed[ cellIndex ], + format = $header.length && $header.data( 'dateFormat' ) || + ts.getData( $header, ts.getColumnData( table, c.headers, cellIndex ), 'dateFormat' ) || + c.dateFormat; + // save format because getData can be slow... + if ( $header.length ) { + $header.data( 'dateFormat', format ); + } + return ts.convertFormat( str, format ) || str; + } + return str; + }, + type : 'numeric' + }); + + // match 24 hour time & 12 hours time + am/pm - see http://regexr.com/3c3tk + ts.regex.timeTest = /^(0?[1-9]|1[0-2]):([0-5]\d)(\s[AP]M)$|^((?:[01]\d|[2][0-4]):[0-5]\d)$/i; + ts.regex.timeMatch = /(0?[1-9]|1[0-2]):([0-5]\d)(\s[AP]M)|((?:[01]\d|[2][0-4]):[0-5]\d)/i; + ts.addParser({ + id : 'time', + is : function( str ) { + return ts.regex.timeTest.test( str ); + }, + format : function( str ) { + // isolate time... ignore month, day and year + var temp, + timePart = ( str || '' ).match( ts.regex.timeMatch ), + orig = new Date( str ), + // no time component? default to 00:00 by leaving it out, but only if str is defined + time = str && ( timePart !== null ? timePart[ 0 ] : '00:00 AM' ), + date = time ? new Date( '2000/01/01 ' + time.replace( ts.regex.dateReplace, '$1 $2' ) ) : time; + if ( date instanceof Date && isFinite( date ) ) { + temp = orig instanceof Date && isFinite( orig ) ? orig.getTime() : 0; + // if original string was a valid date, add it to the decimal so the column sorts in some kind of order + // luckily new Date() ignores the decimals + return temp ? parseFloat( date.getTime() + '.' + orig.getTime() ) : date.getTime(); + } + return str; + }, + type : 'numeric' + }); + + ts.addParser({ + id : 'metadata', + is : function() { + return false; + }, + format : function( str, table, cell ) { + var c = table.config, + p = ( !c.parserMetadataName ) ? 'sortValue' : c.parserMetadataName; + return $( cell ).metadata()[ p ]; + }, + type : 'numeric' + }); + + /* + ██████ ██████ █████▄ █████▄ ▄████▄ + ▄█▀ ██▄▄ ██▄▄██ ██▄▄██ ██▄▄██ + ▄█▀ ██▀▀ ██▀▀██ ██▀▀█ ██▀▀██ + ██████ ██████ █████▀ ██ ██ ██ ██ + */ + // add default widgets + ts.addWidget({ + id : 'zebra', + priority : 90, + format : function( table, c, wo ) { + var $visibleRows, $row, count, isEven, tbodyIndex, rowIndex, len, + child = new RegExp( c.cssChildRow, 'i' ), + $tbodies = c.$tbodies.add( $( c.namespace + '_extra_table' ).children( 'tbody:not(.' + c.cssInfoBlock + ')' ) ); + for ( tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { + // loop through the visible rows + count = 0; + $visibleRows = $tbodies.eq( tbodyIndex ).children( 'tr:visible' ).not( c.selectorRemove ); + len = $visibleRows.length; + for ( rowIndex = 0; rowIndex < len; rowIndex++ ) { + $row = $visibleRows.eq( rowIndex ); + // style child rows the same way the parent row was styled + if ( !child.test( $row[ 0 ].className ) ) { count++; } + isEven = ( count % 2 === 0 ); + $row + .removeClass( wo.zebra[ isEven ? 1 : 0 ] ) + .addClass( wo.zebra[ isEven ? 0 : 1 ] ); + } + } + }, + remove : function( table, c, wo, refreshing ) { + if ( refreshing ) { return; } + var tbodyIndex, $tbody, + $tbodies = c.$tbodies, + toRemove = ( wo.zebra || [ 'even', 'odd' ] ).join( ' ' ); + for ( tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { + $tbody = ts.processTbody( table, $tbodies.eq( tbodyIndex ), true ); // remove tbody + $tbody.children().removeClass( toRemove ); + ts.processTbody( table, $tbody, false ); // restore tbody + } + } + }); + +})( jQuery ); +return jQuery.tablesorter;})); diff --git a/modules/pdproductattributeslist/views/js/jquery.tablesorter.min.js b/modules/pdproductattributeslist/views/js/jquery.tablesorter.min.js new file mode 100644 index 00000000..726297bf --- /dev/null +++ b/modules/pdproductattributeslist/views/js/jquery.tablesorter.min.js @@ -0,0 +1 @@ +!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof module&&"object"==typeof module.exports?module.exports=e(require("jquery")):e(jQuery)}(function(e){return function(A){"use strict";var L=A.tablesorter={version:"2.32.0",parsers:[],widgets:[],defaults:{theme:"default",widthFixed:!1,showProcessing:!1,headerTemplate:"{content}",onRenderTemplate:null,onRenderHeader:null,cancelSelection:!0,tabIndex:!0,dateFormat:"mmddyyyy",sortMultiSortKey:"shiftKey",sortResetKey:"ctrlKey",usNumberFormat:!0,delayInit:!1,serverSideSorting:!1,resort:!0,headers:null,ignoreCase:!0,sortForce:null,sortList:[],sortAppend:null,sortStable:!1,sortInitialOrder:"asc",sortLocaleCompare:!1,sortReset:!1,sortRestart:!1,emptyTo:"bottom",stringTo:"max",duplicateSpan:!0,textExtraction:"basic",textAttribute:"data-text",textSorter:null,numberSorter:null,initWidgets:!0,widgetClass:"widget-{name}",widgets:[],widgetOptions:{zebra:["even","odd"]},initialized:null,tableClass:"",cssAsc:"",cssDesc:"",cssNone:"",cssHeader:"",cssHeaderRow:"",cssProcessing:"",cssChildRow:"tablesorter-childRow",cssInfoBlock:"tablesorter-infoOnly",cssNoSort:"tablesorter-noSort",cssIgnoreRow:"tablesorter-ignoreRow",cssIcon:"tablesorter-icon",cssIconNone:"",cssIconAsc:"",cssIconDesc:"",cssIconDisabled:"",pointerClick:"click",pointerDown:"mousedown",pointerUp:"mouseup",selectorHeaders:"> thead th, > thead td",selectorSort:"th, td",selectorRemove:".remove-me",debug:!1,headerList:[],empties:{},strings:{},parsers:[],globalize:0,imgAttr:0},css:{table:"tablesorter",cssHasChild:"tablesorter-hasChildRow",childRow:"tablesorter-childRow",colgroup:"tablesorter-colgroup",header:"tablesorter-header",headerRow:"tablesorter-headerRow",headerIn:"tablesorter-header-inner",icon:"tablesorter-icon",processing:"tablesorter-processing",sortAsc:"tablesorter-headerAsc",sortDesc:"tablesorter-headerDesc",sortNone:"tablesorter-headerUnSorted"},language:{sortAsc:"Ascending sort applied, ",sortDesc:"Descending sort applied, ",sortNone:"No sort applied, ",sortDisabled:"sorting is disabled",nextAsc:"activate to apply an ascending sort",nextDesc:"activate to apply a descending sort",nextNone:"activate to remove the sort"},regex:{templateContent:/\{content\}/g,templateIcon:/\{icon\}/g,templateName:/\{name\}/i,spaces:/\s+/g,nonWord:/\W/g,formElements:/(input|select|button|textarea)/i,chunk:/(^([+\-]?(?:\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?)?$|^0x[0-9a-f]+$|\d+)/gi,chunks:/(^\\0|\\0$)/,hex:/^0x[0-9a-f]+$/i,comma:/,/g,digitNonUS:/[\s|\.]/g,digitNegativeTest:/^\s*\([.\d]+\)/,digitNegativeReplace:/^\s*\(([.\d]+)\)/,digitTest:/^[\-+(]?\d+[)]?$/,digitReplace:/[,.'"\s]/g},string:{max:1,min:-1,emptymin:1,emptymax:-1,zero:0,none:0,null:0,top:!0,bottom:!1},keyCodes:{enter:13},dates:{},instanceMethods:{},setup:function(t,r){var e,o,s,a;t&&t.tHead&&0!==t.tBodies.length&&!0!==t.hasInitialized?(e="",o=A(t),s=A.metadata,t.hasInitialized=!1,t.isProcessing=!0,t.config=r,A.data(t,"tablesorter",r),L.debug(r,"core")&&(console[console.group?"group":"log"]("Initializing tablesorter v"+L.version),A.data(t,"startoveralltimer",new Date)),r.supportsDataObject=((a=A.fn.jquery.split("."))[0]=parseInt(a[0],10),1
':"",i.$headers=A(A.map(i.$table.find(i.selectorHeaders),function(e,t){var r,o,s,a,n=A(e);if(!L.getClosest(n,"tr").hasClass(i.cssIgnoreRow))return/(th|td)/i.test(e.nodeName)||(a=L.getClosest(n,"th, td"),n.attr("data-column",a.attr("data-column"))),r=L.getColumnData(i.table,i.headers,t,!0),i.headerContent[t]=n.html(),""===i.headerTemplate||n.find("."+L.css.headerIn).length||(s=i.headerTemplate.replace(L.regex.templateContent,n.html()).replace(L.regex.templateIcon,n.find("."+L.css.icon).length?"":l),i.onRenderTemplate&&(o=i.onRenderTemplate.apply(n,[t,s]))&&"string"==typeof o&&(s=o),n.html('
'+s+"
")),i.onRenderHeader&&i.onRenderHeader.apply(n,[t,i,i.$table]),o=parseInt(n.attr("data-column"),10),e.column=o,a=L.getOrder(L.getData(n,r,"sortInitialOrder")||i.sortInitialOrder),i.sortVars[o]={count:-1,order:a?i.sortReset?[1,0,2]:[1,0]:i.sortReset?[0,1,2]:[0,1],lockedOrder:!1,sortedBy:""},void 0!==(a=L.getData(n,r,"lockedOrder")||!1)&&!1!==a&&(i.sortVars[o].lockedOrder=!0,i.sortVars[o].order=L.getOrder(a)?[1,1]:[0,0]),i.headerList[t]=e,n.addClass(L.css.header+" "+i.cssHeader),L.getClosest(n,"tr").addClass(L.css.headerRow+" "+i.cssHeaderRow).attr("role","row"),i.tabIndex&&n.attr("tabindex",0),e})),i.$headerIndexed=[],r=0;r'),t=e.$table.width(),s=(o=e.$tbodies.find("tr:first").children(":visible")).length,a=0;a").css("width",r));e.$table.prepend(n)}},getData:function(e,t,r){var o,s,a="",e=A(e);return e.length?(o=!!A.metadata&&e.metadata(),s=" "+(e.attr("class")||""),void 0!==e.data(r)||void 0!==e.data(r.toLowerCase())?a+=e.data(r)||e.data(r.toLowerCase()):o&&void 0!==o[r]?a+=o[r]:t&&void 0!==t[r]?a+=t[r]:" "!==s&&s.match(" "+r+"-")&&(a=s.match(new RegExp("\\s"+r+"-([\\w-]+)"))[1]||""),A.trim(a)):""},getColumnData:function(e,t,r,o,s){if("object"!=typeof t||null===t)return t;var a,e=(e=A(e)[0]).config,s=s||e.$headers,n=e.$headerIndexed&&e.$headerIndexed[r]||s.find('[data-column="'+r+'"]:last');if(void 0!==t[r])return o?t[r]:t[s.index(n)];for(a in t)if("string"==typeof a&&n.filter(a).add(n.find(a)).length)return t[a]},isProcessing:function(e,t,r){var o=(e=A(e))[0].config,s=r||e.find("."+L.css.header);t?(void 0!==r&&0'),A.fn.detach?t.detach():t.remove();r=A(e).find("colgroup.tablesorter-savemyplace");t.insertAfter(r),r.remove(),e.isProcessing=!1},clearTableBody:function(e){A(e)[0].config.$tbodies.children().detach()},characterEquivalents:{a:"áàâãäąå",A:"ÁÀÂÃÄĄÅ",c:"çćč",C:"ÇĆČ",e:"éèêëěę",E:"ÉÈÊËĚĘ",i:"íìİîïı",I:"ÍÌİÎÏ",o:"óòôõöō",O:"ÓÒÔÕÖŌ",ss:"ß",SS:"ẞ",u:"úùûüů",U:"ÚÙÛÜŮ"},replaceAccents:function(e){var t,r="[",o=L.characterEquivalents;if(!L.characterRegex){for(t in L.characterRegexArray={},o)"string"==typeof t&&(r+=o[t],L.characterRegexArray[t]=new RegExp("["+o[t]+"]","g"));L.characterRegex=new RegExp(r+"]")}if(L.characterRegex.test(e))for(t in o)"string"==typeof t&&(e=e.replace(L.characterRegexArray[t],t));return e},validateOptions:function(e){var t,r,o,s,a="headers sortForce sortList sortAppend widgets".split(" "),n=e.originalSettings;if(n){for(t in L.debug(e,"core")&&(s=new Date),n)if("undefined"===(o=typeof L.defaults[t]))console.warn('Tablesorter Warning! "table.config.'+t+'" option not recognized');else if("object"===o)for(r in n[t])o=L.defaults[t]&&typeof L.defaults[t][r],A.inArray(t,a)<0&&"undefined"===o&&console.warn('Tablesorter Warning! "table.config.'+t+"."+r+'" option not recognized');L.debug(e,"core")&&console.log("validate options time:"+L.benchmark(s))}},restoreHeaders:function(e){for(var t,r=A(e)[0].config,o=r.$table.find(r.selectorHeaders),s=o.length,a=0;a tr").children("th, td"),!1===t&&0<=A.inArray("uitheme",s.widgets)&&(o.triggerHandler("applyWidgetId",["uitheme"]),o.triggerHandler("applyWidgetId",["zebra"])),a.find("tr").not(n).remove(),a="sortReset update updateRows updateAll updateHeaders updateCell addRows updateComplete sorton appendCache updateCache applyWidgetId applyWidgets refreshWidgets removeWidget destroy mouseup mouseleave "+"keypress sortBegin sortEnd resetToLoadState ".split(" ").join(s.namespace+" "),o.removeData("tablesorter").unbind(a.replace(L.regex.spaces," ")),s.$headers.add(i).removeClass([L.css.header,s.cssHeader,s.cssAsc,s.cssDesc,L.css.sortAsc,L.css.sortDesc,L.css.sortNone].join(" ")).removeAttr("data-column").removeAttr("aria-label").attr("aria-disabled","true"),n.find(s.selectorSort).unbind("mousedown mouseup keypress ".split(" ").join(s.namespace+" ").replace(L.regex.spaces," ")),L.restoreHeaders(e),o.toggleClass(L.css.table+" "+s.tableClass+" tablesorter-"+s.theme,!1===t),o.removeClass(s.namespace.slice(1)),e.hasInitialized=!1,delete e.config.cache,"function"==typeof r&&r(e),L.debug(s,"core"))&&console.log("tablesorter has been removed")}};A.fn.tablesorter=function(t){return this.each(function(){var e=A.extend(!0,{},L.defaults,t,L.instanceMethods);e.originalSettings=t,!this.hasInitialized&&L.buildTable&&"TABLE"!==this.nodeName?L.buildTable(this,e):L.setup(this,e)})},window.console&&window.console.log||(L.logs=[],(console={}).log=console.warn=console.error=console.table=function(){var e=1> Using', hasStorage ? storageType : 'cookies'); + } + // *** get value *** + if ($.parseJSON) { + if (hasStorage) { + values = $.parseJSON( window[storageType][key] || 'null' ) || {}; + } else { + // old browser, using cookies + cookies = document.cookie.split(/[;\s|=]/); + // add one to get from the key to the value + cookieIndex = $.inArray(key, cookies) + 1; + values = (cookieIndex !== 0) ? $.parseJSON(cookies[cookieIndex] || 'null') || {} : {}; + } + } + // allow value to be an empty string too + if (typeof value !== 'undefined' && window.JSON && JSON.hasOwnProperty('stringify')) { + // add unique identifiers = url pathname > table ID/index on page > data + if (!values[url]) { + values[url] = {}; + } + values[url][id] = value; + // *** set value *** + if (hasStorage) { + window[storageType][key] = JSON.stringify(values); + } else { + date = new Date(); + date.setTime(date.getTime() + (31536e+6)); // 365 days + document.cookie = key + '=' + (JSON.stringify(values)).replace(/\"/g, '\"') + '; expires=' + date.toGMTString() + '; path=/'; + } + } else { + return values && values[url] ? values[url][id] : ''; + } + }; + +})(jQuery, window, document); + +/*! Widget: uitheme - updated 2018-03-18 (v2.30.0) */ +;(function ($) { + 'use strict'; + var ts = $.tablesorter || {}; + + ts.themes = { + 'bootstrap' : { + table : 'table table-bordered table-striped', + caption : 'caption', + // header class names + header : 'bootstrap-header', // give the header a gradient background (theme.bootstrap_2.css) + sortNone : '', + sortAsc : '', + sortDesc : '', + active : '', // applied when column is sorted + hover : '', // custom css required - a defined bootstrap style may not override other classes + // icon class names + icons : '', // add 'bootstrap-icon-white' to make them white; this icon class is added to the in the header + iconSortNone : 'bootstrap-icon-unsorted', // class name added to icon when column is not sorted + iconSortAsc : 'glyphicon glyphicon-chevron-up', // class name added to icon when column has ascending sort + iconSortDesc : 'glyphicon glyphicon-chevron-down', // class name added to icon when column has descending sort + filterRow : '', // filter row class + footerRow : '', + footerCells : '', + even : '', // even row zebra striping + odd : '' // odd row zebra striping + }, + 'jui' : { + table : 'ui-widget ui-widget-content ui-corner-all', // table classes + caption : 'ui-widget-content', + // header class names + header : 'ui-widget-header ui-corner-all ui-state-default', // header classes + sortNone : '', + sortAsc : '', + sortDesc : '', + active : 'ui-state-active', // applied when column is sorted + hover : 'ui-state-hover', // hover class + // icon class names + icons : 'ui-icon', // icon class added to the in the header + iconSortNone : 'ui-icon-carat-2-n-s ui-icon-caret-2-n-s', // class name added to icon when column is not sorted + iconSortAsc : 'ui-icon-carat-1-n ui-icon-caret-1-n', // class name added to icon when column has ascending sort + iconSortDesc : 'ui-icon-carat-1-s ui-icon-caret-1-s', // class name added to icon when column has descending sort + filterRow : '', + footerRow : '', + footerCells : '', + even : 'ui-widget-content', // even row zebra striping + odd : 'ui-state-default' // odd row zebra striping + } + }; + + $.extend(ts.css, { + wrapper : 'tablesorter-wrapper' // ui theme & resizable + }); + + ts.addWidget({ + id: 'uitheme', + priority: 10, + format: function(table, c, wo) { + var i, tmp, hdr, icon, time, $header, $icon, $tfoot, $h, oldtheme, oldremove, oldIconRmv, hasOldTheme, + themesAll = ts.themes, + $table = c.$table.add( $( c.namespace + '_extra_table' ) ), + $headers = c.$headers.add( $( c.namespace + '_extra_headers' ) ), + theme = c.theme || 'jui', + themes = themesAll[theme] || {}, + remove = $.trim( [ themes.sortNone, themes.sortDesc, themes.sortAsc, themes.active ].join( ' ' ) ), + iconRmv = $.trim( [ themes.iconSortNone, themes.iconSortDesc, themes.iconSortAsc ].join( ' ' ) ), + debug = ts.debug(c, 'uitheme'); + if (debug) { time = new Date(); } + // initialization code - run once + if (!$table.hasClass('tablesorter-' + theme) || c.theme !== c.appliedTheme || !wo.uitheme_applied) { + wo.uitheme_applied = true; + oldtheme = themesAll[c.appliedTheme] || {}; + hasOldTheme = !$.isEmptyObject(oldtheme); + oldremove = hasOldTheme ? [ oldtheme.sortNone, oldtheme.sortDesc, oldtheme.sortAsc, oldtheme.active ].join( ' ' ) : ''; + oldIconRmv = hasOldTheme ? [ oldtheme.iconSortNone, oldtheme.iconSortDesc, oldtheme.iconSortAsc ].join( ' ' ) : ''; + if (hasOldTheme) { + wo.zebra[0] = $.trim( ' ' + wo.zebra[0].replace(' ' + oldtheme.even, '') ); + wo.zebra[1] = $.trim( ' ' + wo.zebra[1].replace(' ' + oldtheme.odd, '') ); + c.$tbodies.children().removeClass( [ oldtheme.even, oldtheme.odd ].join(' ') ); + } + // update zebra stripes + if (themes.even) { wo.zebra[0] += ' ' + themes.even; } + if (themes.odd) { wo.zebra[1] += ' ' + themes.odd; } + // add caption style + $table.children('caption') + .removeClass(oldtheme.caption || '') + .addClass(themes.caption); + // add table/footer class names + $tfoot = $table + // remove other selected themes + .removeClass( (c.appliedTheme ? 'tablesorter-' + (c.appliedTheme || '') : '') + ' ' + (oldtheme.table || '') ) + .addClass('tablesorter-' + theme + ' ' + (themes.table || '')) // add theme widget class name + .children('tfoot'); + c.appliedTheme = c.theme; + + if ($tfoot.length) { + $tfoot + // if oldtheme.footerRow or oldtheme.footerCells are undefined, all class names are removed + .children('tr').removeClass(oldtheme.footerRow || '').addClass(themes.footerRow) + .children('th, td').removeClass(oldtheme.footerCells || '').addClass(themes.footerCells); + } + // update header classes + $headers + .removeClass( (hasOldTheme ? [ oldtheme.header, oldtheme.hover, oldremove ].join(' ') : '') || '' ) + .addClass(themes.header) + .not('.sorter-false') + .unbind('mouseenter.tsuitheme mouseleave.tsuitheme') + .bind('mouseenter.tsuitheme mouseleave.tsuitheme', function(event) { + // toggleClass with switch added in jQuery 1.3 + $(this)[ event.type === 'mouseenter' ? 'addClass' : 'removeClass' ](themes.hover || ''); + }); + + $headers.each(function() { + var $this = $(this); + if (!$this.find('.' + ts.css.wrapper).length) { + // Firefox needs this inner div to position the icon & resizer correctly + $this.wrapInner('
'); + } + }); + if (c.cssIcon) { + // if c.cssIcon is '', then no is added to the header + $headers + .find('.' + ts.css.icon) + .removeClass(hasOldTheme ? [ oldtheme.icons, oldIconRmv ].join(' ') : '') + .addClass(themes.icons || ''); + } + // filter widget initializes after uitheme + if (ts.hasWidget( c.table, 'filter' )) { + tmp = function() { + $table.children('thead').children('.' + ts.css.filterRow) + .removeClass(hasOldTheme ? oldtheme.filterRow || '' : '') + .addClass(themes.filterRow || ''); + }; + if (wo.filter_initialized) { + tmp(); + } else { + $table.one('filterInit', function() { + tmp(); + }); + } + } + } + for (i = 0; i < c.columns; i++) { + $header = c.$headers + .add($(c.namespace + '_extra_headers')) + .not('.sorter-false') + .filter('[data-column="' + i + '"]'); + $icon = (ts.css.icon) ? $header.find('.' + ts.css.icon) : $(); + $h = $headers.not('.sorter-false').filter('[data-column="' + i + '"]:last'); + if ($h.length) { + $header.removeClass(remove); + $icon.removeClass(iconRmv); + if ($h[0].sortDisabled) { + // no sort arrows for disabled columns! + $icon.removeClass(themes.icons || ''); + } else { + hdr = themes.sortNone; + icon = themes.iconSortNone; + if ($h.hasClass(ts.css.sortAsc)) { + hdr = [ themes.sortAsc, themes.active ].join(' '); + icon = themes.iconSortAsc; + } else if ($h.hasClass(ts.css.sortDesc)) { + hdr = [ themes.sortDesc, themes.active ].join(' '); + icon = themes.iconSortDesc; + } + $header.addClass(hdr); + $icon.addClass(icon || ''); + } + } + } + if (debug) { + console.log('uitheme >> Applied ' + theme + ' theme' + ts.benchmark(time)); + } + }, + remove: function(table, c, wo, refreshing) { + if (!wo.uitheme_applied) { return; } + var $table = c.$table, + theme = c.appliedTheme || 'jui', + themes = ts.themes[ theme ] || ts.themes.jui, + $headers = $table.children('thead').children(), + remove = themes.sortNone + ' ' + themes.sortDesc + ' ' + themes.sortAsc, + iconRmv = themes.iconSortNone + ' ' + themes.iconSortDesc + ' ' + themes.iconSortAsc; + $table.removeClass('tablesorter-' + theme + ' ' + themes.table); + wo.uitheme_applied = false; + if (refreshing) { return; } + $table.find(ts.css.header).removeClass(themes.header); + $headers + .unbind('mouseenter.tsuitheme mouseleave.tsuitheme') // remove hover + .removeClass(themes.hover + ' ' + remove + ' ' + themes.active) + .filter('.' + ts.css.filterRow) + .removeClass(themes.filterRow); + $headers.find('.' + ts.css.icon).removeClass(themes.icons + ' ' + iconRmv); + } + }); + +})(jQuery); + +/*! Widget: columns - updated 5/24/2017 (v2.28.11) */ +;(function ($) { + 'use strict'; + var ts = $.tablesorter || {}; + + ts.addWidget({ + id: 'columns', + priority: 65, + options : { + columns : [ 'primary', 'secondary', 'tertiary' ] + }, + format: function(table, c, wo) { + var $tbody, tbodyIndex, $rows, rows, $row, $cells, remove, indx, + $table = c.$table, + $tbodies = c.$tbodies, + sortList = c.sortList, + len = sortList.length, + // removed c.widgetColumns support + css = wo && wo.columns || [ 'primary', 'secondary', 'tertiary' ], + last = css.length - 1; + remove = css.join(' '); + // check if there is a sort (on initialization there may not be one) + for (tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { + $tbody = ts.processTbody(table, $tbodies.eq(tbodyIndex), true); // detach tbody + $rows = $tbody.children('tr'); + // loop through the visible rows + $rows.each(function() { + $row = $(this); + if (this.style.display !== 'none') { + // remove all columns class names + $cells = $row.children().removeClass(remove); + // add appropriate column class names + if (sortList && sortList[0]) { + // primary sort column class + $cells.eq(sortList[0][0]).addClass(css[0]); + if (len > 1) { + for (indx = 1; indx < len; indx++) { + // secondary, tertiary, etc sort column classes + $cells.eq(sortList[indx][0]).addClass( css[indx] || css[last] ); + } + } + } + } + }); + ts.processTbody(table, $tbody, false); + } + // add classes to thead and tfoot + rows = wo.columns_thead !== false ? [ 'thead tr' ] : []; + if (wo.columns_tfoot !== false) { + rows.push('tfoot tr'); + } + if (rows.length) { + $rows = $table.find( rows.join(',') ).children().removeClass(remove); + if (len) { + for (indx = 0; indx < len; indx++) { + // add primary. secondary, tertiary, etc sort column classes + $rows.filter('[data-column="' + sortList[indx][0] + '"]').addClass(css[indx] || css[last]); + } + } + } + }, + remove: function(table, c, wo) { + var tbodyIndex, $tbody, + $tbodies = c.$tbodies, + remove = (wo.columns || [ 'primary', 'secondary', 'tertiary' ]).join(' '); + c.$headers.removeClass(remove); + c.$table.children('tfoot').children('tr').children('th, td').removeClass(remove); + for (tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { + $tbody = ts.processTbody(table, $tbodies.eq(tbodyIndex), true); // remove tbody + $tbody.children('tr').each(function() { + $(this).children().removeClass(remove); + }); + ts.processTbody(table, $tbody, false); // restore tbody + } + } + }); + +})(jQuery); + +/*! Widget: filter - updated 2018-03-18 (v2.30.0) *//* + * Requires tablesorter v2.8+ and jQuery 1.7+ + * by Rob Garrison + */ +;( function ( $ ) { + 'use strict'; + var tsf, tsfRegex, + ts = $.tablesorter || {}, + tscss = ts.css, + tskeyCodes = ts.keyCodes; + + $.extend( tscss, { + filterRow : 'tablesorter-filter-row', + filter : 'tablesorter-filter', + filterDisabled : 'disabled', + filterRowHide : 'hideme' + }); + + $.extend( tskeyCodes, { + backSpace : 8, + escape : 27, + space : 32, + left : 37, + down : 40 + }); + + ts.addWidget({ + id: 'filter', + priority: 50, + options : { + filter_cellFilter : '', // css class name added to the filter cell ( string or array ) + filter_childRows : false, // if true, filter includes child row content in the search + filter_childByColumn : false, // ( filter_childRows must be true ) if true = search child rows by column; false = search all child row text grouped + filter_childWithSibs : true, // if true, include matching child row siblings + filter_columnAnyMatch: true, // if true, allows using '#:{query}' in AnyMatch searches ( column:query ) + filter_columnFilters : true, // if true, a filter will be added to the top of each table column + filter_cssFilter : '', // css class name added to the filter row & each input in the row ( tablesorter-filter is ALWAYS added ) + filter_defaultAttrib : 'data-value', // data attribute in the header cell that contains the default filter value + filter_defaultFilter : {}, // add a default column filter type '~{query}' to make fuzzy searches default; '{q1} AND {q2}' to make all searches use a logical AND. + filter_excludeFilter : {}, // filters to exclude, per column + filter_external : '', // jQuery selector string ( or jQuery object ) of external filters + filter_filteredRow : 'filtered', // class added to filtered rows; define in css with "display:none" to hide the filtered-out rows + filter_filterLabel : 'Filter "{{label}}" column by...', // Aria-label added to filter input/select; see #1495 + filter_formatter : null, // add custom filter elements to the filter row + filter_functions : null, // add custom filter functions using this option + filter_hideEmpty : true, // hide filter row when table is empty + filter_hideFilters : false, // collapse filter row when mouse leaves the area + filter_ignoreCase : true, // if true, make all searches case-insensitive + filter_liveSearch : true, // if true, search column content while the user types ( with a delay ) + filter_matchType : { 'input': 'exact', 'select': 'exact' }, // global query settings ('exact' or 'match'); overridden by "filter-match" or "filter-exact" class + filter_onlyAvail : 'filter-onlyAvail', // a header with a select dropdown & this class name will only show available ( visible ) options within the drop down + filter_placeholder : { search : '', select : '' }, // default placeholder text ( overridden by any header 'data-placeholder' setting ) + filter_reset : null, // jQuery selector string of an element used to reset the filters + filter_resetOnEsc : true, // Reset filter input when the user presses escape - normalized across browsers + filter_saveFilters : false, // Use the $.tablesorter.storage utility to save the most recent filters + filter_searchDelay : 300, // typing delay in milliseconds before starting a search + filter_searchFiltered: true, // allow searching through already filtered rows in special circumstances; will speed up searching in large tables if true + filter_selectSource : null, // include a function to return an array of values to be added to the column filter select + filter_selectSourceSeparator : '|', // filter_selectSource array text left of the separator is added to the option value, right into the option text + filter_serversideFiltering : false, // if true, must perform server-side filtering b/c client-side filtering is disabled, but the ui and events will still be used. + filter_startsWith : false, // if true, filter start from the beginning of the cell contents + filter_useParsedData : false // filter all data using parsed content + }, + format: function( table, c, wo ) { + if ( !c.$table.hasClass( 'hasFilters' ) ) { + tsf.init( table, c, wo ); + } + }, + remove: function( table, c, wo, refreshing ) { + var tbodyIndex, $tbody, + $table = c.$table, + $tbodies = c.$tbodies, + events = ( + 'addRows updateCell update updateRows updateComplete appendCache filterReset ' + + 'filterAndSortReset filterFomatterUpdate filterEnd search stickyHeadersInit ' + ).split( ' ' ).join( c.namespace + 'filter ' ); + $table + .removeClass( 'hasFilters' ) + // add filter namespace to all BUT search + .unbind( events.replace( ts.regex.spaces, ' ' ) ) + // remove the filter row even if refreshing, because the column might have been moved + .find( '.' + tscss.filterRow ).remove(); + wo.filter_initialized = false; + if ( refreshing ) { return; } + for ( tbodyIndex = 0; tbodyIndex < $tbodies.length; tbodyIndex++ ) { + $tbody = ts.processTbody( table, $tbodies.eq( tbodyIndex ), true ); // remove tbody + $tbody.children().removeClass( wo.filter_filteredRow ).show(); + ts.processTbody( table, $tbody, false ); // restore tbody + } + if ( wo.filter_reset ) { + $( document ).undelegate( wo.filter_reset, 'click' + c.namespace + 'filter' ); + } + } + }); + + tsf = ts.filter = { + + // regex used in filter 'check' functions - not for general use and not documented + regex: { + regex : /^\/((?:\\\/|[^\/])+)\/([migyu]{0,5})?$/, // regex to test for regex + child : /tablesorter-childRow/, // child row class name; this gets updated in the script + filtered : /filtered/, // filtered (hidden) row class name; updated in the script + type : /undefined|number/, // check type + exact : /(^[\"\'=]+)|([\"\'=]+$)/g, // exact match (allow '==') + operators : /[<>=]/g, // replace operators + query : '(q|query)', // replace filter queries + wild01 : /\?/g, // wild card match 0 or 1 + wild0More : /\*/g, // wild care match 0 or more + quote : /\"/g, + isNeg1 : /(>=?\s*-\d)/, + isNeg2 : /(<=?\s*\d)/ + }, + // function( c, data ) { } + // c = table.config + // data.$row = jQuery object of the row currently being processed + // data.$cells = jQuery object of all cells within the current row + // data.filters = array of filters for all columns ( some may be undefined ) + // data.filter = filter for the current column + // data.iFilter = same as data.filter, except lowercase ( if wo.filter_ignoreCase is true ) + // data.exact = table cell text ( or parsed data if column parser enabled; may be a number & not a string ) + // data.iExact = same as data.exact, except lowercase ( if wo.filter_ignoreCase is true; may be a number & not a string ) + // data.cache = table cell text from cache, so it has been parsed ( & in all lower case if c.ignoreCase is true ) + // data.cacheArray = An array of parsed content from each table cell in the row being processed + // data.index = column index; table = table element ( DOM ) + // data.parsed = array ( by column ) of boolean values ( from filter_useParsedData or 'filter-parsed' class ) + types: { + or : function( c, data, vars ) { + // look for "|", but not if it is inside of a regular expression + if ( ( tsfRegex.orTest.test( data.iFilter ) || tsfRegex.orSplit.test( data.filter ) ) && + // this test for regex has potential to slow down the overall search + !tsfRegex.regex.test( data.filter ) ) { + var indx, filterMatched, query, regex, + // duplicate data but split filter + data2 = $.extend( {}, data ), + filter = data.filter.split( tsfRegex.orSplit ), + iFilter = data.iFilter.split( tsfRegex.orSplit ), + len = filter.length; + for ( indx = 0; indx < len; indx++ ) { + data2.nestedFilters = true; + data2.filter = '' + ( tsf.parseFilter( c, filter[ indx ], data ) || '' ); + data2.iFilter = '' + ( tsf.parseFilter( c, iFilter[ indx ], data ) || '' ); + query = '(' + ( tsf.parseFilter( c, data2.filter, data ) || '' ) + ')'; + try { + // use try/catch, because query may not be a valid regex if "|" is contained within a partial regex search, + // e.g "/(Alex|Aar" -> Uncaught SyntaxError: Invalid regular expression: /(/(Alex)/: Unterminated group + regex = new RegExp( data.isMatch ? query : '^' + query + '$', c.widgetOptions.filter_ignoreCase ? 'i' : '' ); + // filterMatched = data2.filter === '' && indx > 0 ? true + // look for an exact match with the 'or' unless the 'filter-match' class is found + filterMatched = regex.test( data2.exact ) || tsf.processTypes( c, data2, vars ); + if ( filterMatched ) { + return filterMatched; + } + } catch ( error ) { + return null; + } + } + // may be null from processing types + return filterMatched || false; + } + return null; + }, + // Look for an AND or && operator ( logical and ) + and : function( c, data, vars ) { + if ( tsfRegex.andTest.test( data.filter ) ) { + var indx, filterMatched, result, query, regex, + // duplicate data but split filter + data2 = $.extend( {}, data ), + filter = data.filter.split( tsfRegex.andSplit ), + iFilter = data.iFilter.split( tsfRegex.andSplit ), + len = filter.length; + for ( indx = 0; indx < len; indx++ ) { + data2.nestedFilters = true; + data2.filter = '' + ( tsf.parseFilter( c, filter[ indx ], data ) || '' ); + data2.iFilter = '' + ( tsf.parseFilter( c, iFilter[ indx ], data ) || '' ); + query = ( '(' + ( tsf.parseFilter( c, data2.filter, data ) || '' ) + ')' ) + // replace wild cards since /(a*)/i will match anything + .replace( tsfRegex.wild01, '\\S{1}' ).replace( tsfRegex.wild0More, '\\S*' ); + try { + // use try/catch just in case RegExp is invalid + regex = new RegExp( data.isMatch ? query : '^' + query + '$', c.widgetOptions.filter_ignoreCase ? 'i' : '' ); + // look for an exact match with the 'and' unless the 'filter-match' class is found + result = ( regex.test( data2.exact ) || tsf.processTypes( c, data2, vars ) ); + if ( indx === 0 ) { + filterMatched = result; + } else { + filterMatched = filterMatched && result; + } + } catch ( error ) { + return null; + } + } + // may be null from processing types + return filterMatched || false; + } + return null; + }, + // Look for regex + regex: function( c, data ) { + if ( tsfRegex.regex.test( data.filter ) ) { + var matches, + // cache regex per column for optimal speed + regex = data.filter_regexCache[ data.index ] || tsfRegex.regex.exec( data.filter ), + isRegex = regex instanceof RegExp; + try { + if ( !isRegex ) { + // force case insensitive search if ignoreCase option set? + // if ( c.ignoreCase && !regex[2] ) { regex[2] = 'i'; } + data.filter_regexCache[ data.index ] = regex = new RegExp( regex[1], regex[2] ); + } + matches = regex.test( data.exact ); + } catch ( error ) { + matches = false; + } + return matches; + } + return null; + }, + // Look for operators >, >=, < or <= + operators: function( c, data ) { + // ignore empty strings... because '' < 10 is true + if ( tsfRegex.operTest.test( data.iFilter ) && data.iExact !== '' ) { + var cachedValue, result, txt, + table = c.table, + parsed = data.parsed[ data.index ], + query = ts.formatFloat( data.iFilter.replace( tsfRegex.operators, '' ), table ), + parser = c.parsers[ data.index ] || {}, + savedSearch = query; + // parse filter value in case we're comparing numbers ( dates ) + if ( parsed || parser.type === 'numeric' ) { + txt = $.trim( '' + data.iFilter.replace( tsfRegex.operators, '' ) ); + result = tsf.parseFilter( c, txt, data, true ); + query = ( typeof result === 'number' && result !== '' && !isNaN( result ) ) ? result : query; + } + // iExact may be numeric - see issue #149; + // check if cached is defined, because sometimes j goes out of range? ( numeric columns ) + if ( ( parsed || parser.type === 'numeric' ) && !isNaN( query ) && + typeof data.cache !== 'undefined' ) { + cachedValue = data.cache; + } else { + txt = isNaN( data.iExact ) ? data.iExact.replace( ts.regex.nondigit, '' ) : data.iExact; + cachedValue = ts.formatFloat( txt, table ); + } + if ( tsfRegex.gtTest.test( data.iFilter ) ) { + result = tsfRegex.gteTest.test( data.iFilter ) ? cachedValue >= query : cachedValue > query; + } else if ( tsfRegex.ltTest.test( data.iFilter ) ) { + result = tsfRegex.lteTest.test( data.iFilter ) ? cachedValue <= query : cachedValue < query; + } + // keep showing all rows if nothing follows the operator + if ( !result && savedSearch === '' ) { + result = true; + } + return result; + } + return null; + }, + // Look for a not match + notMatch: function( c, data ) { + if ( tsfRegex.notTest.test( data.iFilter ) ) { + var indx, + txt = data.iFilter.replace( '!', '' ), + filter = tsf.parseFilter( c, txt, data ) || ''; + if ( tsfRegex.exact.test( filter ) ) { + // look for exact not matches - see #628 + filter = filter.replace( tsfRegex.exact, '' ); + return filter === '' ? true : $.trim( filter ) !== data.iExact; + } else { + indx = data.iExact.search( $.trim( filter ) ); + return filter === '' ? true : + // return true if not found + data.anyMatch ? indx < 0 : + // return false if found + !( c.widgetOptions.filter_startsWith ? indx === 0 : indx >= 0 ); + } + } + return null; + }, + // Look for quotes or equals to get an exact match; ignore type since iExact could be numeric + exact: function( c, data ) { + /*jshint eqeqeq:false */ + if ( tsfRegex.exact.test( data.iFilter ) ) { + var txt = data.iFilter.replace( tsfRegex.exact, '' ), + filter = tsf.parseFilter( c, txt, data ) || ''; + // eslint-disable-next-line eqeqeq + return data.anyMatch ? $.inArray( filter, data.rowArray ) >= 0 : filter == data.iExact; + } + return null; + }, + // Look for a range ( using ' to ' or ' - ' ) - see issue #166; thanks matzhu! + range : function( c, data ) { + if ( tsfRegex.toTest.test( data.iFilter ) ) { + var result, tmp, range1, range2, + table = c.table, + index = data.index, + parsed = data.parsed[index], + // make sure the dash is for a range and not indicating a negative number + query = data.iFilter.split( tsfRegex.toSplit ); + + tmp = query[0].replace( ts.regex.nondigit, '' ) || ''; + range1 = ts.formatFloat( tsf.parseFilter( c, tmp, data ), table ); + tmp = query[1].replace( ts.regex.nondigit, '' ) || ''; + range2 = ts.formatFloat( tsf.parseFilter( c, tmp, data ), table ); + // parse filter value in case we're comparing numbers ( dates ) + if ( parsed || c.parsers[ index ].type === 'numeric' ) { + result = c.parsers[ index ].format( '' + query[0], table, c.$headers.eq( index ), index ); + range1 = ( result !== '' && !isNaN( result ) ) ? result : range1; + result = c.parsers[ index ].format( '' + query[1], table, c.$headers.eq( index ), index ); + range2 = ( result !== '' && !isNaN( result ) ) ? result : range2; + } + if ( ( parsed || c.parsers[ index ].type === 'numeric' ) && !isNaN( range1 ) && !isNaN( range2 ) ) { + result = data.cache; + } else { + tmp = isNaN( data.iExact ) ? data.iExact.replace( ts.regex.nondigit, '' ) : data.iExact; + result = ts.formatFloat( tmp, table ); + } + if ( range1 > range2 ) { + tmp = range1; range1 = range2; range2 = tmp; // swap + } + return ( result >= range1 && result <= range2 ) || ( range1 === '' || range2 === '' ); + } + return null; + }, + // Look for wild card: ? = single, * = multiple, or | = logical OR + wild : function( c, data ) { + if ( tsfRegex.wildOrTest.test( data.iFilter ) ) { + var query = '' + ( tsf.parseFilter( c, data.iFilter, data ) || '' ); + // look for an exact match with the 'or' unless the 'filter-match' class is found + if ( !tsfRegex.wildTest.test( query ) && data.nestedFilters ) { + query = data.isMatch ? query : '^(' + query + ')$'; + } + // parsing the filter may not work properly when using wildcards =/ + try { + return new RegExp( + query.replace( tsfRegex.wild01, '\\S{1}' ).replace( tsfRegex.wild0More, '\\S*' ), + c.widgetOptions.filter_ignoreCase ? 'i' : '' + ) + .test( data.exact ); + } catch ( error ) { + return null; + } + } + return null; + }, + // fuzzy text search; modified from https://github.com/mattyork/fuzzy ( MIT license ) + fuzzy: function( c, data ) { + if ( tsfRegex.fuzzyTest.test( data.iFilter ) ) { + var indx, + patternIndx = 0, + len = data.iExact.length, + txt = data.iFilter.slice( 1 ), + pattern = tsf.parseFilter( c, txt, data ) || ''; + for ( indx = 0; indx < len; indx++ ) { + if ( data.iExact[ indx ] === pattern[ patternIndx ] ) { + patternIndx += 1; + } + } + return patternIndx === pattern.length; + } + return null; + } + }, + init: function( table ) { + // filter language options + ts.language = $.extend( true, {}, { + to : 'to', + or : 'or', + and : 'and' + }, ts.language ); + + var options, string, txt, $header, column, val, fxn, noSelect, + c = table.config, + wo = c.widgetOptions, + processStr = function(prefix, str, suffix) { + str = str.trim(); + // don't include prefix/suffix if str is empty + return str === '' ? '' : (prefix || '') + str + (suffix || ''); + }; + c.$table.addClass( 'hasFilters' ); + c.lastSearch = []; + + // define timers so using clearTimeout won't cause an undefined error + wo.filter_searchTimer = null; + wo.filter_initTimer = null; + wo.filter_formatterCount = 0; + wo.filter_formatterInit = []; + wo.filter_anyColumnSelector = '[data-column="all"],[data-column="any"]'; + wo.filter_multipleColumnSelector = '[data-column*="-"],[data-column*=","]'; + + val = '\\{' + tsfRegex.query + '\\}'; + $.extend( tsfRegex, { + child : new RegExp( c.cssChildRow ), + filtered : new RegExp( wo.filter_filteredRow ), + alreadyFiltered : new RegExp( '(\\s+(-' + processStr('|', ts.language.or) + processStr('|', ts.language.to) + ')\\s+)', 'i' ), + toTest : new RegExp( '\\s+(-' + processStr('|', ts.language.to) + ')\\s+', 'i' ), + toSplit : new RegExp( '(?:\\s+(?:-' + processStr('|', ts.language.to) + ')\\s+)', 'gi' ), + andTest : new RegExp( '\\s+(' + processStr('', ts.language.and, '|') + '&&)\\s+', 'i' ), + andSplit : new RegExp( '(?:\\s+(?:' + processStr('', ts.language.and, '|') + '&&)\\s+)', 'gi' ), + orTest : new RegExp( '(\\|' + processStr('|\\s+', ts.language.or, '\\s+') + ')', 'i' ), + orSplit : new RegExp( '(?:\\|' + processStr('|\\s+(?:', ts.language.or, ')\\s+') + ')', 'gi' ), + iQuery : new RegExp( val, 'i' ), + igQuery : new RegExp( val, 'ig' ), + operTest : /^[<>]=?/, + gtTest : />/, + gteTest : />=/, + ltTest : /' + + ( $header.data( 'placeholder' ) || + $header.attr( 'data-placeholder' ) || + wo.filter_placeholder.select || + '' + ) + + '' : ''; + val = string; + txt = string; + if ( string.indexOf( wo.filter_selectSourceSeparator ) >= 0 ) { + val = string.split( wo.filter_selectSourceSeparator ); + txt = val[1]; + val = val[0]; + } + options += ''; + } + } + c.$table + .find( 'thead' ) + .find( 'select.' + tscss.filter + '[data-column="' + column + '"]' ) + .append( options ); + txt = wo.filter_selectSource; + fxn = typeof txt === 'function' ? true : ts.getColumnData( table, txt, column ); + if ( fxn ) { + // updating so the extra options are appended + tsf.buildSelect( c.table, column, '', true, $header.hasClass( wo.filter_onlyAvail ) ); + } + } + } + } + } + // not really updating, but if the column has both the 'filter-select' class & + // filter_functions set to true, it would append the same options twice. + tsf.buildDefault( table, true ); + + tsf.bindSearch( table, c.$table.find( '.' + tscss.filter ), true ); + if ( wo.filter_external ) { + tsf.bindSearch( table, wo.filter_external ); + } + + if ( wo.filter_hideFilters ) { + tsf.hideFilters( c ); + } + + // show processing icon + if ( c.showProcessing ) { + txt = 'filterStart filterEnd '.split( ' ' ).join( c.namespace + 'filter-sp ' ); + c.$table + .unbind( txt.replace( ts.regex.spaces, ' ' ) ) + .bind( txt, function( event, columns ) { + // only add processing to certain columns to all columns + $header = ( columns ) ? + c.$table + .find( '.' + tscss.header ) + .filter( '[data-column]' ) + .filter( function() { + return columns[ $( this ).data( 'column' ) ] !== ''; + }) : ''; + ts.isProcessing( table, event.type === 'filterStart', columns ? $header : '' ); + }); + } + + // set filtered rows count ( intially unfiltered ) + c.filteredRows = c.totalRows; + + // add default values + txt = 'tablesorter-initialized pagerBeforeInitialized '.split( ' ' ).join( c.namespace + 'filter ' ); + c.$table + .unbind( txt.replace( ts.regex.spaces, ' ' ) ) + .bind( txt, function() { + tsf.completeInit( this ); + }); + // if filter widget is added after pager has initialized; then set filter init flag + if ( c.pager && c.pager.initialized && !wo.filter_initialized ) { + c.$table.triggerHandler( 'filterFomatterUpdate' ); + setTimeout( function() { + tsf.filterInitComplete( c ); + }, 100 ); + } else if ( !wo.filter_initialized ) { + tsf.completeInit( table ); + } + }, + completeInit: function( table ) { + // redefine 'c' & 'wo' so they update properly inside this callback + var c = table.config, + wo = c.widgetOptions, + filters = tsf.setDefaults( table, c, wo ) || []; + if ( filters.length ) { + // prevent delayInit from triggering a cache build if filters are empty + if ( !( c.delayInit && filters.join( '' ) === '' ) ) { + ts.setFilters( table, filters, true ); + } + } + c.$table.triggerHandler( 'filterFomatterUpdate' ); + // trigger init after setTimeout to prevent multiple filterStart/End/Init triggers + setTimeout( function() { + if ( !wo.filter_initialized ) { + tsf.filterInitComplete( c ); + } + }, 100 ); + }, + + // $cell parameter, but not the config, is passed to the filter_formatters, + // so we have to work with it instead + formatterUpdated: function( $cell, column ) { + // prevent error if $cell is undefined - see #1056 + var $table = $cell && $cell.closest( 'table' ); + var config = $table.length && $table[0].config, + wo = config && config.widgetOptions; + if ( wo && !wo.filter_initialized ) { + // add updates by column since this function + // may be called numerous times before initialization + wo.filter_formatterInit[ column ] = 1; + } + }, + filterInitComplete: function( c ) { + var indx, len, + wo = c.widgetOptions, + count = 0, + completed = function() { + wo.filter_initialized = true; + // update lastSearch - it gets cleared often + c.lastSearch = c.$table.data( 'lastSearch' ); + c.$table.triggerHandler( 'filterInit', c ); + tsf.findRows( c.table, c.lastSearch || [] ); + if (ts.debug(c, 'filter')) { + console.log('Filter >> Widget initialized'); + } + }; + if ( $.isEmptyObject( wo.filter_formatter ) ) { + completed(); + } else { + len = wo.filter_formatterInit.length; + for ( indx = 0; indx < len; indx++ ) { + if ( wo.filter_formatterInit[ indx ] === 1 ) { + count++; + } + } + clearTimeout( wo.filter_initTimer ); + if ( !wo.filter_initialized && count === wo.filter_formatterCount ) { + // filter widget initialized + completed(); + } else if ( !wo.filter_initialized ) { + // fall back in case a filter_formatter doesn't call + // $.tablesorter.filter.formatterUpdated( $cell, column ), and the count is off + wo.filter_initTimer = setTimeout( function() { + completed(); + }, 500 ); + } + } + }, + // encode or decode filters for storage; see #1026 + processFilters: function( filters, encode ) { + var indx, + // fixes #1237; previously returning an encoded "filters" value + result = [], + mode = encode ? encodeURIComponent : decodeURIComponent, + len = filters.length; + for ( indx = 0; indx < len; indx++ ) { + if ( filters[ indx ] ) { + result[ indx ] = mode( filters[ indx ] ); + } + } + return result; + }, + setDefaults: function( table, c, wo ) { + var isArray, saved, indx, col, $filters, + // get current ( default ) filters + filters = ts.getFilters( table ) || []; + if ( wo.filter_saveFilters && ts.storage ) { + saved = ts.storage( table, 'tablesorter-filters' ) || []; + isArray = $.isArray( saved ); + // make sure we're not just getting an empty array + if ( !( isArray && saved.join( '' ) === '' || !isArray ) ) { + filters = tsf.processFilters( saved ); + } + } + // if no filters saved, then check default settings + if ( filters.join( '' ) === '' ) { + // allow adding default setting to external filters + $filters = c.$headers.add( wo.filter_$externalFilters ) + .filter( '[' + wo.filter_defaultAttrib + ']' ); + for ( indx = 0; indx <= c.columns; indx++ ) { + // include data-column='all' external filters + col = indx === c.columns ? 'all' : indx; + filters[ indx ] = $filters + .filter( '[data-column="' + col + '"]' ) + .attr( wo.filter_defaultAttrib ) || filters[indx] || ''; + } + } + c.$table.data( 'lastSearch', filters ); + return filters; + }, + parseFilter: function( c, filter, data, parsed ) { + return parsed || data.parsed[ data.index ] ? + c.parsers[ data.index ].format( filter, c.table, [], data.index ) : + filter; + }, + buildRow: function( table, c, wo ) { + var $filter, col, column, $header, makeSelect, disabled, name, ffxn, tmp, + // c.columns defined in computeThIndexes() + cellFilter = wo.filter_cellFilter, + columns = c.columns, + arry = $.isArray( cellFilter ), + buildFilter = ''; + for ( column = 0; column < columns; column++ ) { + if ( c.$headerIndexed[ column ].length ) { + // account for entire column set with colspan. See #1047 + tmp = c.$headerIndexed[ column ] && c.$headerIndexed[ column ][0].colSpan || 0; + if ( tmp > 1 ) { + buildFilter += '' ).appendTo( $filter ); + } else { + ffxn = ts.getColumnData( table, wo.filter_formatter, column ); + if ( ffxn ) { + wo.filter_formatterCount++; + buildFilter = ffxn( $filter, column ); + // no element returned, so lets go find it + if ( buildFilter && buildFilter.length === 0 ) { + buildFilter = $filter.children( 'input' ); + } + // element not in DOM, so lets attach it + if ( buildFilter && ( buildFilter.parent().length === 0 || + ( buildFilter.parent().length && buildFilter.parent()[0] !== $filter[0] ) ) ) { + $filter.append( buildFilter ); + } + } else { + buildFilter = $( '' ).appendTo( $filter ); + } + if ( buildFilter ) { + tmp = $header.data( 'placeholder' ) || + $header.attr( 'data-placeholder' ) || + wo.filter_placeholder.search || ''; + buildFilter.attr( 'placeholder', tmp ); + } + } + if ( buildFilter ) { + // add filter class name + name = ( $.isArray( wo.filter_cssFilter ) ? + ( typeof wo.filter_cssFilter[column] !== 'undefined' ? wo.filter_cssFilter[column] || '' : '' ) : + wo.filter_cssFilter ) || ''; + // copy data-column from table cell (it will include colspan) + buildFilter.addClass( tscss.filter + ' ' + name ); + name = wo.filter_filterLabel; + tmp = name.match(/{{([^}]+?)}}/g); + if (!tmp) { + tmp = [ '{{label}}' ]; + } + $.each(tmp, function(indx, attr) { + var regex = new RegExp(attr, 'g'), + data = $header.attr('data-' + attr.replace(/{{|}}/g, '')), + text = typeof data === 'undefined' ? $header.text() : data; + name = name.replace( regex, $.trim( text ) ); + }); + buildFilter.attr({ + 'data-column': $filter.attr( 'data-column' ), + 'aria-label': name + }); + if ( disabled ) { + buildFilter.attr( 'placeholder', '' ).addClass( tscss.filterDisabled )[0].disabled = true; + } + } + } + } + }, + bindSearch: function( table, $el, internal ) { + table = $( table )[0]; + $el = $( $el ); // allow passing a selector string + if ( !$el.length ) { return; } + var tmp, + c = table.config, + wo = c.widgetOptions, + namespace = c.namespace + 'filter', + $ext = wo.filter_$externalFilters; + if ( internal !== true ) { + // save anyMatch element + tmp = wo.filter_anyColumnSelector + ',' + wo.filter_multipleColumnSelector; + wo.filter_$anyMatch = $el.filter( tmp ); + if ( $ext && $ext.length ) { + wo.filter_$externalFilters = wo.filter_$externalFilters.add( $el ); + } else { + wo.filter_$externalFilters = $el; + } + // update values ( external filters added after table initialization ) + ts.setFilters( table, c.$table.data( 'lastSearch' ) || [], internal === false ); + } + // unbind events + tmp = ( 'keypress keyup keydown search change input '.split( ' ' ).join( namespace + ' ' ) ); + $el + // use data attribute instead of jQuery data since the head is cloned without including + // the data/binding + .attr( 'data-lastSearchTime', new Date().getTime() ) + .unbind( tmp.replace( ts.regex.spaces, ' ' ) ) + .bind( 'keydown' + namespace, function( event ) { + if ( event.which === tskeyCodes.escape && !table.config.widgetOptions.filter_resetOnEsc ) { + // prevent keypress event + return false; + } + }) + .bind( 'keyup' + namespace, function( event ) { + wo = table.config.widgetOptions; // make sure "wo" isn't cached + var column = parseInt( $( this ).attr( 'data-column' ), 10 ), + liveSearch = typeof wo.filter_liveSearch === 'boolean' ? wo.filter_liveSearch : + ts.getColumnData( table, wo.filter_liveSearch, column ); + if ( typeof liveSearch === 'undefined' ) { + liveSearch = wo.filter_liveSearch.fallback || false; + } + $( this ).attr( 'data-lastSearchTime', new Date().getTime() ); + // emulate what webkit does.... escape clears the filter + if ( event.which === tskeyCodes.escape ) { + // make sure to restore the last value on escape + this.value = wo.filter_resetOnEsc ? '' : c.lastSearch[column]; + // don't return if the search value is empty ( all rows need to be revealed ) + } else if ( this.value !== '' && ( + // liveSearch can contain a min value length; ignore arrow and meta keys, but allow backspace + ( typeof liveSearch === 'number' && this.value.length < liveSearch ) || + // let return & backspace continue on, but ignore arrows & non-valid characters + ( event.which !== tskeyCodes.enter && event.which !== tskeyCodes.backSpace && + ( event.which < tskeyCodes.space || ( event.which >= tskeyCodes.left && event.which <= tskeyCodes.down ) ) ) ) ) { + return; + // live search + } else if ( liveSearch === false ) { + if ( this.value !== '' && event.which !== tskeyCodes.enter ) { + return; + } + } + // change event = no delay; last true flag tells getFilters to skip newest timed input + tsf.searching( table, true, true, column ); + }) + // include change for select - fixes #473 + .bind( 'search change keypress input blur '.split( ' ' ).join( namespace + ' ' ), function( event ) { + // don't get cached data, in case data-column changes dynamically + var column = parseInt( $( this ).attr( 'data-column' ), 10 ), + eventType = event.type, + liveSearch = typeof wo.filter_liveSearch === 'boolean' ? + wo.filter_liveSearch : + ts.getColumnData( table, wo.filter_liveSearch, column ); + if ( table.config.widgetOptions.filter_initialized && + // immediate search if user presses enter + ( event.which === tskeyCodes.enter || + // immediate search if a "search" or "blur" is triggered on the input + ( eventType === 'search' || eventType === 'blur' ) || + // change & input events must be ignored if liveSearch !== true + ( eventType === 'change' || eventType === 'input' ) && + // prevent search if liveSearch is a number + ( liveSearch === true || liveSearch !== true && event.target.nodeName !== 'INPUT' ) && + // don't allow 'change' or 'input' event to process if the input value + // is the same - fixes #685 + this.value !== c.lastSearch[column] + ) + ) { + event.preventDefault(); + // init search with no delay + $( this ).attr( 'data-lastSearchTime', new Date().getTime() ); + tsf.searching( table, eventType !== 'keypress' || event.which === tskeyCodes.enter, true, column ); + } + }); + }, + searching: function( table, filter, skipFirst, column ) { + var liveSearch, + wo = table.config.widgetOptions; + if (typeof column === 'undefined') { + // no delay + liveSearch = false; + } else { + liveSearch = typeof wo.filter_liveSearch === 'boolean' ? + wo.filter_liveSearch : + // get column setting, or set to fallback value, or default to false + ts.getColumnData( table, wo.filter_liveSearch, column ); + if ( typeof liveSearch === 'undefined' ) { + liveSearch = wo.filter_liveSearch.fallback || false; + } + } + clearTimeout( wo.filter_searchTimer ); + if ( typeof filter === 'undefined' || filter === true ) { + // delay filtering + wo.filter_searchTimer = setTimeout( function() { + tsf.checkFilters( table, filter, skipFirst ); + }, liveSearch ? wo.filter_searchDelay : 10 ); + } else { + // skip delay + tsf.checkFilters( table, filter, skipFirst ); + } + }, + equalFilters: function (c, filter1, filter2) { + var indx, + f1 = [], + f2 = [], + len = c.columns + 1; // add one to include anyMatch filter + filter1 = $.isArray(filter1) ? filter1 : []; + filter2 = $.isArray(filter2) ? filter2 : []; + for (indx = 0; indx < len; indx++) { + f1[indx] = filter1[indx] || ''; + f2[indx] = filter2[indx] || ''; + } + return f1.join(',') === f2.join(','); + }, + checkFilters: function( table, filter, skipFirst ) { + var c = table.config, + wo = c.widgetOptions, + filterArray = $.isArray( filter ), + filters = ( filterArray ) ? filter : ts.getFilters( table, true ), + currentFilters = filters || []; // current filter values + // prevent errors if delay init is set + if ( $.isEmptyObject( c.cache ) ) { + // update cache if delayInit set & pager has initialized ( after user initiates a search ) + if ( c.delayInit && ( !c.pager || c.pager && c.pager.initialized ) ) { + ts.updateCache( c, function() { + tsf.checkFilters( table, false, skipFirst ); + }); + } + return; + } + // add filter array back into inputs + if ( filterArray ) { + ts.setFilters( table, filters, false, skipFirst !== true ); + if ( !wo.filter_initialized ) { + c.lastSearch = []; + c.lastCombinedFilter = ''; + } + } + if ( wo.filter_hideFilters ) { + // show/hide filter row as needed + c.$table + .find( '.' + tscss.filterRow ) + .triggerHandler( tsf.hideFiltersCheck( c ) ? 'mouseleave' : 'mouseenter' ); + } + // return if the last search is the same; but filter === false when updating the search + // see example-widget-filter.html filter toggle buttons + if ( tsf.equalFilters(c, c.lastSearch, currentFilters) ) { + if ( filter !== false ) { + return; + } else { + // force filter refresh + c.lastCombinedFilter = ''; + c.lastSearch = []; + } + } + // define filter inside it is false + filters = filters || []; + // convert filters to strings - see #1070 + filters = Array.prototype.map ? + filters.map( String ) : + // for IE8 & older browsers - maybe not the best method + filters.join( '\ufffd' ).split( '\ufffd' ); + + if ( wo.filter_initialized ) { + c.$table.triggerHandler( 'filterStart', [ filters ] ); + } + if ( c.showProcessing ) { + // give it time for the processing icon to kick in + setTimeout( function() { + tsf.findRows( table, filters, currentFilters ); + return false; + }, 30 ); + } else { + tsf.findRows( table, filters, currentFilters ); + return false; + } + }, + hideFiltersCheck: function( c ) { + if (typeof c.widgetOptions.filter_hideFilters === 'function') { + var val = c.widgetOptions.filter_hideFilters( c ); + if (typeof val === 'boolean') { + return val; + } + } + return ts.getFilters( c.$table ).join( '' ) === ''; + }, + hideFilters: function( c, $table ) { + var timer; + ( $table || c.$table ) + .find( '.' + tscss.filterRow ) + .addClass( tscss.filterRowHide ) + .bind( 'mouseenter mouseleave', function( e ) { + // save event object - http://bugs.jquery.com/ticket/12140 + var event = e, + $row = $( this ); + clearTimeout( timer ); + timer = setTimeout( function() { + if ( /enter|over/.test( event.type ) ) { + $row.removeClass( tscss.filterRowHide ); + } else { + // don't hide if input has focus + // $( ':focus' ) needs jQuery 1.6+ + if ( $( document.activeElement ).closest( 'tr' )[0] !== $row[0] ) { + // don't hide row if any filter has a value + $row.toggleClass( tscss.filterRowHide, tsf.hideFiltersCheck( c ) ); + } + } + }, 200 ); + }) + .find( 'input, select' ).bind( 'focus blur', function( e ) { + var event = e, + $row = $( this ).closest( 'tr' ); + clearTimeout( timer ); + timer = setTimeout( function() { + clearTimeout( timer ); + // don't hide row if any filter has a value + $row.toggleClass( tscss.filterRowHide, tsf.hideFiltersCheck( c ) && event.type !== 'focus' ); + }, 200 ); + }); + }, + defaultFilter: function( filter, mask ) { + if ( filter === '' ) { return filter; } + var regex = tsfRegex.iQuery, + maskLen = mask.match( tsfRegex.igQuery ).length, + query = maskLen > 1 ? $.trim( filter ).split( /\s/ ) : [ $.trim( filter ) ], + len = query.length - 1, + indx = 0, + val = mask; + if ( len < 1 && maskLen > 1 ) { + // only one 'word' in query but mask has >1 slots + query[1] = query[0]; + } + // replace all {query} with query words... + // if query = 'Bob', then convert mask from '!{query}' to '!Bob' + // if query = 'Bob Joe Frank', then convert mask '{q} OR {q}' to 'Bob OR Joe OR Frank' + while ( regex.test( val ) ) { + val = val.replace( regex, query[indx++] || '' ); + if ( regex.test( val ) && indx < len && ( query[indx] || '' ) !== '' ) { + val = mask.replace( regex, val ); + } + } + return val; + }, + getLatestSearch: function( $input ) { + if ( $input ) { + return $input.sort( function( a, b ) { + return $( b ).attr( 'data-lastSearchTime' ) - $( a ).attr( 'data-lastSearchTime' ); + }); + } + return $input || $(); + }, + findRange: function( c, val, ignoreRanges ) { + // look for multiple columns '1-3,4-6,8' in data-column + var temp, ranges, range, start, end, singles, i, indx, len, + columns = []; + if ( /^[0-9]+$/.test( val ) ) { + // always return an array + return [ parseInt( val, 10 ) ]; + } + // process column range + if ( !ignoreRanges && /-/.test( val ) ) { + ranges = val.match( /(\d+)\s*-\s*(\d+)/g ); + len = ranges ? ranges.length : 0; + for ( indx = 0; indx < len; indx++ ) { + range = ranges[indx].split( /\s*-\s*/ ); + start = parseInt( range[0], 10 ) || 0; + end = parseInt( range[1], 10 ) || ( c.columns - 1 ); + if ( start > end ) { + temp = start; start = end; end = temp; // swap + } + if ( end >= c.columns ) { + end = c.columns - 1; + } + for ( ; start <= end; start++ ) { + columns[ columns.length ] = start; + } + // remove processed range from val + val = val.replace( ranges[ indx ], '' ); + } + } + // process single columns + if ( !ignoreRanges && /,/.test( val ) ) { + singles = val.split( /\s*,\s*/ ); + len = singles.length; + for ( i = 0; i < len; i++ ) { + if ( singles[ i ] !== '' ) { + indx = parseInt( singles[ i ], 10 ); + if ( indx < c.columns ) { + columns[ columns.length ] = indx; + } + } + } + } + // return all columns + if ( !columns.length ) { + for ( indx = 0; indx < c.columns; indx++ ) { + columns[ columns.length ] = indx; + } + } + return columns; + }, + getColumnElm: function( c, $elements, column ) { + // data-column may contain multiple columns '1-3,5-6,8' + // replaces: c.$filters.filter( '[data-column="' + column + '"]' ); + return $elements.filter( function() { + var cols = tsf.findRange( c, $( this ).attr( 'data-column' ) ); + return $.inArray( column, cols ) > -1; + }); + }, + multipleColumns: function( c, $input ) { + // look for multiple columns '1-3,4-6,8' in data-column + var wo = c.widgetOptions, + // only target 'all' column inputs on initialization + // & don't target 'all' column inputs if they don't exist + targets = wo.filter_initialized || !$input.filter( wo.filter_anyColumnSelector ).length, + val = $.trim( tsf.getLatestSearch( $input ).attr( 'data-column' ) || '' ); + return tsf.findRange( c, val, !targets ); + }, + processTypes: function( c, data, vars ) { + var ffxn, + filterMatched = null, + matches = null; + for ( ffxn in tsf.types ) { + if ( $.inArray( ffxn, vars.excludeMatch ) < 0 && matches === null ) { + matches = tsf.types[ffxn]( c, data, vars ); + if ( matches !== null ) { + data.matchedOn = ffxn; + filterMatched = matches; + } + } + } + return filterMatched; + }, + matchType: function( c, columnIndex ) { + var isMatch, + wo = c.widgetOptions, + $el = c.$headerIndexed[ columnIndex ]; + // filter-exact > filter-match > filter_matchType for type + if ( $el.hasClass( 'filter-exact' ) ) { + isMatch = false; + } else if ( $el.hasClass( 'filter-match' ) ) { + isMatch = true; + } else { + // filter-select is not applied when filter_functions are used, so look for a select + if ( wo.filter_columnFilters ) { + $el = c.$filters + .find( '.' + tscss.filter ) + .add( wo.filter_$externalFilters ) + .filter( '[data-column="' + columnIndex + '"]' ); + } else if ( wo.filter_$externalFilters ) { + $el = wo.filter_$externalFilters.filter( '[data-column="' + columnIndex + '"]' ); + } + isMatch = $el.length ? + c.widgetOptions.filter_matchType[ ( $el[ 0 ].nodeName || '' ).toLowerCase() ] === 'match' : + // default to exact, if no inputs found + false; + } + return isMatch; + }, + processRow: function( c, data, vars ) { + var result, filterMatched, + fxn, ffxn, txt, + wo = c.widgetOptions, + showRow = true, + hasAnyMatchInput = wo.filter_$anyMatch && wo.filter_$anyMatch.length, + + // if wo.filter_$anyMatch data-column attribute is changed dynamically + // we don't want to do an "anyMatch" search on one column using data + // for the entire row - see #998 + columnIndex = wo.filter_$anyMatch && wo.filter_$anyMatch.length ? + // look for multiple columns '1-3,4-6,8' + tsf.multipleColumns( c, wo.filter_$anyMatch ) : + []; + data.$cells = data.$row.children(); + data.matchedOn = null; + if ( data.anyMatchFlag && columnIndex.length > 1 || ( data.anyMatchFilter && !hasAnyMatchInput ) ) { + data.anyMatch = true; + data.isMatch = true; + data.rowArray = data.$cells.map( function( i ) { + if ( $.inArray( i, columnIndex ) > -1 || ( data.anyMatchFilter && !hasAnyMatchInput ) ) { + if ( data.parsed[ i ] ) { + txt = data.cacheArray[ i ]; + } else { + txt = data.rawArray[ i ]; + txt = $.trim( wo.filter_ignoreCase ? txt.toLowerCase() : txt ); + if ( c.sortLocaleCompare ) { + txt = ts.replaceAccents( txt ); + } + } + return txt; + } + }).get(); + data.filter = data.anyMatchFilter; + data.iFilter = data.iAnyMatchFilter; + data.exact = data.rowArray.join( ' ' ); + data.iExact = wo.filter_ignoreCase ? data.exact.toLowerCase() : data.exact; + data.cache = data.cacheArray.slice( 0, -1 ).join( ' ' ); + vars.excludeMatch = vars.noAnyMatch; + filterMatched = tsf.processTypes( c, data, vars ); + if ( filterMatched !== null ) { + showRow = filterMatched; + } else { + if ( wo.filter_startsWith ) { + showRow = false; + // data.rowArray may not contain all columns + columnIndex = Math.min( c.columns, data.rowArray.length ); + while ( !showRow && columnIndex > 0 ) { + columnIndex--; + showRow = showRow || data.rowArray[ columnIndex ].indexOf( data.iFilter ) === 0; + } + } else { + showRow = ( data.iExact + data.childRowText ).indexOf( data.iFilter ) >= 0; + } + } + data.anyMatch = false; + // no other filters to process + if ( data.filters.join( '' ) === data.filter ) { + return showRow; + } + } + + for ( columnIndex = 0; columnIndex < c.columns; columnIndex++ ) { + data.filter = data.filters[ columnIndex ]; + data.index = columnIndex; + + // filter types to exclude, per column + vars.excludeMatch = vars.excludeFilter[ columnIndex ]; + + // ignore if filter is empty or disabled + if ( data.filter ) { + data.cache = data.cacheArray[ columnIndex ]; + result = data.parsed[ columnIndex ] ? data.cache : data.rawArray[ columnIndex ] || ''; + data.exact = c.sortLocaleCompare ? ts.replaceAccents( result ) : result; // issue #405 + data.iExact = !tsfRegex.type.test( typeof data.exact ) && wo.filter_ignoreCase ? + data.exact.toLowerCase() : data.exact; + data.isMatch = tsf.matchType( c, columnIndex ); + + result = showRow; // if showRow is true, show that row + + // in case select filter option has a different value vs text 'a - z|A through Z' + ffxn = wo.filter_columnFilters ? + c.$filters.add( wo.filter_$externalFilters ) + .filter( '[data-column="' + columnIndex + '"]' ) + .find( 'select option:selected' ) + .attr( 'data-function-name' ) || '' : ''; + // replace accents - see #357 + if ( c.sortLocaleCompare ) { + data.filter = ts.replaceAccents( data.filter ); + } + + // replace column specific default filters - see #1088 + if ( wo.filter_defaultFilter && tsfRegex.iQuery.test( vars.defaultColFilter[ columnIndex ] ) ) { + data.filter = tsf.defaultFilter( data.filter, vars.defaultColFilter[ columnIndex ] ); + } + + // data.iFilter = case insensitive ( if wo.filter_ignoreCase is true ), + // data.filter = case sensitive + data.iFilter = wo.filter_ignoreCase ? ( data.filter || '' ).toLowerCase() : data.filter; + fxn = vars.functions[ columnIndex ]; + filterMatched = null; + if ( fxn ) { + if ( typeof fxn === 'function' ) { + // filter callback( exact cell content, parser normalized content, + // filter input value, column index, jQuery row object ) + filterMatched = fxn( data.exact, data.cache, data.filter, columnIndex, data.$row, c, data ); + } else if ( typeof fxn[ ffxn || data.filter ] === 'function' ) { + // selector option function + txt = ffxn || data.filter; + filterMatched = + fxn[ txt ]( data.exact, data.cache, data.filter, columnIndex, data.$row, c, data ); + } + } + if ( filterMatched === null ) { + // cycle through the different filters + // filters return a boolean or null if nothing matches + filterMatched = tsf.processTypes( c, data, vars ); + // select with exact match; ignore "and" or "or" within the text; fixes #1486 + txt = fxn === true && (data.matchedOn === 'and' || data.matchedOn === 'or'); + if ( filterMatched !== null && !txt) { + result = filterMatched; + // Look for match, and add child row data for matching + } else { + // check fxn (filter-select in header) after filter types are checked + // without this, the filter + jQuery UI selectmenu demo was breaking + if ( fxn === true ) { + // default selector uses exact match unless 'filter-match' class is found + result = data.isMatch ? + // data.iExact may be a number + ( '' + data.iExact ).search( data.iFilter ) >= 0 : + data.filter === data.exact; + } else { + txt = ( data.iExact + data.childRowText ).indexOf( tsf.parseFilter( c, data.iFilter, data ) ); + result = ( ( !wo.filter_startsWith && txt >= 0 ) || ( wo.filter_startsWith && txt === 0 ) ); + } + } + } else { + result = filterMatched; + } + showRow = ( result ) ? showRow : false; + } + } + return showRow; + }, + findRows: function( table, filters, currentFilters ) { + if ( + tsf.equalFilters(table.config, table.config.lastSearch, currentFilters) || + !table.config.widgetOptions.filter_initialized + ) { + return; + } + var len, norm_rows, rowData, $rows, $row, rowIndex, tbodyIndex, $tbody, columnIndex, + isChild, childRow, lastSearch, showRow, showParent, time, val, indx, + notFiltered, searchFiltered, query, injected, res, id, txt, + storedFilters = $.extend( [], filters ), + c = table.config, + wo = c.widgetOptions, + debug = ts.debug(c, 'filter'), + // data object passed to filters; anyMatch is a flag for the filters + data = { + anyMatch: false, + filters: filters, + // regex filter type cache + filter_regexCache : [] + }, + vars = { + // anyMatch really screws up with these types of filters + noAnyMatch: [ 'range', 'operators' ], + // cache filter variables that use ts.getColumnData in the main loop + functions : [], + excludeFilter : [], + defaultColFilter : [], + defaultAnyFilter : ts.getColumnData( table, wo.filter_defaultFilter, c.columns, true ) || '' + }; + // parse columns after formatter, in case the class is added at that point + data.parsed = []; + for ( columnIndex = 0; columnIndex < c.columns; columnIndex++ ) { + data.parsed[ columnIndex ] = wo.filter_useParsedData || + // parser has a "parsed" parameter + ( c.parsers && c.parsers[ columnIndex ] && c.parsers[ columnIndex ].parsed || + // getData may not return 'parsed' if other 'filter-' class names exist + // ( e.g. ) + ts.getData && ts.getData( c.$headerIndexed[ columnIndex ], + ts.getColumnData( table, c.headers, columnIndex ), 'filter' ) === 'parsed' || + c.$headerIndexed[ columnIndex ].hasClass( 'filter-parsed' ) ); + + vars.functions[ columnIndex ] = + ts.getColumnData( table, wo.filter_functions, columnIndex ) || + c.$headerIndexed[ columnIndex ].hasClass( 'filter-select' ); + vars.defaultColFilter[ columnIndex ] = + ts.getColumnData( table, wo.filter_defaultFilter, columnIndex ) || ''; + vars.excludeFilter[ columnIndex ] = + ( ts.getColumnData( table, wo.filter_excludeFilter, columnIndex, true ) || '' ).split( /\s+/ ); + } + + if ( debug ) { + console.log( 'Filter >> Starting filter widget search', filters ); + time = new Date(); + } + // filtered rows count + c.filteredRows = 0; + c.totalRows = 0; + currentFilters = ( storedFilters || [] ); + + for ( tbodyIndex = 0; tbodyIndex < c.$tbodies.length; tbodyIndex++ ) { + $tbody = ts.processTbody( table, c.$tbodies.eq( tbodyIndex ), true ); + // skip child rows & widget added ( removable ) rows - fixes #448 thanks to @hempel! + // $rows = $tbody.children( 'tr' ).not( c.selectorRemove ); + columnIndex = c.columns; + // convert stored rows into a jQuery object + norm_rows = c.cache[ tbodyIndex ].normalized; + $rows = $( $.map( norm_rows, function( el ) { + return el[ columnIndex ].$row.get(); + }) ); + + if ( currentFilters.join('') === '' || wo.filter_serversideFiltering ) { + $rows + .removeClass( wo.filter_filteredRow ) + .not( '.' + c.cssChildRow ) + .css( 'display', '' ); + } else { + // filter out child rows + $rows = $rows.not( '.' + c.cssChildRow ); + len = $rows.length; + + if ( ( wo.filter_$anyMatch && wo.filter_$anyMatch.length ) || + typeof filters[c.columns] !== 'undefined' ) { + data.anyMatchFlag = true; + data.anyMatchFilter = '' + ( + filters[ c.columns ] || + wo.filter_$anyMatch && tsf.getLatestSearch( wo.filter_$anyMatch ).val() || + '' + ); + if ( wo.filter_columnAnyMatch ) { + // specific columns search + query = data.anyMatchFilter.split( tsfRegex.andSplit ); + injected = false; + for ( indx = 0; indx < query.length; indx++ ) { + res = query[ indx ].split( ':' ); + if ( res.length > 1 ) { + // make the column a one-based index ( non-developers start counting from one :P ) + if ( isNaN( res[0] ) ) { + $.each( c.headerContent, function( i, txt ) { + // multiple matches are possible + if ( txt.toLowerCase().indexOf( res[0] ) > -1 ) { + id = i; + filters[ id ] = res[1]; + } + }); + } else { + id = parseInt( res[0], 10 ) - 1; + } + if ( id >= 0 && id < c.columns ) { // if id is an integer + filters[ id ] = res[1]; + query.splice( indx, 1 ); + indx--; + injected = true; + } + } + } + if ( injected ) { + data.anyMatchFilter = query.join( ' && ' ); + } + } + } + + // optimize searching only through already filtered rows - see #313 + searchFiltered = wo.filter_searchFiltered; + lastSearch = c.lastSearch || c.$table.data( 'lastSearch' ) || []; + if ( searchFiltered ) { + // cycle through all filters; include last ( columnIndex + 1 = match any column ). Fixes #669 + for ( indx = 0; indx < columnIndex + 1; indx++ ) { + val = filters[indx] || ''; + // break out of loop if we've already determined not to search filtered rows + if ( !searchFiltered ) { indx = columnIndex; } + // search already filtered rows if... + searchFiltered = searchFiltered && lastSearch.length && + // there are no changes from beginning of filter + val.indexOf( lastSearch[indx] || '' ) === 0 && + // if there is NOT a logical 'or', or range ( 'to' or '-' ) in the string + !tsfRegex.alreadyFiltered.test( val ) && + // if we are not doing exact matches, using '|' ( logical or ) or not '!' + !tsfRegex.exactTest.test( val ) && + // don't search only filtered if the value is negative + // ( '> -10' => '> -100' will ignore hidden rows ) + !( tsfRegex.isNeg1.test( val ) || tsfRegex.isNeg2.test( val ) ) && + // if filtering using a select without a 'filter-match' class ( exact match ) - fixes #593 + !( val !== '' && c.$filters && c.$filters.filter( '[data-column="' + indx + '"]' ).find( 'select' ).length && + !tsf.matchType( c, indx ) ); + } + } + notFiltered = $rows.not( '.' + wo.filter_filteredRow ).length; + // can't search when all rows are hidden - this happens when looking for exact matches + if ( searchFiltered && notFiltered === 0 ) { searchFiltered = false; } + if ( debug ) { + console.log( 'Filter >> Searching through ' + + ( searchFiltered && notFiltered < len ? notFiltered : 'all' ) + ' rows' ); + } + if ( data.anyMatchFlag ) { + if ( c.sortLocaleCompare ) { + // replace accents + data.anyMatchFilter = ts.replaceAccents( data.anyMatchFilter ); + } + if ( wo.filter_defaultFilter && tsfRegex.iQuery.test( vars.defaultAnyFilter ) ) { + data.anyMatchFilter = tsf.defaultFilter( data.anyMatchFilter, vars.defaultAnyFilter ); + // clear search filtered flag because default filters are not saved to the last search + searchFiltered = false; + } + // make iAnyMatchFilter lowercase unless both filter widget & core ignoreCase options are true + // when c.ignoreCase is true, the cache contains all lower case data + data.iAnyMatchFilter = !( wo.filter_ignoreCase && c.ignoreCase ) ? + data.anyMatchFilter : + data.anyMatchFilter.toLowerCase(); + } + + // loop through the rows + for ( rowIndex = 0; rowIndex < len; rowIndex++ ) { + + txt = $rows[ rowIndex ].className; + // the first row can never be a child row + isChild = rowIndex && tsfRegex.child.test( txt ); + // skip child rows & already filtered rows + if ( isChild || ( searchFiltered && tsfRegex.filtered.test( txt ) ) ) { + continue; + } + + data.$row = $rows.eq( rowIndex ); + data.rowIndex = rowIndex; + data.cacheArray = norm_rows[ rowIndex ]; + rowData = data.cacheArray[ c.columns ]; + data.rawArray = rowData.raw; + data.childRowText = ''; + + if ( !wo.filter_childByColumn ) { + txt = ''; + // child row cached text + childRow = rowData.child; + // so, if 'table.config.widgetOptions.filter_childRows' is true and there is + // a match anywhere in the child row, then it will make the row visible + // checked here so the option can be changed dynamically + for ( indx = 0; indx < childRow.length; indx++ ) { + txt += ' ' + childRow[indx].join( ' ' ) || ''; + } + data.childRowText = wo.filter_childRows ? + ( wo.filter_ignoreCase ? txt.toLowerCase() : txt ) : + ''; + } + + showRow = false; + showParent = tsf.processRow( c, data, vars ); + $row = rowData.$row; + + // don't pass reference to val + val = showParent ? true : false; + childRow = rowData.$row.filter( ':gt(0)' ); + if ( wo.filter_childRows && childRow.length ) { + if ( wo.filter_childByColumn ) { + if ( !wo.filter_childWithSibs ) { + // hide all child rows + childRow.addClass( wo.filter_filteredRow ); + // if only showing resulting child row, only include parent + $row = $row.eq( 0 ); + } + // cycle through each child row + for ( indx = 0; indx < childRow.length; indx++ ) { + data.$row = childRow.eq( indx ); + data.cacheArray = rowData.child[ indx ]; + data.rawArray = data.cacheArray; + val = tsf.processRow( c, data, vars ); + // use OR comparison on child rows + showRow = showRow || val; + if ( !wo.filter_childWithSibs && val ) { + childRow.eq( indx ).removeClass( wo.filter_filteredRow ); + } + } + } + // keep parent row match even if no child matches... see #1020 + showRow = showRow || showParent; + } else { + showRow = val; + } + $row + .toggleClass( wo.filter_filteredRow, !showRow )[0] + .display = showRow ? '' : 'none'; + } + } + c.filteredRows += $rows.not( '.' + wo.filter_filteredRow ).length; + c.totalRows += $rows.length; + ts.processTbody( table, $tbody, false ); + } + // lastCombinedFilter is no longer used internally + c.lastCombinedFilter = storedFilters.join(''); // save last search + // don't save 'filters' directly since it may have altered ( AnyMatch column searches ) + c.lastSearch = storedFilters; + c.$table.data( 'lastSearch', storedFilters ); + if ( wo.filter_saveFilters && ts.storage ) { + ts.storage( table, 'tablesorter-filters', tsf.processFilters( storedFilters, true ) ); + } + if ( debug ) { + console.log( 'Filter >> Completed search' + ts.benchmark(time) ); + } + if ( wo.filter_initialized ) { + c.$table.triggerHandler( 'filterBeforeEnd', c ); + c.$table.triggerHandler( 'filterEnd', c ); + } + setTimeout( function() { + ts.applyWidget( c.table ); // make sure zebra widget is applied + }, 0 ); + }, + getOptionSource: function( table, column, onlyAvail ) { + table = $( table )[0]; + var c = table.config, + wo = c.widgetOptions, + arry = false, + source = wo.filter_selectSource, + last = c.$table.data( 'lastSearch' ) || [], + fxn = typeof source === 'function' ? true : ts.getColumnData( table, source, column ); + + if ( onlyAvail && last[column] !== '' ) { + onlyAvail = false; + } + + // filter select source option + if ( fxn === true ) { + // OVERALL source + arry = source( table, column, onlyAvail ); + } else if ( fxn instanceof $ || ( $.type( fxn ) === 'string' && fxn.indexOf( '' ) >= 0 ) ) { + // selectSource is a jQuery object or string of options + return fxn; + } else if ( $.isArray( fxn ) ) { + arry = fxn; + } else if ( $.type( source ) === 'object' && fxn ) { + // custom select source function for a SPECIFIC COLUMN + arry = fxn( table, column, onlyAvail ); + // abort - updating the selects from an external method + if (arry === null) { + return null; + } + } + if ( arry === false ) { + // fall back to original method + arry = tsf.getOptions( table, column, onlyAvail ); + } + + return tsf.processOptions( table, column, arry ); + + }, + processOptions: function( table, column, arry ) { + if ( !$.isArray( arry ) ) { + return false; + } + table = $( table )[0]; + var cts, txt, indx, len, parsedTxt, str, + c = table.config, + validColumn = typeof column !== 'undefined' && column !== null && column >= 0 && column < c.columns, + direction = validColumn ? c.$headerIndexed[ column ].hasClass( 'filter-select-sort-desc' ) : false, + parsed = []; + // get unique elements and sort the list + // if $.tablesorter.sortText exists ( not in the original tablesorter ), + // then natural sort the list otherwise use a basic sort + arry = $.grep( arry, function( value, indx ) { + if ( value.text ) { + return true; + } + return $.inArray( value, arry ) === indx; + }); + if ( validColumn && c.$headerIndexed[ column ].hasClass( 'filter-select-nosort' ) ) { + // unsorted select options + return arry; + } else { + len = arry.length; + // parse select option values + for ( indx = 0; indx < len; indx++ ) { + txt = arry[ indx ]; + // check for object + str = txt.text ? txt.text : txt; + // sortNatural breaks if you don't pass it strings + parsedTxt = ( validColumn && c.parsers && c.parsers.length && + c.parsers[ column ].format( str, table, [], column ) || str ).toString(); + parsedTxt = c.widgetOptions.filter_ignoreCase ? parsedTxt.toLowerCase() : parsedTxt; + // parse array data using set column parser; this DOES NOT pass the original + // table cell to the parser format function + if ( txt.text ) { + txt.parsed = parsedTxt; + parsed[ parsed.length ] = txt; + } else { + parsed[ parsed.length ] = { + text : txt, + // check parser length - fixes #934 + parsed : parsedTxt + }; + } + } + // sort parsed select options + cts = c.textSorter || ''; + parsed.sort( function( a, b ) { + var x = direction ? b.parsed : a.parsed, + y = direction ? a.parsed : b.parsed; + if ( validColumn && typeof cts === 'function' ) { + // custom OVERALL text sorter + return cts( x, y, true, column, table ); + } else if ( validColumn && typeof cts === 'object' && cts.hasOwnProperty( column ) ) { + // custom text sorter for a SPECIFIC COLUMN + return cts[column]( x, y, true, column, table ); + } else if ( ts.sortNatural ) { + // fall back to natural sort + return ts.sortNatural( x, y ); + } + // using an older version! do a basic sort + return true; + }); + // rebuild arry from sorted parsed data + arry = []; + len = parsed.length; + for ( indx = 0; indx < len; indx++ ) { + arry[ arry.length ] = parsed[indx]; + } + return arry; + } + }, + getOptions: function( table, column, onlyAvail ) { + table = $( table )[0]; + var rowIndex, tbodyIndex, len, row, cache, indx, child, childLen, + c = table.config, + wo = c.widgetOptions, + arry = []; + for ( tbodyIndex = 0; tbodyIndex < c.$tbodies.length; tbodyIndex++ ) { + cache = c.cache[tbodyIndex]; + len = c.cache[tbodyIndex].normalized.length; + // loop through the rows + for ( rowIndex = 0; rowIndex < len; rowIndex++ ) { + // get cached row from cache.row ( old ) or row data object + // ( new; last item in normalized array ) + row = cache.row ? + cache.row[ rowIndex ] : + cache.normalized[ rowIndex ][ c.columns ].$row[0]; + // check if has class filtered + if ( onlyAvail && row.className.match( wo.filter_filteredRow ) ) { + continue; + } + // get non-normalized cell content + if ( wo.filter_useParsedData || + c.parsers[column].parsed || + c.$headerIndexed[column].hasClass( 'filter-parsed' ) ) { + arry[ arry.length ] = '' + cache.normalized[ rowIndex ][ column ]; + // child row parsed data + if ( wo.filter_childRows && wo.filter_childByColumn ) { + childLen = cache.normalized[ rowIndex ][ c.columns ].$row.length - 1; + for ( indx = 0; indx < childLen; indx++ ) { + arry[ arry.length ] = '' + cache.normalized[ rowIndex ][ c.columns ].child[ indx ][ column ]; + } + } + } else { + // get raw cached data instead of content directly from the cells + arry[ arry.length ] = cache.normalized[ rowIndex ][ c.columns ].raw[ column ]; + // child row unparsed data + if ( wo.filter_childRows && wo.filter_childByColumn ) { + childLen = cache.normalized[ rowIndex ][ c.columns ].$row.length; + for ( indx = 1; indx < childLen; indx++ ) { + child = cache.normalized[ rowIndex ][ c.columns ].$row.eq( indx ).children().eq( column ); + arry[ arry.length ] = '' + ts.getElementText( c, child, column ); + } + } + } + } + } + return arry; + }, + buildSelect: function( table, column, arry, updating, onlyAvail ) { + table = $( table )[0]; + column = parseInt( column, 10 ); + if ( !table.config.cache || $.isEmptyObject( table.config.cache ) ) { + return; + } + + var indx, val, txt, t, $filters, $filter, option, + c = table.config, + wo = c.widgetOptions, + node = c.$headerIndexed[ column ], + // t.data( 'placeholder' ) won't work in jQuery older than 1.4.3 + options = '', + // Get curent filter value + currentValue = c.$table + .find( 'thead' ) + .find( 'select.' + tscss.filter + '[data-column="' + column + '"]' ) + .val(); + + // nothing included in arry ( external source ), so get the options from + // filter_selectSource or column data + if ( typeof arry === 'undefined' || arry === '' ) { + arry = tsf.getOptionSource( table, column, onlyAvail ); + // abort, selects are updated by an external method + if (arry === null) { + return; + } + } + + if ( $.isArray( arry ) ) { + // build option list + for ( indx = 0; indx < arry.length; indx++ ) { + option = arry[ indx ]; + if ( option.text ) { + // OBJECT!! add data-function-name in case the value is set in filter_functions + option['data-function-name'] = typeof option.value === 'undefined' ? option.text : option.value; + + // support jQuery < v1.8, otherwise the below code could be shortened to + // options += $( '
'), + $stickyWrap = $stickyTable.parent() + .addClass(ts.css.stickyHide) + .css({ + position : $attach.length ? 'absolute' : 'fixed', + padding : parseInt( $stickyTable.parent().parent().css('padding-left'), 10 ), + top : stickyOffset + nestedStickyTop, + left : 0, + visibility : 'hidden', + zIndex : wo.stickyHeaders_zIndex || 2 + }), + $stickyThead = $stickyTable.children('thead:first'), + $stickyCells, + laststate = '', + setWidth = function($orig, $clone) { + var index, width, border, $cell, $this, + $cells = $orig.filter(':visible'), + len = $cells.length; + for ( index = 0; index < len; index++ ) { + $cell = $clone.filter(':visible').eq(index); + $this = $cells.eq(index); + // code from https://github.com/jmosbech/StickyTableHeaders + if ($this.css('box-sizing') === 'border-box') { + width = $this.outerWidth(); + } else { + if ($cell.css('border-collapse') === 'collapse') { + if (window.getComputedStyle) { + width = parseFloat( window.getComputedStyle($this[0], null).width ); + } else { + // ie8 only + border = parseFloat( $this.css('border-width') ); + width = $this.outerWidth() - parseFloat( $this.css('padding-left') ) - parseFloat( $this.css('padding-right') ) - border; + } + } else { + width = $this.width(); + } + } + $cell.css({ + 'width': width, + 'min-width': width, + 'max-width': width + }); + } + }, + getLeftPosition = function(yWindow) { + if (yWindow === false && $nestedSticky.length) { + return $table.position().left; + } + return $attach.length ? + parseInt($attach.css('padding-left'), 10) || 0 : + $table.offset().left - parseInt($table.css('margin-left'), 10) - $(window).scrollLeft(); + }, + resizeHeader = function() { + $stickyWrap.css({ + left : getLeftPosition(), + width: $table.outerWidth() + }); + setWidth( $table, $stickyTable ); + setWidth( $header, $stickyCells ); + }, + scrollSticky = function( resizing ) { + if (!$table.is(':visible')) { return; } // fixes #278 + // Detect nested tables - fixes #724 + nestedStickyTop = $nestedSticky.length ? $nestedSticky.offset().top - $yScroll.scrollTop() + $nestedSticky.height() : 0; + var tmp, + offset = $table.offset(), + stickyOffset = getStickyOffset(c, wo), + yWindow = $.isWindow( $yScroll[0] ), // $.isWindow needs jQuery 1.4.3 + yScroll = yWindow ? + $yScroll.scrollTop() : + // use parent sticky position if nested AND inside of a scrollable element - see #1512 + $nestedSticky.length ? parseInt($nestedSticky[0].style.top, 10) : $yScroll.offset().top, + attachTop = $attach.length ? yScroll : $yScroll.scrollTop(), + captionHeight = wo.stickyHeaders_includeCaption ? 0 : $table.children( 'caption' ).height() || 0, + scrollTop = attachTop + stickyOffset + nestedStickyTop - captionHeight, + tableHeight = $table.height() - ($stickyWrap.height() + ($tfoot.height() || 0)) - captionHeight, + isVisible = ( scrollTop > offset.top ) && ( scrollTop < offset.top + tableHeight ) ? 'visible' : 'hidden', + state = isVisible === 'visible' ? ts.css.stickyVis : ts.css.stickyHide, + needsUpdating = !$stickyWrap.hasClass( state ), + cssSettings = { visibility : isVisible }; + if ($attach.length) { + // attached sticky headers always need updating + needsUpdating = true; + cssSettings.top = yWindow ? scrollTop - $attach.offset().top : $attach.scrollTop(); + } + // adjust when scrolling horizontally - fixes issue #143 + tmp = getLeftPosition(yWindow); + if (tmp !== parseInt($stickyWrap.css('left'), 10)) { + needsUpdating = true; + cssSettings.left = tmp; + } + cssSettings.top = ( cssSettings.top || 0 ) + + // If nested AND inside of a scrollable element, only add parent sticky height + (!yWindow && $nestedSticky.length ? $nestedSticky.height() : stickyOffset + nestedStickyTop); + if (needsUpdating) { + $stickyWrap + .removeClass( ts.css.stickyVis + ' ' + ts.css.stickyHide ) + .addClass( state ) + .css(cssSettings); + } + if (isVisible !== laststate || resizing) { + // make sure the column widths match + resizeHeader(); + laststate = isVisible; + } + }; + // only add a position relative if a position isn't already defined + if ($attach.length && !$attach.css('position')) { + $attach.css('position', 'relative'); + } + // fix clone ID, if it exists - fixes #271 + if ($stickyTable.attr('id')) { $stickyTable[0].id += wo.stickyHeaders_cloneId; } + // clear out cloned table, except for sticky header + // include caption & filter row (fixes #126 & #249) - don't remove cells to get correct cell indexing + $stickyTable.find('> thead:gt(0), tr.sticky-false').hide(); + $stickyTable.find('> tbody, > tfoot').remove(); + $stickyTable.find('caption').toggle(wo.stickyHeaders_includeCaption); + // issue #172 - find td/th in sticky header + $stickyCells = $stickyThead.children().children(); + $stickyTable.css({ height:0, width:0, margin: 0 }); + // remove resizable block + $stickyCells.find('.' + ts.css.resizer).remove(); + // update sticky header class names to match real header after sorting + $table + .addClass('hasStickyHeaders') + .bind('pagerComplete' + namespace, function() { + resizeHeader(); + }); + + ts.bindEvents(table, $stickyThead.children().children('.' + ts.css.header)); + + if (wo.stickyHeaders_appendTo) { + $(wo.stickyHeaders_appendTo).append( $stickyWrap ); + } else { + // add stickyheaders AFTER the table. If the table is selected by ID, the original one (first) will be returned. + $table.after( $stickyWrap ); + } + + // onRenderHeader is defined, we need to do something about it (fixes #641) + if (c.onRenderHeader) { + $t = $stickyThead.children('tr').children(); + len = $t.length; + for ( index = 0; index < len; index++ ) { + // send second parameter + c.onRenderHeader.apply( $t.eq( index ), [ index, c, $stickyTable ] ); + } + } + // make it sticky! + $xScroll.add($yScroll) + .unbind( ('scroll resize '.split(' ').join( namespace )).replace(/\s+/g, ' ') ) + .bind('scroll resize '.split(' ').join( namespace ), function( event ) { + scrollSticky( event.type === 'resize' ); + }); + c.$table + .unbind('stickyHeadersUpdate' + namespace) + .bind('stickyHeadersUpdate' + namespace, function() { + scrollSticky( true ); + }); + + if (wo.stickyHeaders_addResizeEvent) { + ts.addHeaderResizeEvent(table); + } + + // look for filter widget + if ($table.hasClass('hasFilters') && wo.filter_columnFilters) { + // scroll table into view after filtering, if sticky header is active - #482 + $table.bind('filterEnd' + namespace, function() { + // $(':focus') needs jQuery 1.6+ + var $td = $(document.activeElement).closest('td'), + column = $td.parent().children().index($td); + // only scroll if sticky header is active + if ($stickyWrap.hasClass(ts.css.stickyVis) && wo.stickyHeaders_filteredToTop) { + // scroll to original table (not sticky clone) + window.scrollTo(0, $table.position().top); + // give same input/select focus; check if c.$filters exists; fixes #594 + if (column >= 0 && c.$filters) { + c.$filters.eq(column).find('a, select, input').filter(':visible').focus(); + } + } + }); + ts.filter.bindSearch( $table, $stickyCells.find('.' + ts.css.filter) ); + // support hideFilters + if (wo.filter_hideFilters) { + ts.filter.hideFilters(c, $stickyTable); + } + } + + // resize table (Firefox) + if (wo.stickyHeaders_addResizeEvent) { + $table.bind('resize' + c.namespace + 'stickyheaders', function() { + resizeHeader(); + }); + } + + // make sure sticky is visible if page is partially scrolled + scrollSticky( true ); + $table.triggerHandler('stickyHeadersInit'); + + }, + remove: function(table, c, wo) { + var namespace = c.namespace + 'stickyheaders '; + c.$table + .removeClass('hasStickyHeaders') + .unbind( ('pagerComplete resize filterEnd stickyHeadersUpdate '.split(' ').join(namespace)).replace(/\s+/g, ' ') ) + .next('.' + ts.css.stickyWrap).remove(); + if (wo.$sticky && wo.$sticky.length) { wo.$sticky.remove(); } // remove cloned table + $(window) + .add(wo.stickyHeaders_xScroll) + .add(wo.stickyHeaders_yScroll) + .add(wo.stickyHeaders_attachTo) + .unbind( ('scroll resize '.split(' ').join(namespace)).replace(/\s+/g, ' ') ); + ts.addHeaderResizeEvent(table, true); + } + }); + +})(jQuery, window); + +/*! Widget: resizable - updated 2018-03-26 (v2.30.2) */ +/*jshint browser:true, jquery:true, unused:false */ +;(function ($, window) { + 'use strict'; + var ts = $.tablesorter || {}; + + $.extend(ts.css, { + resizableContainer : 'tablesorter-resizable-container', + resizableHandle : 'tablesorter-resizable-handle', + resizableNoSelect : 'tablesorter-disableSelection', + resizableStorage : 'tablesorter-resizable' + }); + + // Add extra scroller css + $(function() { + var s = ''; + $('head').append(s); + }); + + ts.resizable = { + init : function( c, wo ) { + if ( c.$table.hasClass( 'hasResizable' ) ) { return; } + c.$table.addClass( 'hasResizable' ); + + var noResize, $header, column, storedSizes, tmp, + $table = c.$table, + $parent = $table.parent(), + marginTop = parseInt( $table.css( 'margin-top' ), 10 ), + + // internal variables + vars = wo.resizable_vars = { + useStorage : ts.storage && wo.resizable !== false, + $wrap : $parent, + mouseXPosition : 0, + $target : null, + $next : null, + overflow : $parent.css('overflow') === 'auto' || + $parent.css('overflow') === 'scroll' || + $parent.css('overflow-x') === 'auto' || + $parent.css('overflow-x') === 'scroll', + storedSizes : [] + }; + + // set default widths + ts.resizableReset( c.table, true ); + + // now get measurements! + vars.tableWidth = $table.width(); + // attempt to autodetect + vars.fullWidth = Math.abs( $parent.width() - vars.tableWidth ) < 20; + + /* + // Hacky method to determine if table width is set to 'auto' + // http://stackoverflow.com/a/20892048/145346 + if ( !vars.fullWidth ) { + tmp = $table.width(); + $header = $table.wrap('').parent(); // temp variable + storedSizes = parseInt( $table.css( 'margin-left' ), 10 ) || 0; + $table.css( 'margin-left', storedSizes + 50 ); + vars.tableWidth = $header.width() > tmp ? 'auto' : tmp; + $table.css( 'margin-left', storedSizes ? storedSizes : '' ); + $header = null; + $table.unwrap(''); + } + */ + + if ( vars.useStorage && vars.overflow ) { + // save table width + ts.storage( c.table, 'tablesorter-table-original-css-width', vars.tableWidth ); + tmp = ts.storage( c.table, 'tablesorter-table-resized-width' ) || 'auto'; + ts.resizable.setWidth( $table, tmp, true ); + } + wo.resizable_vars.storedSizes = storedSizes = ( vars.useStorage ? + ts.storage( c.table, ts.css.resizableStorage ) : + [] ) || []; + ts.resizable.setWidths( c, wo, storedSizes ); + ts.resizable.updateStoredSizes( c, wo ); + + wo.$resizable_container = $( '
' ) + .css({ top : marginTop }) + .insertBefore( $table ); + // add container + for ( column = 0; column < c.columns; column++ ) { + $header = c.$headerIndexed[ column ]; + tmp = ts.getColumnData( c.table, c.headers, column ); + noResize = ts.getData( $header, tmp, 'resizable' ) === 'false'; + if ( !noResize ) { + $( '
' ) + .appendTo( wo.$resizable_container ) + .attr({ + 'data-column' : column, + 'unselectable' : 'on' + }) + .data( 'header', $header ) + .bind( 'selectstart', false ); + } + } + ts.resizable.bindings( c, wo ); + }, + + updateStoredSizes : function( c, wo ) { + var column, $header, + len = c.columns, + vars = wo.resizable_vars; + vars.storedSizes = []; + for ( column = 0; column < len; column++ ) { + $header = c.$headerIndexed[ column ]; + vars.storedSizes[ column ] = $header.is(':visible') ? $header.width() : 0; + } + }, + + setWidth : function( $el, width, overflow ) { + // overflow tables need min & max width set as well + $el.css({ + 'width' : width, + 'min-width' : overflow ? width : '', + 'max-width' : overflow ? width : '' + }); + }, + + setWidths : function( c, wo, storedSizes ) { + var column, $temp, + vars = wo.resizable_vars, + $extra = $( c.namespace + '_extra_headers' ), + $col = c.$table.children( 'colgroup' ).children( 'col' ); + storedSizes = storedSizes || vars.storedSizes || []; + // process only if table ID or url match + if ( storedSizes.length ) { + for ( column = 0; column < c.columns; column++ ) { + // set saved resizable widths + ts.resizable.setWidth( c.$headerIndexed[ column ], storedSizes[ column ], vars.overflow ); + if ( $extra.length ) { + // stickyHeaders needs to modify min & max width as well + $temp = $extra.eq( column ).add( $col.eq( column ) ); + ts.resizable.setWidth( $temp, storedSizes[ column ], vars.overflow ); + } + } + $temp = $( c.namespace + '_extra_table' ); + if ( $temp.length && !ts.hasWidget( c.table, 'scroller' ) ) { + ts.resizable.setWidth( $temp, c.$table.outerWidth(), vars.overflow ); + } + } + }, + + setHandlePosition : function( c, wo ) { + var startPosition, + tableHeight = c.$table.height(), + $handles = wo.$resizable_container.children(), + handleCenter = Math.floor( $handles.width() / 2 ); + + if ( ts.hasWidget( c.table, 'scroller' ) ) { + tableHeight = 0; + c.$table.closest( '.' + ts.css.scrollerWrap ).children().each(function() { + var $this = $(this); + // center table has a max-height set + tableHeight += $this.filter('[style*="height"]').length ? $this.height() : $this.children('table').height(); + }); + } + + if ( !wo.resizable_includeFooter && c.$table.children('tfoot').length ) { + tableHeight -= c.$table.children('tfoot').height(); + } + // subtract out table left position from resizable handles. Fixes #864 + // jQuery v3.3.0+ appears to include the start position with the $header.position().left; see #1544 + startPosition = parseFloat($.fn.jquery) >= 3.3 ? 0 : c.$table.position().left; + $handles.each( function() { + var $this = $(this), + column = parseInt( $this.attr( 'data-column' ), 10 ), + columns = c.columns - 1, + $header = $this.data( 'header' ); + if ( !$header ) { return; } // see #859 + if ( + !$header.is(':visible') || + ( !wo.resizable_addLastColumn && ts.resizable.checkVisibleColumns(c, column) ) + ) { + $this.hide(); + } else if ( column < columns || column === columns && wo.resizable_addLastColumn ) { + $this.css({ + display: 'inline-block', + height : tableHeight, + left : $header.position().left - startPosition + $header.outerWidth() - handleCenter + }); + } + }); + }, + + // Fixes #1485 + checkVisibleColumns: function( c, column ) { + var i, + len = 0; + for ( i = column + 1; i < c.columns; i++ ) { + len += c.$headerIndexed[i].is( ':visible' ) ? 1 : 0; + } + return len === 0; + }, + + // prevent text selection while dragging resize bar + toggleTextSelection : function( c, wo, toggle ) { + var namespace = c.namespace + 'tsresize'; + wo.resizable_vars.disabled = toggle; + $( 'body' ).toggleClass( ts.css.resizableNoSelect, toggle ); + if ( toggle ) { + $( 'body' ) + .attr( 'unselectable', 'on' ) + .bind( 'selectstart' + namespace, false ); + } else { + $( 'body' ) + .removeAttr( 'unselectable' ) + .unbind( 'selectstart' + namespace ); + } + }, + + bindings : function( c, wo ) { + var namespace = c.namespace + 'tsresize'; + wo.$resizable_container.children().bind( 'mousedown', function( event ) { + // save header cell and mouse position + var column, + vars = wo.resizable_vars, + $extras = $( c.namespace + '_extra_headers' ), + $header = $( event.target ).data( 'header' ); + + column = parseInt( $header.attr( 'data-column' ), 10 ); + vars.$target = $header = $header.add( $extras.filter('[data-column="' + column + '"]') ); + vars.target = column; + + // if table is not as wide as it's parent, then resize the table + vars.$next = event.shiftKey || wo.resizable_targetLast ? + $header.parent().children().not( '.resizable-false' ).filter( ':last' ) : + $header.nextAll( ':not(.resizable-false)' ).eq( 0 ); + + column = parseInt( vars.$next.attr( 'data-column' ), 10 ); + vars.$next = vars.$next.add( $extras.filter('[data-column="' + column + '"]') ); + vars.next = column; + + vars.mouseXPosition = event.pageX; + ts.resizable.updateStoredSizes( c, wo ); + ts.resizable.toggleTextSelection(c, wo, true ); + }); + + $( document ) + .bind( 'mousemove' + namespace, function( event ) { + var vars = wo.resizable_vars; + // ignore mousemove if no mousedown + if ( !vars.disabled || vars.mouseXPosition === 0 || !vars.$target ) { return; } + if ( wo.resizable_throttle ) { + clearTimeout( vars.timer ); + vars.timer = setTimeout( function() { + ts.resizable.mouseMove( c, wo, event ); + }, isNaN( wo.resizable_throttle ) ? 5 : wo.resizable_throttle ); + } else { + ts.resizable.mouseMove( c, wo, event ); + } + }) + .bind( 'mouseup' + namespace, function() { + if (!wo.resizable_vars.disabled) { return; } + ts.resizable.toggleTextSelection( c, wo, false ); + ts.resizable.stopResize( c, wo ); + ts.resizable.setHandlePosition( c, wo ); + }); + + // resizeEnd event triggered by scroller widget + $( window ).bind( 'resize' + namespace + ' resizeEnd' + namespace, function() { + ts.resizable.setHandlePosition( c, wo ); + }); + + // right click to reset columns to default widths + c.$table + .bind( 'columnUpdate pagerComplete resizableUpdate '.split( ' ' ).join( namespace + ' ' ), function() { + ts.resizable.setHandlePosition( c, wo ); + }) + .bind( 'resizableReset' + namespace, function() { + ts.resizableReset( c.table ); + }) + .find( 'thead:first' ) + .add( $( c.namespace + '_extra_table' ).find( 'thead:first' ) ) + .bind( 'contextmenu' + namespace, function() { + // $.isEmptyObject() needs jQuery 1.4+; allow right click if already reset + var allowClick = wo.resizable_vars.storedSizes.length === 0; + ts.resizableReset( c.table ); + ts.resizable.setHandlePosition( c, wo ); + wo.resizable_vars.storedSizes = []; + return allowClick; + }); + + }, + + mouseMove : function( c, wo, event ) { + if ( wo.resizable_vars.mouseXPosition === 0 || !wo.resizable_vars.$target ) { return; } + // resize columns + var column, + total = 0, + vars = wo.resizable_vars, + $next = vars.$next, + tar = vars.storedSizes[ vars.target ], + leftEdge = event.pageX - vars.mouseXPosition; + if ( vars.overflow ) { + if ( tar + leftEdge > 0 ) { + vars.storedSizes[ vars.target ] += leftEdge; + ts.resizable.setWidth( vars.$target, vars.storedSizes[ vars.target ], true ); + // update the entire table width + for ( column = 0; column < c.columns; column++ ) { + total += vars.storedSizes[ column ]; + } + ts.resizable.setWidth( c.$table.add( $( c.namespace + '_extra_table' ) ), total ); + } + if ( !$next.length ) { + // if expanding right-most column, scroll the wrapper + vars.$wrap[0].scrollLeft = c.$table.width(); + } + } else if ( vars.fullWidth ) { + vars.storedSizes[ vars.target ] += leftEdge; + vars.storedSizes[ vars.next ] -= leftEdge; + ts.resizable.setWidths( c, wo ); + } else { + vars.storedSizes[ vars.target ] += leftEdge; + ts.resizable.setWidths( c, wo ); + } + vars.mouseXPosition = event.pageX; + // dynamically update sticky header widths + c.$table.triggerHandler('stickyHeadersUpdate'); + }, + + stopResize : function( c, wo ) { + var vars = wo.resizable_vars; + ts.resizable.updateStoredSizes( c, wo ); + if ( vars.useStorage ) { + // save all column widths + ts.storage( c.table, ts.css.resizableStorage, vars.storedSizes ); + ts.storage( c.table, 'tablesorter-table-resized-width', c.$table.width() ); + } + vars.mouseXPosition = 0; + vars.$target = vars.$next = null; + // will update stickyHeaders, just in case, see #912 + c.$table.triggerHandler('stickyHeadersUpdate'); + c.$table.triggerHandler('resizableComplete'); + } + }; + + // this widget saves the column widths if + // $.tablesorter.storage function is included + // ************************** + ts.addWidget({ + id: 'resizable', + priority: 40, + options: { + resizable : true, // save column widths to storage + resizable_addLastColumn : false, + resizable_includeFooter: true, + resizable_widths : [], + resizable_throttle : false, // set to true (5ms) or any number 0-10 range + resizable_targetLast : false + }, + init: function(table, thisWidget, c, wo) { + ts.resizable.init( c, wo ); + }, + format: function( table, c, wo ) { + ts.resizable.setHandlePosition( c, wo ); + }, + remove: function( table, c, wo, refreshing ) { + if (wo.$resizable_container) { + var namespace = c.namespace + 'tsresize'; + c.$table.add( $( c.namespace + '_extra_table' ) ) + .removeClass('hasResizable') + .children( 'thead' ) + .unbind( 'contextmenu' + namespace ); + + wo.$resizable_container.remove(); + ts.resizable.toggleTextSelection( c, wo, false ); + ts.resizableReset( table, refreshing ); + $( document ).unbind( 'mousemove' + namespace + ' mouseup' + namespace ); + } + } + }); + + ts.resizableReset = function( table, refreshing ) { + $( table ).each(function() { + var index, $t, + c = this.config, + wo = c && c.widgetOptions, + vars = wo.resizable_vars; + if ( table && c && c.$headerIndexed.length ) { + // restore the initial table width + if ( vars.overflow && vars.tableWidth ) { + ts.resizable.setWidth( c.$table, vars.tableWidth, true ); + if ( vars.useStorage ) { + ts.storage( table, 'tablesorter-table-resized-width', vars.tableWidth ); + } + } + for ( index = 0; index < c.columns; index++ ) { + $t = c.$headerIndexed[ index ]; + if ( wo.resizable_widths && wo.resizable_widths[ index ] ) { + ts.resizable.setWidth( $t, wo.resizable_widths[ index ], vars.overflow ); + } else if ( !$t.hasClass( 'resizable-false' ) ) { + // don't clear the width of any column that is not resizable + ts.resizable.setWidth( $t, '', vars.overflow ); + } + } + + // reset stickyHeader widths + c.$table.triggerHandler( 'stickyHeadersUpdate' ); + if ( ts.storage && !refreshing ) { + ts.storage( this, ts.css.resizableStorage, [] ); + } + } + }); + }; + +})( jQuery, window ); + +/*! Widget: saveSort - updated 2018-03-19 (v2.30.1) *//* +* Requires tablesorter v2.16+ +* by Rob Garrison +*/ +;(function ($) { + 'use strict'; + var ts = $.tablesorter || {}; + + function getStoredSortList(c) { + var stored = ts.storage( c.table, 'tablesorter-savesort' ); + return (stored && stored.hasOwnProperty('sortList') && $.isArray(stored.sortList)) ? stored.sortList : []; + } + + function sortListChanged(c, sortList) { + return (sortList || getStoredSortList(c)).join(',') !== c.sortList.join(','); + } + + // this widget saves the last sort only if the + // saveSort widget option is true AND the + // $.tablesorter.storage function is included + // ************************** + ts.addWidget({ + id: 'saveSort', + priority: 20, + options: { + saveSort : true + }, + init: function(table, thisWidget, c, wo) { + // run widget format before all other widgets are applied to the table + thisWidget.format(table, c, wo, true); + }, + format: function(table, c, wo, init) { + var time, + $table = c.$table, + saveSort = wo.saveSort !== false, // make saveSort active/inactive; default to true + sortList = { 'sortList' : c.sortList }, + debug = ts.debug(c, 'saveSort'); + if (debug) { + time = new Date(); + } + if ($table.hasClass('hasSaveSort')) { + if (saveSort && table.hasInitialized && ts.storage && sortListChanged(c)) { + ts.storage( table, 'tablesorter-savesort', sortList ); + if (debug) { + console.log('saveSort >> Saving last sort: ' + c.sortList + ts.benchmark(time)); + } + } + } else { + // set table sort on initial run of the widget + $table.addClass('hasSaveSort'); + sortList = ''; + // get data + if (ts.storage) { + sortList = getStoredSortList(c); + if (debug) { + console.log('saveSort >> Last sort loaded: "' + sortList + '"' + ts.benchmark(time)); + } + $table.bind('saveSortReset', function(event) { + event.stopPropagation(); + ts.storage( table, 'tablesorter-savesort', '' ); + }); + } + // init is true when widget init is run, this will run this widget before all other widgets have initialized + // this method allows using this widget in the original tablesorter plugin; but then it will run all widgets twice. + if (init && sortList && sortList.length > 0) { + c.sortList = sortList; + } else if (table.hasInitialized && sortList && sortList.length > 0) { + // update sort change + if (sortListChanged(c, sortList)) { + ts.sortOn(c, sortList); + } + } + } + }, + remove: function(table, c) { + c.$table.removeClass('hasSaveSort'); + // clear storage + if (ts.storage) { ts.storage( table, 'tablesorter-savesort', '' ); } + } + }); + +})(jQuery); +return jQuery.tablesorter;})); diff --git a/modules/pdproductattributeslist/views/js/jquery.tablesorter.widgets.min.js b/modules/pdproductattributeslist/views/js/jquery.tablesorter.widgets.min.js new file mode 100644 index 00000000..b248ac80 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/jquery.tablesorter.widgets.min.js @@ -0,0 +1,3 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! tablesorter (FORK) - updated 2024-08-13 (v2.32.0)*/ +!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof module&&"object"==typeof module.exports?module.exports=e(require("jquery")):e(jQuery)}(function(e){return function(h,u,p){"use strict";var g=h.tablesorter||{};h.extend(!0,g.defaults,{fixedUrl:"",widgetOptions:{storage_fixedUrl:"",storage_group:"",storage_page:"",storage_storageType:"",storage_tableId:"",storage_useSessionStorage:""}}),g.storage=function(e,t,r,i){var a=!1,l={},s=(e=h(e)[0]).config,n=s&&s.widgetOptions,o=g.debug(s,"storage"),c=(i&&i.storageType||n&&n.storage_storageType).toString().charAt(0).toLowerCase(),d=c?"":i&&i.useSessionStorage||n&&n.storage_useSessionStorage,f=h(e),e=i&&i.id||f.attr(i&&i.group||n&&n.storage_group||"data-table-group")||n&&n.storage_tableId||e.id||h(".tablesorter").index(f),f=i&&i.url||f.attr(i&&i.page||n&&n.storage_page||"data-table-page")||n&&n.storage_fixedUrl||s&&s.fixedUrl||u.location.pathname;if("c"!==c&&(c="s"===c||d?"sessionStorage":"localStorage")in u)try{u[c].setItem("_tmptest","temp"),a=!0,u[c].removeItem("_tmptest")}catch(e){console.warn(c+" is not supported in this browser")}if(o&&console.log("Storage >> Using",a?c:"cookies"),h.parseJSON&&(l=a?h.parseJSON(u[c][t]||"null")||{}:(i=p.cookie.split(/[;\s|=]/),0!==(n=h.inArray(t,i)+1)&&h.parseJSON(i[n]||"null")||{})),void 0===r||!u.JSON||!JSON.hasOwnProperty("stringify"))return l&&l[f]?l[f][e]:"";l[f]||(l[f]={}),l[f][e]=r,a?u[c][t]=JSON.stringify(l):((s=new Date).setTime(s.getTime()+31536e6),p.cookie=t+"="+JSON.stringify(l).replace(/\"/g,'"')+"; expires="+s.toGMTString()+"; path=/")}}(e,window,document),function(S){"use strict";var C=S.tablesorter||{};C.themes={bootstrap:{table:"table table-bordered table-striped",caption:"caption",header:"bootstrap-header",sortNone:"",sortAsc:"",sortDesc:"",active:"",hover:"",icons:"",iconSortNone:"bootstrap-icon-unsorted",iconSortAsc:"glyphicon glyphicon-chevron-up",iconSortDesc:"glyphicon glyphicon-chevron-down",filterRow:"",footerRow:"",footerCells:"",even:"",odd:""},jui:{table:"ui-widget ui-widget-content ui-corner-all",caption:"ui-widget-content",header:"ui-widget-header ui-corner-all ui-state-default",sortNone:"",sortAsc:"",sortDesc:"",active:"ui-state-active",hover:"ui-state-hover",icons:"ui-icon",iconSortNone:"ui-icon-carat-2-n-s ui-icon-caret-2-n-s",iconSortAsc:"ui-icon-carat-1-n ui-icon-caret-1-n",iconSortDesc:"ui-icon-carat-1-s ui-icon-caret-1-s",filterRow:"",footerRow:"",footerCells:"",even:"ui-widget-content",odd:"ui-state-default"}},S.extend(C.css,{wrapper:"tablesorter-wrapper"}),C.addWidget({id:"uitheme",priority:10,format:function(e,t,r){var i,a,l,s,n,o,c,d,f,h,u,p,g=C.themes,m=t.$table.add(S(t.namespace+"_extra_table")),b=t.$headers.add(S(t.namespace+"_extra_headers")),y=t.theme||"jui",_=g[y]||{},v=S.trim([_.sortNone,_.sortDesc,_.sortAsc,_.active].join(" ")),w=S.trim([_.iconSortNone,_.iconSortDesc,_.iconSortAsc].join(" ")),x=C.debug(t,"uitheme");for(x&&(n=new Date),m.hasClass("tablesorter-"+y)&&t.theme===t.appliedTheme&&r.uitheme_applied||(r.uitheme_applied=!0,h=g[t.appliedTheme]||{},g=(p=!S.isEmptyObject(h))?[h.sortNone,h.sortDesc,h.sortAsc,h.active].join(" "):"",u=p?[h.iconSortNone,h.iconSortDesc,h.iconSortAsc].join(" "):"",p&&(r.zebra[0]=S.trim(" "+r.zebra[0].replace(" "+h.even,"")),r.zebra[1]=S.trim(" "+r.zebra[1].replace(" "+h.odd,"")),t.$tbodies.children().removeClass([h.even,h.odd].join(" "))),_.even&&(r.zebra[0]+=" "+_.even),_.odd&&(r.zebra[1]+=" "+_.odd),m.children("caption").removeClass(h.caption||"").addClass(_.caption),d=m.removeClass((t.appliedTheme?"tablesorter-"+(t.appliedTheme||""):"")+" "+(h.table||"")).addClass("tablesorter-"+y+" "+(_.table||"")).children("tfoot"),t.appliedTheme=t.theme,d.length&&d.children("tr").removeClass(h.footerRow||"").addClass(_.footerRow).children("th, td").removeClass(h.footerCells||"").addClass(_.footerCells),b.removeClass((p?[h.header,h.hover,g].join(" "):"")||"").addClass(_.header).not(".sorter-false").unbind("mouseenter.tsuitheme mouseleave.tsuitheme").bind("mouseenter.tsuitheme mouseleave.tsuitheme",function(e){S(this)["mouseenter"===e.type?"addClass":"removeClass"](_.hover||"")}),b.each(function(){var e=S(this);e.find("."+C.css.wrapper).length||e.wrapInner('
')}),t.cssIcon&&b.find("."+C.css.icon).removeClass(p?[h.icons,u].join(" "):"").addClass(_.icons||""),C.hasWidget(t.table,"filter")&&(a=function(){m.children("thead").children("."+C.css.filterRow).removeClass(p&&h.filterRow||"").addClass(_.filterRow||"")},r.filter_initialized?a():m.one("filterInit",function(){a()}))),i=0;i> Applied "+y+" theme"+C.benchmark(n))},remove:function(e,t,r,i){var a,l,s,n,o;r.uitheme_applied&&(a=t.$table,t=t.appliedTheme||"jui",l=C.themes[t]||C.themes.jui,s=a.children("thead").children(),n=l.sortNone+" "+l.sortDesc+" "+l.sortAsc,o=l.iconSortNone+" "+l.iconSortDesc+" "+l.iconSortAsc,a.removeClass("tablesorter-"+t+" "+l.table),r.uitheme_applied=!1,i||(a.find(C.css.header).removeClass(l.header),s.unbind("mouseenter.tsuitheme mouseleave.tsuitheme").removeClass(l.hover+" "+n+" "+l.active).filter("."+C.css.filterRow).removeClass(l.filterRow),s.find("."+C.css.icon).removeClass(l.icons+" "+o)))}})}(e),function(m){"use strict";var b=m.tablesorter||{};b.addWidget({id:"columns",priority:65,options:{columns:["primary","secondary","tertiary"]},format:function(e,t,r){for(var i,a,l,s,n,o=t.$table,c=t.$tbodies,d=t.sortList,f=d.length,h=r&&r.columns||["primary","secondary","tertiary"],u=h.length-1,p=h.join(" "),g=0;g=]/g,query:"(q|query)",wild01:/\?/g,wild0More:/\*/g,quote:/\"/g,isNeg1:/(>=?\s*-\d)/,isNeg2:/(<=?\s*\d)/},types:{or:function(e,t,r){if(!O.orTest.test(t.iFilter)&&!O.orSplit.test(t.filter)||O.regex.test(t.filter))return null;for(var i,a,l=A.extend({},t),s=t.filter.split(O.orSplit),n=t.iFilter.split(O.orSplit),o=s.length,c=0;c]=?/,gtTest:/>/,gteTest:/>=/,ltTest:/'+(l.data("placeholder")||l.attr("data-placeholder")||f.filter_placeholder.select||"")+"":"",0<=(a=n=i).indexOf(f.filter_selectSourceSeparator)&&(a=(n=i.split(f.filter_selectSourceSeparator))[1],n=n[0]),t+="");d.$table.find("thead").find("select."+g.filter+'[data-column="'+s+'"]').append(t),("function"==typeof(a=f.filter_selectSource)||E.getColumnData(r,a,s))&&I.buildSelect(d.table,s,"",!0,l.hasClass(f.filter_onlyAvail))}I.buildDefault(r,!0),I.bindSearch(r,d.$table.find("."+g.filter),!0),f.filter_external&&I.bindSearch(r,f.filter_external),f.filter_hideFilters&&I.hideFilters(d),d.showProcessing&&(a="filterStart filterEnd ".split(" ").join(d.namespace+"filter-sp "),d.$table.unbind(a.replace(E.regex.spaces," ")).bind(a,function(e,t){l=t?d.$table.find("."+g.header).filter("[data-column]").filter(function(){return""!==t[A(this).data("column")]}):"",E.isProcessing(r,"filterStart"===e.type,t?l:"")})),d.filteredRows=d.totalRows,a="tablesorter-initialized pagerBeforeInitialized ".split(" ").join(d.namespace+"filter "),d.$table.unbind(a.replace(E.regex.spaces," ")).bind(a,function(){I.completeInit(this)}),d.pager&&d.pager.initialized&&!f.filter_initialized?(d.$table.triggerHandler("filterFomatterUpdate"),setTimeout(function(){I.filterInitComplete(d)},100)):f.filter_initialized||I.completeInit(r)},completeInit:function(e){var t=e.config,r=t.widgetOptions,i=I.setDefaults(e,t,r)||[];!i.length||t.delayInit&&""===i.join("")||E.setFilters(e,i,!0),t.$table.triggerHandler("filterFomatterUpdate"),setTimeout(function(){r.filter_initialized||I.filterInitComplete(t)},100)},formatterUpdated:function(e,t){e=e&&e.closest("table"),e=e.length&&e[0].config,e=e&&e.widgetOptions;e&&!e.filter_initialized&&(e.filter_formatterInit[t]=1)},filterInitComplete:function(e){function t(){a.filter_initialized=!0,e.lastSearch=e.$table.data("lastSearch"),e.$table.triggerHandler("filterInit",e),I.findRows(e.table,e.lastSearch||[]),E.debug(e,"filter")&&console.log("Filter >> Widget initialized")}var r,i,a=e.widgetOptions,l=0;if(A.isEmptyObject(a.filter_formatter))t();else{for(i=a.filter_formatterInit.length,r=0;r',p=0;p");for(t.$filters=A(u+="").appendTo(t.$table.children("thead").eq(0)).children("td"),p=0;p").appendTo(i):((o=E.getColumnData(e,r.filter_formatter,p))?(r.filter_formatterCount++,(u=(u=o(i,p))&&0===u.length?i.children("input"):u)&&(0===u.parent().length||u.parent().length&&u.parent()[0]!==i[0])&&i.append(u)):u=A('').appendTo(i),u&&(c=a.data("placeholder")||a.attr("data-placeholder")||r.filter_placeholder.search||"",u.attr("placeholder",c))),u)&&(n=(A.isArray(r.filter_cssFilter)?void 0!==r.filter_cssFilter[p]&&r.filter_cssFilter[p]||"":r.filter_cssFilter)||"",u.addClass(g.filter+" "+n),c=(n=r.filter_filterLabel).match(/{{([^}]+?)}}/g),A.each(c=c||["{{label}}"],function(e,t){var r=new RegExp(t,"g"),t=a.attr("data-"+t.replace(/{{|}}/g,"")),t=void 0===t?a.text():t;n=n.replace(r,A.trim(t))}),u.attr({"data-column":i.attr("data-column"),"aria-label":n}),s)&&(u.attr("placeholder","").addClass(g.filterDisabled)[0].disabled=!0)},bindSearch:function(a,e,t){var r,l,s,i,n;a=A(a)[0],(e=A(e)).length&&(l=a.config,s=l.widgetOptions,i=l.namespace+"filter",n=s.filter_$externalFilters,!0!==t&&(r=s.filter_anyColumnSelector+","+s.filter_multipleColumnSelector,s.filter_$anyMatch=e.filter(r),n&&n.length?s.filter_$externalFilters=s.filter_$externalFilters.add(e):s.filter_$externalFilters=e,E.setFilters(a,l.$table.data("lastSearch")||[],!1===t)),r="keypress keyup keydown search change input ".split(" ").join(i+" "),e.attr("data-lastSearchTime",(new Date).getTime()).unbind(r.replace(E.regex.spaces," ")).bind("keydown"+i,function(e){if(e.which===o.escape&&!a.config.widgetOptions.filter_resetOnEsc)return!1}).bind("keyup"+i,function(e){s=a.config.widgetOptions;var t=parseInt(A(this).attr("data-column"),10),r="boolean"==typeof s.filter_liveSearch?s.filter_liveSearch:E.getColumnData(a,s.filter_liveSearch,t);if(void 0===r&&(r=s.filter_liveSearch.fallback||!1),A(this).attr("data-lastSearchTime",(new Date).getTime()),e.which===o.escape)this.value=s.filter_resetOnEsc?"":l.lastSearch[t];else{if(""!==this.value&&("number"==typeof r&&this.value.length=o.left&&e.which<=o.down)))return;if(!1===r&&""!==this.value&&e.which!==o.enter)return}I.searching(a,!0,!0,t)}).bind("search change keypress input blur ".split(" ").join(i+" "),function(e){var t=parseInt(A(this).attr("data-column"),10),r=e.type,i="boolean"==typeof s.filter_liveSearch?s.filter_liveSearch:E.getColumnData(a,s.filter_liveSearch,t);!a.config.widgetOptions.filter_initialized||e.which!==o.enter&&"search"!==r&&"blur"!==r&&("change"!==r&&"input"!==r||!0!==i&&(!0===i||"INPUT"===e.target.nodeName)||this.value===l.lastSearch[t])||(e.preventDefault(),A(this).attr("data-lastSearchTime",(new Date).getTime()),I.searching(a,"keypress"!==r||e.which===o.enter,!0,t))}))},searching:function(e,t,r,i){var a,l=e.config.widgetOptions;void 0===i?a=!1:void 0===(a="boolean"==typeof l.filter_liveSearch?l.filter_liveSearch:E.getColumnData(e,l.filter_liveSearch,i))&&(a=l.filter_liveSearch.fallback||!1),clearTimeout(l.filter_searchTimer),void 0===t||!0===t?l.filter_searchTimer=setTimeout(function(){I.checkFilters(e,t,r)},a?l.filter_searchDelay:10):I.checkFilters(e,t,r)},equalFilters:function(e,t,r){var i,a=[],l=[],s=e.columns+1;for(t=A.isArray(t)?t:[],r=A.isArray(r)?r:[],i=0;i=e.columns&&(s=e.columns-1);l<=s;l++)f[f.length]=l;t=t.replace(i[c],"")}if(!r&&/,/.test(t))for(d=(n=t.split(/\s*,\s*/)).length,o=0;o> Starting filter widget search",r),m=new Date),F.filteredRows=0,t=$||[],c=F.totalRows=0;c> Searching through "+(v&&_> Completed search"+E.benchmark(m)),R.filter_initialized&&(F.$table.triggerHandler("filterBeforeEnd",F),F.$table.triggerHandler("filterEnd",F)),setTimeout(function(){E.applyWidget(F.table)},0)}},getOptionSource:function(e,t,r){var i=(e=A(e)[0]).config,a=!1,l=i.widgetOptions.filter_selectSource,i=i.$table.data("lastSearch")||[],s="function"==typeof l||E.getColumnData(e,l,t);if(r&&""!==i[t]&&(r=!1),!0===s)a=l(e,t,r);else{if(s instanceof A||"string"===A.type(s)&&0<=s.indexOf(""))return s;if(A.isArray(s))a=s;else if("object"===A.type(l)&&s&&null===(a=s(e,t,r)))return null}return!1===a&&(a=I.getOptions(e,t,r)),I.processOptions(e,t,a)},processOptions:function(i,a,r){if(!A.isArray(r))return!1;var l,e,t,s,n,o=(i=A(i)[0]).config,c=null!=a&&0<=a&&a'+(h.data("placeholder")||h.attr("data-placeholder")||f.filter_placeholder.select||"")+"",h=d.$table.find("thead").find("select."+g.filter+'[data-column="'+t+'"]').val();if(void 0!==r&&""!==r||null!==(r=I.getOptionSource(e,t,a))){if(A.isArray(r)){for(l=0;l"}else""+c!="[object Object]"&&(0<=(s=n=c=(""+c).replace(O.quote,""")).indexOf(f.filter_selectSourceSeparator)&&(s=(o=n.split(f.filter_selectSourceSeparator))[0],n=o[1]),u+=""!==c?"":"");r=[]}e=(d.$filters||d.$table.children("thead")).find("."+g.filter),(a=(e=f.filter_$externalFilters?e&&e.length?e.add(f.filter_$externalFilters):f.filter_$externalFilters:e).filter('select[data-column="'+t+'"]')).length&&(a[i?"html":"append"](u),A.isArray(r)||a.append(r).val(h),a.val(h))}}},buildDefault:function(e,t){for(var r,i,a=e.config,l=a.widgetOptions,s=a.columns,n=0;n'),y=b.parent().addClass($.css.stickyHide).css({position:d.length?"absolute":"fixed",padding:parseInt(b.parent().parent().css("padding-left"),10),top:p+m,left:0,visibility:"hidden",zIndex:o.stickyHeaders_zIndex||2}),p=b.children("thead:first"),_="",v=function(e,t){for(var r,i,a,l=e.filter(":visible"),s=l.length,n=0;na.top&&i thead:gt(0), tr.sticky-false").hide(),b.find("> tbody, > tfoot").remove(),b.find("caption").toggle(o.stickyHeaders_includeCaption),l=p.children().children(),b.css({height:0,width:0,margin:0}),l.find("."+$.css.resizer).remove(),c.addClass("hasStickyHeaders").bind("pagerComplete"+s,function(){x()}),$.bindEvents(e,p.children().children("."+$.css.header)),o.stickyHeaders_appendTo?C(o.stickyHeaders_appendTo).append(y):c.after(y),t.onRenderHeader)for(i=(a=p.children("tr").children()).length,r=0;r";c("head").append(e)}),d.resizable={init:function(e,t){if(!e.$table.hasClass("hasResizable")){e.$table.addClass("hasResizable");var r,i,a,l=e.$table,s=l.parent(),n=parseInt(l.css("margin-top"),10),o=t.resizable_vars={useStorage:d.storage&&!1!==t.resizable,$wrap:s,mouseXPosition:0,$target:null,$next:null,overflow:"auto"===s.css("overflow")||"scroll"===s.css("overflow")||"auto"===s.css("overflow-x")||"scroll"===s.css("overflow-x"),storedSizes:[]};for(d.resizableReset(e.table,!0),o.tableWidth=l.width(),o.fullWidth=Math.abs(s.width()-o.tableWidth)<20,o.useStorage&&o.overflow&&(d.storage(e.table,"tablesorter-table-original-css-width",o.tableWidth),a=d.storage(e.table,"tablesorter-table-resized-width")||"auto",d.resizable.setWidth(l,a,!0)),t.resizable_vars.storedSizes=s=(o.useStorage?d.storage(e.table,d.css.resizableStorage):[])||[],d.resizable.setWidths(e,t,s),d.resizable.updateStoredSizes(e,t),t.$resizable_container=c('
').css({top:n}).insertBefore(l),i=0;i').appendTo(t.$resizable_container).attr({"data-column":i,unselectable:"on"}).data("header",r).bind("selectstart",!1);d.resizable.bindings(e,t)}},updateStoredSizes:function(e,t){var r,i,a=e.columns,l=t.resizable_vars;for(l.storedSizes=[],r=0;r> Saving last sort: "+e.sortList+o.benchmark(a)):(l.addClass("hasSaveSort"),s="",o.storage&&(s=c(e),n&&console.log('saveSort >> Last sort loaded: "'+s+'"'+o.benchmark(a)),l.bind("saveSortReset",function(e){e.stopPropagation(),o.storage(t,"tablesorter-savesort","")})),i&&s&&0 +* @copyright 2007-2014 PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +$(document).ready(function(){ + PdProductAttributesList.initFancyboxOnProductImages(); + PdProductAttributesList.initTouchSpinOnProductQtyInputs(); + PdProductAttributesList.initEventAddToCartToButtons(); + + $("#pdproductattributeslist table.table").tablesorter({ + theme : 'default', + headerTemplate : '{content} {icon}', + widgets : [ "uitheme", "columns" ], + }); + + prestashop.on('updateProductList', function(params) { + if (typeof(params) !== 'undefined') { + PdProductAttributesList.initFancyboxOnProductImages(); + PdProductAttributesList.initTouchSpinOnProductQtyInputs(); + PdProductAttributesList.initEventAddToCartToButtons(); + } + }); +}); + + +let PdProductAttributesList = { + initFancyboxOnProductImages(){ + if (!!$.prototype.fancybox) { + $('.option_image a.fancybox').fancybox({ + 'hideOnContentClick': true, + 'openEffect' : 'elastic', + 'closeEffect' : 'elastic', + 'helpers' : { + overlay: { + locked: false + } + } + }); + } + }, + initTouchSpinOnProductQtyInputs(){ + if (!!$.prototype.TouchSpin) { + var max = parseInt($("#pdproductattributeslist input[name='qty']").data('max')); + $("#pdproductattributeslist input[name='qty']").TouchSpin({ + min: 0, + max: max, + step: 1, + decimals: 0, + verticalbuttons: true, + verticaldownclass: 'fa fa-angle-down touchspin-down bootstrap-touchspin-down material-icons touchspin-down', + verticalupclass: 'fa fa-angle-up touchspin-up bootstrap-touchspin-up material-icons touchspin-up', + buttondown_class: 'btn btn-touchspin js-touchspin ', + buttonup_class: 'btn btn-touchspin js-touchspin ' + }); + + $("#pdproductattributeslist_grid input[name='qty']").TouchSpin({ + min: 0, + max: 9999999999, + step: 1, + decimals: 0, + verticalbuttons: true, + verticaldownclass: 'fa fa-angle-down touchspin-down bootstrap-touchspin-down material-icons touchspin-down', + verticalupclass: 'fa fa-angle-up touchspin-up bootstrap-touchspin-up material-icons touchspin-up', + buttondown_class: 'btn btn-touchspin js-touchspin ', + buttonup_class: 'btn btn-touchspin js-touchspin ' + }); + } + }, + executeAddProductsToCart(products) { + $.ajax({ + type: 'POST', + url: pdproductattributeslist_ajax_link, + dataType: "json", + data: { + 'action': 'addProductsToCart', + 'products': products, + 'secure_key': pdproductattributeslist_secure_key, + 'ajax': 1 + }, + success: function(resp) { + if (resp) { + prestashop.emit('updateCart', { + reason: { + cart: [] + }, + resp: resp + }); + + Object.entries(resp).forEach(([k, v]) => { + if (v.response) { + if (v.id_product_attribute > 0) { + message_ok = pdproductattributeslist_product + ' ' + v.product_name + ', ' + pdproductattributeslist_variant + ' ' + v.combination_name + ' ' + pdproductattributeslist_add_ok; + $.growl({ title: pdproductattributeslist_title_ok, message: message_ok, duration: 7000}); + } else { + message_ok = pdproductattributeslist_product + ' ' + v.product_name + ', ' + pdproductattributeslist_add_ok; + $.growl({ title: pdproductattributeslist_title_ok, message: message_ok, duration: 7000}); + } + + } else if (v.response == false) { + if (v.id_product_attribute > 0) { + message_error = pdproductattributeslist_product + ' ' + v.product_name + ', ' + pdproductattributeslist_variant + ' ' + v.combination_name +', ' + pdproductattributeslist_max_qty + ' ' + v.max_quantity + ' ' + pdproductattributeslist_pcs; + $.growl.error({ title: pdproductattributeslist_title_error, message: message_error, duration: 15000}); + } else { + message_error = pdproductattributeslist_product + ' ' + v.product_name + ', ' + pdproductattributeslist_max_qty + ' ' + v.max_quantity + ' ' + pdproductattributeslist_pcs; + $.growl.error({ title: pdproductattributeslist_title_error, message: message_error, duration: 15000}); + } + } + }); + + } else { + $.growl.error({ title: pdproductattributeslist_title_error, message: pdproductattributeslist_add_error, duration: 15000}); + } + } + }); + }, + initEventAddToCartToButtons() { + $('body').on('click', 'button.add-to-cart-pdproductattributeslist', function(){ + var products_array = []; + var tr_colection = $(this).parent().parent().parent().find('tr'); + $(tr_colection).each(function(index) { + elem = $(this).find('td.option_gty'); + qty = parseInt(elem.find('input.quantity').val()); + if (elem.length > 0 && qty > 0) { + var product = { + 'id_product': parseInt(elem.data('id-product')), + 'id_product_attribute': parseInt(elem.data('id-product-attribute')), + 'quantity': qty, + 'id_customization': 0 + }; + products_array.push(product); + } + }); + if (products_array.length > 0) { + PdProductAttributesList.executeAddProductsToCart(products_array); + } else { + $.growl.error({ title: pdproductattributeslist_title_error, message: pdproductattributeslist_add_error}); + } + }); + } +}; \ No newline at end of file diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-alignChar.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-alignChar.min.js new file mode 100644 index 00000000..5eeadfe2 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-alignChar.min.js @@ -0,0 +1,3 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! Widget: alignChar - updated 2/7/2015 (v2.19.0) */ +!function(_){"use strict";var r=_.tablesorter;r.alignChar={init:function(a,i,t){i.$headers.filter("["+t.alignChar_charAttrib+"]").each(function(){var n=_(this),n={column:this.column,align:n.attr(t.alignChar_charAttrib),alignIndex:parseInt(n.attr(t.alignChar_indexAttrib)||0,10),adjust:parseFloat(n.attr(t.alignChar_adjustAttrib))||0};n.regex=new RegExp("\\"+n.align,"g"),void 0!==n.align&&(t.alignChar_savedVars[this.column]=n,r.alignChar.setup(a,i,t,n))})},setup:function(n,a,i,t){if(!_.isEmptyObject(a.cache)){for(var r,e,l,h,g,o,s,d,c,u,f,m,p,C=[],w=[],b=0;b=d)&&s||""),w.push(1<=d&&t.alignIndex>=d&&s||""))}for(u=_.extend([],C).sort(function(n,a){return a.length-n.length})[0],f=_.extend([],w).sort(function(n,a){return a.length-n.length})[0],t.width=t.width||Math.floor(u.length/(u.length+f.length)*100)+t.adjust,u="min-width:"+t.width+"%",f="min-width:"+(100-t.width)+"%",b=0;b'+C[r]+''+(h.length?m+h:"")+"");i.alignChar_initialized=!0}},remove:function(n,a,i){if(!_.isEmptyObject(a.cache))for(var t,r,e,l,h=0;h/.test(e))return g.html(r,e,n);try{if(e=f.parseJSON(e||"null"))return g.object(r,e,n)}catch(e){}}"array"===t||"string"===t||"array"===d||"csv"===d?g.csv(r,e,n):g.object(r,e,n)}var l="TABLE"===e.nodeName?f(e):f("").appendTo(e),r=l[0],n=o.widgetOptions=f.extend(!0,{},g.defaults,o.widgetOptions),i=n.build_processing,d=n.build_type,e=n.build_source||o.data,s=h.debug(o,"build");if(r.config=o,!h.buildTable.hasOwnProperty(d)&&""!==d)return s&&console.error("Build >> ERROR: Aborting build table widget, incorrect build type"),!1;e instanceof f?t(f.trim(e.html())):e&&(e.hasOwnProperty("url")||"json"===d)?f.ajax(n.build_source).done(function(e){t(e)}).fail(function(e,t){s&&console.error("Build >> ERROR: Aborting build table widget, failed ajax load"),l.html('")}):t(e)};h.defaults.data="",g.defaults={build_type:"",build_source:"",build_processing:null,build_complete:"tablesorter-build-complete",build_headers:{rows:1,classes:[],text:[],widths:[]},build_footers:{rows:1,classes:[],text:[]},build_numbers:{addColumn:!1,sortable:!1},build_csvStartLine:0,build_csvSeparator:",",build_objectRowKey:"rows",build_objectCellKey:"cells",build_objectHeaderKey:"headers",build_objectFooterKey:"footers"},g.build={colgroup:function(e){var l="";return e&&e.length&&(l+="",f.each(e,function(e,t){l+=""}),l+=""),l},cell:function(e,t,l,o,r){var n,i,d=r?f(""):"",s=t.build_headers.classes,t=t.build_headers.widths;if(/string|number/.test(typeof e))i=f("<"+l+(s&&s[o]?' class="'+s[o]+'"':"")+">"+e+""),r&&t&&t[o]&&d.width(t[o]||"");else for(n in i=f("<"+l+">"),e)e.hasOwnProperty(n)&&("text"===n||"html"===n?i[n](e[n]):r&&"width"===n?d.width(e[n]||""):i.attr(n,e[n]));return[i,d]},header:function(e,t){var l=t.build_headers.text,o=t.build_headers.classes,r=""+(t.build_numbers.addColumn?""+t.build_numbers.addColumn+"":"");return f.each(e,function(e,t){/<\s*\/t(d|h)\s*>/.test(t)?r+=t:r+=""+(l&&l[e]?l[e]:t)+""}),r+""},rows:function(e,l,o,t,r,n){var i=n?"th":"td",d=""+(t.build_numbers.addColumn?"<"+i+">"+(n?"":r)+"":"");return f.each(e,function(e,t){/<\s*\/t(d|h)\s*>/.test(t)?d+=t:d+="<"+(n?i+(o&&o[e]?' class="'+o[e]+'"':""):i)+">"+(n&&l&&l.length&&l[e]?l[e]:t)+""}),d+""}},g.buildComplete=function(e,t){f(e).triggerHandler(t.build_complete),e.config&&h.debug(e.config,"build")&&console.log("Build >> Table build complete"),h.setup(e,e.config)},g.array=function(e,t,l){return g.csv(e,t,l)},g.csv=function(e,t,l){var o,r,n="csv"===l.build_type||"string"==typeof t,i=f(e),t=n?t.replace("\r","").split("\n"):t,d=t.length,s=0,a=!1,u=l.build_headers.rows+(n?l.build_csvStartLine:0),c=l.build_footers.rows,b=0,h="",p=g.build.colgroup(l.build_headers.widths)+"";f.each(t,function(e,t){d-c<=e&&(a=!0),(!n||e>=l.build_csvStartLine)&&e"),r=n?g.splitCSV(t,l.build_csvSeparator):t,a&&0":"")+(e===d?"":"")),1",h?i.html(h):(i.html(p),g.buildComplete(e,l))},g.splitCSV=function(e,t){for(var l,o=f.trim(e).split(t=t||","),r=o.length-1;0<=r;r--)'"'===o[r].replace(/\"\s+$/,'"').charAt(o[r].length-1)?1<(l=o[r].replace(/^\s+\"/,'"')).length&&'"'===l.charAt(0)?o[r]=o[r].replace(/^\s*"|"\s*$/g,"").replace(/""/g,'"'):r?o.splice(r-1,2,[o[r-1],o[r]].join(t)):o=o.shift().split(t).concat(o):o[r].replace(/""/g,'"');return o},g.html=function(e,t,l){var o=f(e);t instanceof f?o.empty().append(t):o.html(t),g.buildComplete(e,l)},g.object=function(e,t,o){var l,r,n,i,d,s,a,u=e.config,c=o.build_objectHeaderKey,b=o.build_objectRowKey,c=t.hasOwnProperty(c)&&!f.isEmptyObject(t.kh)?t.kh:!!t.hasOwnProperty("headers")&&t.headers,b=t.hasOwnProperty(b)&&!f.isEmptyObject(t.kr)?t.kr:!!t.hasOwnProperty("rows")&&t.rows;if(!c||!b||0===c.length||0===b.length)return h.debug(u,"build")&&console.error("Build >> ERROR: Aborting build table widget, missing data for object build"),!1;i=f(""),d=f("
'+e.status+" "+t+"
"),f.each(c,function(e,t){for(a=f("").appendTo(d.find("thead")),r=t.length,l=0;l"),f.each(b,function(e,t){if((n="object"===f.type(t))&&t.newTbody)for(var l in s=f("").appendTo(d),t)t.hasOwnProperty(l)&&"newTbody"!==l&&s.attr(l,t[l]);else{if(0===e&&s.appendTo(d),a=f("").appendTo(s),n){for(l in t)t.hasOwnProperty(l)&&l!==o.build_objectCellKey&&a.attr(l,t[l]);t.hasOwnProperty(o.build_objectCellKey)&&(t=t.cells)}for(r=t.length,l=0;l"+i+"")):(i=f("").appendTo(d),f.each(n,function(e,t){for(a=f("").appendTo(i),r=t.length,l=0;l")}).$style=h("").prop("disabled",!0).appendTo("head"),a.$breakpoints=h("").prop("disabled",!0).appendTo("head"),a.isInitializing=!0,S.setUpColspan(t,o),S.setupSelector(t,o),o.columnSelector_mediaquery&&S.setupBreakpoints(t,o),a.isInitializing=!1,a.$container.length?S.updateCols(t,o):l&&console.warn("ColumnSelector >> container not found"),t.$table.off("refreshColumnSelector"+n).on("refreshColumnSelector"+n,function(e,t,o){S.refreshColumns(this.config,t,o)}),l&&console.log("ColumnSelector >> Widget initialized")):l&&console.error("ColumnSelector >> ERROR: Column Selector aborting, no input found in the layout! ***")},refreshColumns:function(e,t,o){var l,a,n,c,r=e.selector,s=h.isArray(o||t),i=e.widgetOptions;if(null!=t&&r.$container.length){if("selectors"===t&&(r.$container.empty(),S.setupSelector(e,i),S.setupBreakpoints(e,i),void 0===o)&&null!==o&&(o=r.auto),s)for(a=o||t,h.each(a,function(e,t){a[e]=parseInt(t,10)}),l=0;l tr > ",l=h(o+"th,"+o+"td"),a=[],n=0;n'),o=n.selector,l=n.widgetOptions,e.find(".tablesorter-column-selector").html(o.$container.html()).find("input").each(function(){var e=h(this).attr("data-column"),e="auto"===e?o.auto:o.states[e];h(this).toggleClass(l.columnSelector_cssChecked,e).prop("checked",e)}),o.$popup=e.on("change","input",function(){if(!o.isInitializing){if(!S.checkChange(n,this.checked))return this.checked=!this.checked,!1;a=h(this).toggleClass(l.columnSelector_cssChecked,this.checked).attr("data-column"),o.$container.find('input[data-column="'+a+'"]').prop("checked",this.checked).trigger("change")}}))}};f.window_resize=function(){f.timer_resize&&clearTimeout(f.timer_resize),f.timer_resize=setTimeout(function(){h(window).trigger("resizeEnd")},250)},f.addWidget({id:"columnSelector",priority:10,options:{columnSelector_container:null,columnSelector_columns:{},columnSelector_saveColumns:!0,columnSelector_layout:'',columnSelector_layoutCustomizer:null,columnSelector_name:"data-selector-name",columnSelector_mediaquery:!0,columnSelector_mediaqueryName:"Auto: ",columnSelector_mediaqueryState:!0,columnSelector_mediaqueryHidden:!1,columnSelector_maxVisible:null,columnSelector_minVisible:null,columnSelector_breakpoints:["20em","30em","40em","50em","60em","70em"],columnSelector_maxPriorities:6,columnSelector_priority:"data-priority",columnSelector_cssChecked:"checked",columnSelector_classHasSpan:"hasSpan",columnSelector_updated:"columnUpdate"},init:function(e,t,o,l){S.init(e,o,l)},remove:function(e,t,o,l){var a=t.selector;!l&&a&&(a&&a.$container.empty(),a.$popup&&a.$popup.empty(),a.$style.remove(),a.$breakpoints.remove(),h(t.namespace+"columnselector"+o.columnSelector_classHasSpan).removeClass(o.filter_filteredRow||"filtered"),t.$table.find("[data-col-span]").each(function(e,t){t=h(t);t.attr("colspan",t.attr("data-col-span"))}),t.$table.off("updateAll"+n+" update"+n))}})}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-columns.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-columns.min.js new file mode 100644 index 00000000..1bd9b58f --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-columns.min.js @@ -0,0 +1,3 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! Widget: columns - updated 5/24/2017 (v2.28.11) */ +!function(p){"use strict";var b=p.tablesorter||{};b.addWidget({id:"columns",priority:65,options:{columns:["primary","secondary","tertiary"]},format:function(e,r,o){for(var t,s,n,i,a,d=r.$table,l=r.$tbodies,c=r.sortList,h=c.length,f=o&&o.columns||["primary","secondary","tertiary"],m=f.length-1,y=f.join(" "),u=0;u").wrapInner(t.editable_wrapContent).children().length||b.isFunction(t.editable_wrapContent),r=p.getColumns(e,t).join(",");for(e.$tbodies.find(r).find("[contenteditable]").prop("contenteditable",!1),a=(i=e.$tbodies.find(r).not("."+t.editable_noEdit)).length,o=0;o"+t.html()+"
",t.html(b(e).text().trim()))},0)})},destroy:function(e,t){var n=p.namespace,t=p.getColumns(e,t),i="updateComplete pagerComplete ".split(" ").join(n+" ").replace(/\s+/g," ");e.$table.off(i),i="focus focusout keydown paste ".split(" ").join(n+" ").replace(/\s+/g," "),e.$tbodies.off(i).find(t.join(",")).find("[contenteditable]").prop("contenteditable",!1)}};b.tablesorter.addWidget({id:"editable",options:{editable_columns:[],editable_enterToAccept:!0,editable_autoAccept:!0,editable_autoResort:!1,editable_wrapContent:"
",editable_trimContent:!0,editable_validate:null,editable_focused:null,editable_blur:null,editable_selectAll:!1,editable_noEdit:"no-edit",editable_editComplete:"editComplete"},init:function(e,t,n,i){i.editable_columns.length&&(p.update(n,i),p.bindEvents(n,i))},remove:function(e,t,n,i){i||p.destroy(t,n)}})}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-filter-formatter-html5.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-filter-formatter-html5.min.js new file mode 100644 index 00000000..7f13c3c1 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-filter-formatter-html5.min.js @@ -0,0 +1,3 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! Widget: filter, html5 formatter functions - updated 7/17/2014 (v2.17.5) */ +!function(p){"use strict";var u=p.tablesorter||{},f=".compare-select",m=u.filterFormatter=p.extend({},u.filterFormatter,{addCompare:function(e,t,a){var n,i,l;a.compare&&p.isArray(a.compare)&&1'+a.cellText+"":"",p.each(a.compare,function(e,t){n+=""}),e.wrapInner('
').prepend(l+'').appendTo(l),i=r.skipTest||"number"===e.attr("type")&&"test"!==e.val(),c=[],o=l.closest("table")[0].config;return e.remove(),i&&(n=r.addToggle?'
':"",n+='',l.append(n+'').find(".toggle, .number").bind("change",function(){a()}).closest("thead").find("th[data-column="+t+"]").addClass("filter-parsed").closest("table").bind("filterReset",function(){p.isArray(r.compare)&&l.add(c).find(f).val(r.compare[r.selected||0]),r.addToggle&&(l.find(".toggle")[0].checked=!1,c.length)&&(c.find(".toggle")[0].checked=!1),l.find(".number").val(r.value),setTimeout(function(){a()},0)}),d=l.find("input[type=hidden]").bind("change",function(){l.find(".number").val(this.value),a()}),o.$table.bind("filterFomatterUpdate",function(){var e=m.updateCompare(l,d,r)[0]||r.value;l.find(".number").val(((e||"")+"").replace(/[><=]/g,"")),a(!1,!0),u.filter.formatterUpdated(l,t)}),r.compare&&(m.addCompare(l,t,r),l.find(f).bind("change",function(){a()})),o.$table.bind("stickyHeadersInit",function(){(c=o.widgetOptions.$sticky.find(".tablesorter-filter-row").children().eq(t).empty()).append(n).find(".toggle, .number").bind("change",function(){l.find(".number").val(p(this).val()),a()}),r.compare&&(m.addCompare(c,t,r),c.find(f).bind("change",function(){l.find(f).val(p(this).val()),a()})),a()}),a()),i?l.find('input[type="hidden"]'):p('')},html5Range:function(l,d,e){function a(e,t,a){e=(void 0===e?r.val():e).toString().replace(/[<>=]/g,"")||c.value;var n=(p.isArray(c.compare)?l.find(f).val()||c.compare[c.selected||0]:c.compare)||"",i=" ("+(n?n+e:e==c.min?c.allText:e)+")",t=!s.$table[0].hasInitialized||t||c.delayed||"";l.find("input[type=hidden]").val(n?n+e:e==c.min?"":(c.exactMatch?"=":"")+e).trigger(a?"":"search",t).end().find(".range").val(e),l.closest("thead").find("th[data-column="+d+"]").find(".curvalue").html(i),o.length&&(o.find(".range").val(e).end().find(f).val(n),o.closest("thead").find("th[data-column="+d+"]").find(".curvalue").html(i))}var r,c=p.extend({value:0,min:0,max:100,step:1,delayed:!0,valueToHeader:!0,exactMatch:!0,cellText:"",compare:"",allText:"all",skipTest:!1},e),e=p('').appendTo(l),t=c.skipTest||"range"===e.attr("type")&&"test"!==e.val(),o=[],s=l.closest("table")[0].config;return e.remove(),t&&(l.html('').closest("thead").find("th[data-column="+d+"]").addClass("filter-parsed").find(".tablesorter-header-inner").append(''),r=l.find("input[type=hidden]").bind("change"+s.namespace+"filter",function(){var e=this.value,t=(p.isArray(c.compare)?l.find(f).val()||c.compare[c.selected||0]:c.compare)||"";e!==this.lastValue&&(this.lastValue=t?t+e:e==c.min?"":(c.exactMatch?"=":"")+e,this.value=this.lastValue,a(e))}),l.find(".range").bind("change",function(){a(this.value)}),s.$table.bind("filterFomatterUpdate",function(){var e=m.updateCompare(l,r,c)[0];l.find(".range").val(e),a(e,!1,!0),u.filter.formatterUpdated(l,d)}),c.compare&&(m.addCompare(l,d,c),l.find(f).bind("change",function(){a()})),s.$table.bind("stickyHeadersInit",function(){(o=s.widgetOptions.$sticky.find(".tablesorter-filter-row").children().eq(d).empty()).html('').find(".range").bind("change",function(){a(o.find(".range").val())}),a(),c.compare&&(m.addCompare(o,d,c),o.find(f).bind("change",function(){l.find(f).val(p(this).val()),a()}))}),l.closest("table").bind("filterReset",function(){p.isArray(c.compare)&&l.add(o).find(f).val(c.compare[c.selected||0]),setTimeout(function(){a(c.value,!1,!0)},0)}),a()),t?l.find('input[type="hidden"]'):p('')},html5Color:function(i,l,e){function t(e,t){var a=!0,n=" ("+(e=(void 0===e?d.val():e).toString().replace("=","")||r.value)+")";r.addToggle&&(a=i.find(".toggle").is(":checked")),i.find(".colorpicker").length&&(i.find(".colorpicker").val(e)[0].disabled=r.disabled||!a),d.val(a?e+(r.exactMatch?"=":""):"").trigger(!o.$table[0].hasInitialized||t?"":"search"),(r.valueToHeader?i.closest("thead").find("th[data-column="+l+"]").find(".curcolor"):i.find(".currentColor")).html(n),c.length&&(c.find(".colorpicker").val(e)[0].disabled=r.disabled||!a,r.addToggle&&(c.find(".toggle")[0].checked=a),(r.valueToHeader?c.closest("thead").find("th[data-column="+l+"]").find(".curcolor"):c.find(".currentColor")).html(n))}var a,d,r=p.extend({value:"#000000",disabled:!1,addToggle:!0,exactMatch:!0,valueToHeader:!1,skipTest:!1},e),e=p('').appendTo(i),n=r.skipTest||"color"===e.attr("type")&&"test"!==e.val(),c=[],o=i.closest("table")[0].config;return e.remove(),n&&(a=""+l+Math.round(100*Math.random()),a='
'+(r.addToggle?'
':"")+''+(r.valueToHeader?"":'(#000000)')+"
",i.html(a),r.valueToHeader&&i.closest("thead").find("th[data-column="+l+"]").find(".tablesorter-header-inner").append(''),i.find(".toggle, .colorpicker").bind("change",function(){t(i.find(".colorpicker").val())}),d=i.find("input[type=hidden]").bind("change"+o.namespace+"filter",function(){t(this.value)}),o.$table.bind("filterFomatterUpdate",function(){t(d.val(),!0),u.filter.formatterUpdated(i,l)}),i.closest("table").bind("filterReset",function(){r.addToggle&&(i.find(".toggle")[0].checked=!1),setTimeout(function(){t()},0)}),o.$table.bind("stickyHeadersInit",function(){(c=o.widgetOptions.$sticky.find(".tablesorter-filter-row").children().eq(l)).html(a).find(".toggle, .colorpicker").bind("change",function(){t(c.find(".colorpicker").val())}),t(c.find(".colorpicker").val())}),t(r.value)),n?i.find('input[type="hidden"]'):p('')}})}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-filter-formatter-jui.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-filter-formatter-jui.min.js new file mode 100644 index 00000000..460c3bd1 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-filter-formatter-jui.min.js @@ -0,0 +1,3 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! Widget: filter jQuery UI formatter functions - updated 7/17/2014 (v2.17.5) */ +!function(c){"use strict";var p=c.tablesorter||{},f=".compare-select",u=p.filterFormatter=c.extend({},p.filterFormatter,{addCompare:function(e,a,t){var n,d,i;t.compare&&c.isArray(t.compare)&&1'+t.cellText+"":"",c.each(t.compare,function(e,a){n+=""}),e.wrapInner('
').prepend(i+'').appendTo(l).bind("change"+o.namespace+"filter",function(){n({value:this.value,delayed:!1})}),s=[],n=function(e,a){var t,n=!0,d=e&&e.value&&p.formatFloat((e.value+"").replace(/[><=]/g,""))||l.find(".spinner").val()||r.value,i=(c.isArray(r.compare)?l.find(f).val()||r.compare[r.selected||0]:r.compare)||"",e=e&&"boolean"==typeof e.delayed?e.delayed:!o.$table[0].hasInitialized||r.delayed||"";r.addToggle&&(n=l.find(".toggle").is(":checked")),t=r.disabled||!n?"disable":"enable",p.isEmptyObject(l.find(".spinner").data())||(l.find(".filter").val(n?(i||(r.exactMatch?"=":""))+d:"").trigger(a?"":"search",e).end().find(".spinner").spinner(t).val(d),s.length&&(s.find(".spinner").spinner(t).val(d).end().find(f).val(i),r.addToggle)&&(s.find(".toggle")[0].checked=n))};return r.oldcreate=r.create,r.oldspin=r.spin,r.create=function(e,a){n(),"function"==typeof r.oldcreate&&r.oldcreate(e,a)},r.spin=function(e,a){n(a),"function"==typeof r.oldspin&&r.oldspin(e,a)},r.addToggle&&c('
').appendTo(l).find(".toggle").bind("change",function(){n()}),l.closest("thead").find("th[data-column="+a+"]").addClass("filter-parsed"),c('').val(r.value).appendTo(l).spinner(r).bind("change keyup",function(){n()}),o.$table.bind("filterFomatterUpdate"+o.namespace+"filter",function(){var e=u.updateCompare(l,t,r)[0];l.find(".spinner").val(e),n({value:e},!0),p.filter.formatterUpdated(l,a)}),r.compare&&(u.addCompare(l,a,r),l.find(f).bind("change",function(){n()})),o.$table.bind("stickyHeadersInit"+o.namespace+"filter",function(){s=o.widgetOptions.$sticky.find(".tablesorter-filter-row").children().eq(a).empty(),r.addToggle&&c('
').appendTo(s).find(".toggle").bind("change",function(){l.find(".toggle")[0].checked=this.checked,n()}),c('').val(r.value).appendTo(s).spinner(r).bind("change keyup",function(){l.find(".spinner").val(this.value),n()}),r.compare&&(u.addCompare(s,a,r),s.find(f).bind("change",function(){l.find(f).val(c(this).val()),n()}))}),o.$table.bind("filterReset"+o.namespace+"filter",function(){c.isArray(r.compare)&&l.add(s).find(f).val(r.compare[r.selected||0]),r.addToggle&&(l.find(".toggle")[0].checked=!1),l.find(".spinner").spinner("value",r.value),setTimeout(function(){n()},0)}),n(),t},uiSlider:function(i,l,e){var r=c.extend({delayed:!0,valueToHeader:!1,exactMatch:!0,cellText:"",compare:"",allText:"all",value:0,min:0,max:100,step:1,range:"min"},e),o=i.closest("table")[0].config,a=c('').appendTo(i).bind("change"+o.namespace+"filter",function(){t({value:this.value})}),s=[],t=function(e,a){var t=void 0!==e&&p.formatFloat((e.value+"").replace(/[><=]/g,""))||r.value,n=!r.compare&&t===r.min?r.allText:t,d=(c.isArray(r.compare)?i.find(f).val()||r.compare[r.selected||0]:r.compare)||"",n=d+n,e=e&&"boolean"==typeof e.delayed?e.delayed:!o.$table[0].hasInitialized||r.delayed||"";r.valueToHeader?i.closest("thead").find("th[data-column="+l+"]").find(".curvalue").html(" ("+n+")"):i.find(".ui-slider-handle").addClass("value-popup").attr("data-value",n),p.isEmptyObject(i.find(".slider").data())||(i.find(".filter").val(d?d+t:t===r.min?"":(r.exactMatch?"=":"")+t).trigger(a?"":"search",e).end().find(".slider").slider("value",t),s.length&&(s.find(f).val(d).end().find(".slider").slider("value",t),r.valueToHeader?s.closest("thead").find("th[data-column="+l+"]").find(".curvalue").html(" ("+n+")"):s.find(".ui-slider-handle").addClass("value-popup").attr("data-value",n)))};return i.closest("thead").find("th[data-column="+l+"]").addClass("filter-parsed"),r.valueToHeader&&i.closest("thead").find("th[data-column="+l+"]").find(".tablesorter-header-inner").append(''),r.oldcreate=r.create,r.oldslide=r.slide,r.create=function(e,a){t(),"function"==typeof r.oldcreate&&r.oldcreate(e,a)},r.slide=function(e,a){t(a),"function"==typeof r.oldslide&&r.oldslide(e,a)},c('
').appendTo(i).slider(r),o.$table.bind("filterFomatterUpdate"+o.namespace+"filter",function(){var e=u.updateCompare(i,a,r)[0];i.find(".slider").slider("value",e),t({value:e},!1),p.filter.formatterUpdated(i,l)}),r.compare&&(u.addCompare(i,l,r),i.find(f).bind("change",function(){t({value:i.find(".slider").slider("value")})})),o.$table.bind("filterReset"+o.namespace+"filter",function(){c.isArray(r.compare)&&i.add(s).find(f).val(r.compare[r.selected||0]),setTimeout(function(){t({value:r.value})},0)}),o.$table.bind("stickyHeadersInit"+o.namespace+"filter",function(){s=o.widgetOptions.$sticky.find(".tablesorter-filter-row").children().eq(l).empty(),c('
').val(r.value).appendTo(s).slider(r).bind("change keyup",function(){i.find(".slider").slider("value",this.value),t()}),r.compare&&(u.addCompare(s,l,r),s.find(f).bind("change",function(){i.find(f).val(c(this).val()),t()}))}),a},uiRange:function(i,l,e){var r=c.extend({delayed:!0,valueToHeader:!1,values:[0,100],min:0,max:100,range:!0},e),o=i.closest("table")[0].config,t=c('').appendTo(i).bind("change"+o.namespace+"filter",function(){a()}),s=[],a=function(){var e=t.val(),a=e.split(" - ");(a=""===e?[r.min,r.max]:a)&&a[1]&&n({values:a,delay:!1},!0)},n=function(e,a){var t=e&&e.values||r.values,n=t[0]+" - "+t[1],d=t[0]===r.min&&t[1]===r.max?"":n,e=e&&"boolean"==typeof e.delayed?e.delayed:!o.$table[0].hasInitialized||r.delayed||"";r.valueToHeader?i.closest("thead").find("th[data-column="+l+"]").find(".currange").html(" ("+n+")"):i.find(".ui-slider-handle").addClass("value-popup").eq(0).attr("data-value",t[0]).end().eq(1).attr("data-value",t[1]),p.isEmptyObject(i.find(".range").data())||(i.find(".filter").val(d).trigger(a?"":"search",e).end().find(".range").slider("values",t),s.length&&(s.find(".range").slider("values",t),r.valueToHeader?s.closest("thead").find("th[data-column="+l+"]").find(".currange").html(" ("+n+")"):s.find(".ui-slider-handle").addClass("value-popup").eq(0).attr("data-value",t[0]).end().eq(1).attr("data-value",t[1])))};return i.closest("thead").find("th[data-column="+l+"]").addClass("filter-parsed"),r.valueToHeader&&i.closest("thead").find("th[data-column="+l+"]").find(".tablesorter-header-inner").append(''),r.oldcreate=r.create,r.oldslide=r.slide,r.create=function(e,a){n(),"function"==typeof r.oldcreate&&r.oldcreate(e,a)},r.slide=function(e,a){n(a),"function"==typeof r.oldslide&&r.oldslide(e,a)},c('
').appendTo(i).slider(r),o.$table.bind("filterFomatterUpdate"+o.namespace+"filter",function(){a(),p.filter.formatterUpdated(i,l)}),o.$table.bind("filterReset"+o.namespace+"filter",function(){i.find(".range").slider("values",r.values),setTimeout(function(){n()},0)}),o.$table.bind("stickyHeadersInit"+o.namespace+"filter",function(){s=o.widgetOptions.$sticky.find(".tablesorter-filter-row").children().eq(l).empty(),c('
').val(r.value).appendTo(s).slider(r).bind("change keyup",function(){i.find(".range").val(this.value),n()})}),t},uiDateCompare:function(i,t,e){function n(e){var a,t=s.datepicker("getDate")||"",n=(c.isArray(l.compare)?i.find(f).val()||l.compare[l.selected||0]:l.compare)||"",d=!r.$table[0].hasInitialized||l.delayed||"";s.datepicker("setDate",(""===t?"":t)||null),""===t&&(e=!1),a=(t=s.datepicker("getDate"))&&(l.endOfDay&&/<=/.test(n)?t.setHours(23,59,59,999):t.getTime())||"",t&&l.endOfDay&&"="===n&&(n="",a+=" - "+t.setHours(23,59,59,999),e=!1),i.find(".dateCompare").val(n+a).trigger(e?"":"search",d).end(),o.length&&o.find(".dateCompare").val(n+a).end().find(f).val(n)}var l=c.extend({cellText:"",compare:"",endOfDay:!0,defaultDate:"",changeMonth:!0,changeYear:!0,numberOfMonths:1},e),r=i.closest("table")[0].config,e=i.closest("thead").find("th[data-column="+t+"]").addClass("filter-parsed"),d=c('').appendTo(i).bind("change"+r.namespace+"filter",function(){var e=this.value;e&&l.onClose(e)}),o=[],a='',s=c(a).appendTo(i);return l.oldonClose=l.onClose,l.onClose=function(e,a){n(),"function"==typeof l.oldonClose&&l.oldonClose(e,a)},s.datepicker(l),r.$table.bind("filterReset"+r.namespace+"filter",function(){c.isArray(l.compare)&&i.add(o).find(f).val(l.compare[l.selected||0]),i.add(o).find(".date").val(l.defaultDate).datepicker("setDate",l.defaultDate||null),setTimeout(function(){n()},0)}),r.$table.bind("filterFomatterUpdate"+r.namespace+"filter",function(){var e,a=d.val();/\s+-\s+/.test(a)?(i.find(f).val("="),e=a.split(/\s+-\s+/)[0],s.datepicker("setDate",e||null)):e=""!==(e=u.updateCompare(i,d,l)[1].toString()||"")?/\d{5}/g.test(e)?new Date(Number(e)):e||"":"",i.add(o).find(".date").datepicker("setDate",e||null),setTimeout(function(){n(!0),p.filter.formatterUpdated(i,t)},0)}),l.compare&&(u.addCompare(i,t,l),i.find(f).bind("change",function(){n()})),r.$table.bind("stickyHeadersInit"+r.namespace+"filter",function(){(o=r.widgetOptions.$sticky.find(".tablesorter-filter-row").children().eq(t).empty()).append(a).find(".date").datepicker(l),l.compare&&(u.addCompare(o,t,l),o.find(f).bind("change",function(){i.find(f).val(c(this).val()),n()}))}),d.val(l.defaultDate||"")},uiDatepicker:function(i,n,e){function l(e){return e instanceof Date&&isFinite(e)}var d,r=c.extend({endOfDay:!0,textFrom:"from",textTo:"to",from:"",to:"",changeMonth:!0,changeYear:!0,numberOfMonths:1},e),o=[],a=i.closest("table")[0].config,s=c('').appendTo(i).bind("change"+a.namespace+"filter",function(){var e=this.value;e.match(" - ")?(e=e.split(" - "),i.find(".dateTo").val(e[1]),d(e[0])):e.match(">=")?d(e.replace(">=","")):e.match("<=")&&d(e.replace("<=",""))}),e=i.closest("thead").find("th[data-column="+n+"]").addClass("filter-parsed"),t="';return c(t).appendTo(i),r.oldonClose=r.onClose,d=r.onClose=function(e,a){var t=i.find(".dateFrom").datepicker("getDate"),n=i.find(".dateTo").datepicker("getDate"),t=l(t)?t.getTime():"",n=l(n)&&(r.endOfDay?n.setHours(23,59,59,999):n.getTime())||"",d=t?n?t+" - "+n:">="+t:n?"<="+n:"";i.add(o).find(".dateRange").val(d).trigger("search"),t=t?new Date(t):"",n=n?new Date(n):"",/<=/.test(d)?i.add(o).find(".dateFrom").datepicker("option","maxDate",n||null).end().find(".dateTo").datepicker("option","minDate",null).datepicker("setDate",n||null):/>=/.test(d)?i.add(o).find(".dateFrom").datepicker("option","maxDate",null).datepicker("setDate",t||null).end().find(".dateTo").datepicker("option","minDate",t||null):i.add(o).find(".dateFrom").datepicker("option","maxDate",null).datepicker("setDate",t||null).end().find(".dateTo").datepicker("option","minDate",null).datepicker("setDate",n||null),"function"==typeof r.oldonClose&&r.oldonClose(e,a)},r.defaultDate=r.from||"",i.find(".dateFrom").datepicker(r),r.defaultDate=r.to||"+7d",i.find(".dateTo").datepicker(r),a.$table.bind("filterFomatterUpdate"+a.namespace+"filter",function(){var e=s.val()||"",a="",t="";/\s+-\s+/.test(e)?(a=(e=e.split(/\s+-\s+/)||[])[0]||"",t=e[1]||""):/>=/.test(e)?a=e.replace(/>=/,"")||"":/<=/.test(e)&&(t=e.replace(/<=/,"")||""),a=""!==a?/\d{5}/g.test(a)?new Date(Number(a)):a||"":"",t=""!==t?/\d{5}/g.test(t)?new Date(Number(t)):t||"":"",i.add(o).find(".dateFrom").datepicker("setDate",a||null),i.add(o).find(".dateTo").datepicker("setDate",t||null),setTimeout(function(){d(),p.filter.formatterUpdated(i,n)},0)}),a.$table.bind("stickyHeadersInit"+a.namespace+"filter",function(){(o=a.widgetOptions.$sticky.find(".tablesorter-filter-row").children().eq(n).empty()).append(t),r.defaultDate=r.from||"",o.find(".dateFrom").datepicker(r),r.defaultDate=r.to||"+7d",o.find(".dateTo").datepicker(r)}),i.closest("table").bind("filterReset"+a.namespace+"filter",function(){i.add(o).find(".dateFrom").val("").datepicker("setDate",r.from||null),i.add(o).find(".dateTo").val("").datepicker("setDate",r.to||null),setTimeout(function(){d()},0)}),s.val(r.from?r.to?r.from+" - "+r.to:">="+r.from:r.to?"<="+r.to:"")}})}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-filter-formatter-select2.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-filter-formatter-select2.min.js new file mode 100644 index 00000000..0add75a5 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-filter-formatter-select2.min.js @@ -0,0 +1,3 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! Widget: filter, select2 formatter function - updated 12/1/2019 (v2.31.2) */ +!function(v){"use strict";var g=v.tablesorter||{};g.filterFormatter=g.filterFormatter||{},g.filterFormatter.select2=function(i,c,e){function t(){a=[],l=g.filter.getOptionSource(s.$table[0],c,o)||[],v.each(l,function(e,t){a.push({id:""+t.parsed,text:t.text})}),n.data=a}var l,a,n=v.extend({cellText:"",match:!0,value:"",multiple:!0,width:"100%"},e),s=i.addClass("select2col"+c).closest("table")[0].config,e=s.widgetOptions,d=v('').appendTo(i).bind("change"+s.namespace+"filter",function(){var e=b(this.value);s.$table.find(".select2col"+c+" .select2").select2("val",e),$()}),r=s.$headerIndexed[c],o=r.hasClass(e.filter_onlyAvail),f=n.match?"":"^",p=n.match?"":"$",u=e.filter_ignoreCase?"i":"",b=function(e){return e.replace(/^\/\(\^?/,"").replace(/\$\|\^/g,"|").replace(/\$?\)\/i?$/g,"").replace(/\\/g,"").split("|")},$=function(){var e=!1,t=s.$table.find(".select2col"+c+" .select2").select2("val")||n.value||"",l=(v.isArray(t)&&(e=!0,t=t.join("\0")),t.replace(/[-[\]{}()*+?.,/\\^$|#]/g,"\\$&"));e&&(t=t.split("\0"),l=l.split("\0")),g.isEmptyObject(i.find(".select2").data())||(d.val(v.isArray(l)&&l.length&&""!==l.join("")?"/("+f+(l||[]).join(p+"|"+f)+p+")/"+u:"").trigger("search"),i.find(".select2").select2("val",t),s.widgetOptions.$sticky&&s.widgetOptions.$sticky.find(".select2col"+c+" .select2").select2("val",t))};return r.toggleClass("filter-match",n.match),n.cellText&&i.prepend(""),n.ajax&&!v.isEmptyObject(n.ajax)||n.data||(t(),s.$table.bind("filterEnd",function(){t(),s.$table.find(".select2col"+c).add(s.widgetOptions.$sticky&&s.widgetOptions.$sticky.find(".select2col"+c)).find(".select2").select2(n)})),v('').val(n.value).appendTo(i).select2(n).bind("change",function(){$()}),s.$table.bind("filterFomatterUpdate",function(){var e=b(s.$table.data("lastSearch")[c]||"");(i=s.$table.find(".select2col"+c)).find(".select2").select2("val",e),$(),g.filter.formatterUpdated(i,c)}),s.$table.bind("stickyHeadersInit",function(){var e=s.widgetOptions.$sticky.find(".select2col"+c).empty();v('').val(n.value).appendTo(e).select2(n).bind("change",function(){s.$table.find(".select2col"+c).find(".select2").select2("val",s.widgetOptions.$sticky.find(".select2col"+c+" .select2").select2("val")),$()}),n.cellText&&e.prepend("")}),s.$table.bind("filterReset",function(){s.$table.find(".select2col"+c).find(".select2").select2("val",n.value||""),setTimeout(function(){$()},0)}),$(),d}}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-filter-type-insideRange.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-filter-type-insideRange.min.js new file mode 100644 index 00000000..aaf74092 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-filter-type-insideRange.min.js @@ -0,0 +1,3 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! Widget: filter, insideRange filter type - updated 12/10/2015 (v2.25.0) */ +!function(){"use strict";function c(t){return isNaN(t)?t:parseFloat(t)}var t=jQuery.tablesorter,u=/\d+/,o=/\s+-\s+/;t.filter.types.insideRange=function(t,e){var i,r,n,a,s,l;return e.anyMatch||!u.test(e.iFilter)||!o.test(e.iExact)||(n=e.index,a=e.$cells[n],s=e.iExact.split(o),l=t.parsers[e.index]&&t.parsers[e.index].format,s&&s.length<2)||"function"!=typeof l?null:(r=c(l(s[0],t.table,a,n)),(s=c(l(s[1],t.table,a,n)))=]/g,query:"(q|query)",wild01:/\?/g,wild0More:/\*/g,quote:/\"/g,isNeg1:/(>=?\s*-\d)/,isNeg2:/(<=?\s*\d)/},types:{or:function(e,t,r){if(!D.orTest.test(t.iFilter)&&!D.orSplit.test(t.filter)||D.regex.test(t.filter))return null;for(var i,l,a=M.extend({},t),n=t.filter.split(D.orSplit),s=t.iFilter.split(D.orSplit),o=n.length,c=0;c]=?/,gtTest:/>/,gteTest:/>=/,ltTest:/'+(a.data("placeholder")||a.attr("data-placeholder")||d.filter_placeholder.select||"")+"":"",0<=(l=s=i).indexOf(d.filter_selectSourceSeparator)&&(l=(s=i.split(d.filter_selectSourceSeparator))[1],s=s[0]),t+="");f.$table.find("thead").find("select."+g.filter+'[data-column="'+n+'"]').append(t),("function"==typeof(l=d.filter_selectSource)||z.getColumnData(r,l,n))&&I.buildSelect(f.table,n,"",!0,a.hasClass(d.filter_onlyAvail))}I.buildDefault(r,!0),I.bindSearch(r,f.$table.find("."+g.filter),!0),d.filter_external&&I.bindSearch(r,d.filter_external),d.filter_hideFilters&&I.hideFilters(f),f.showProcessing&&(l="filterStart filterEnd ".split(" ").join(f.namespace+"filter-sp "),f.$table.unbind(l.replace(z.regex.spaces," ")).bind(l,function(e,t){a=t?f.$table.find("."+g.header).filter("[data-column]").filter(function(){return""!==t[M(this).data("column")]}):"",z.isProcessing(r,"filterStart"===e.type,t?a:"")})),f.filteredRows=f.totalRows,l="tablesorter-initialized pagerBeforeInitialized ".split(" ").join(f.namespace+"filter "),f.$table.unbind(l.replace(z.regex.spaces," ")).bind(l,function(){I.completeInit(this)}),f.pager&&f.pager.initialized&&!d.filter_initialized?(f.$table.triggerHandler("filterFomatterUpdate"),setTimeout(function(){I.filterInitComplete(f)},100)):d.filter_initialized||I.completeInit(r)},completeInit:function(e){var t=e.config,r=t.widgetOptions,i=I.setDefaults(e,t,r)||[];!i.length||t.delayInit&&""===i.join("")||z.setFilters(e,i,!0),t.$table.triggerHandler("filterFomatterUpdate"),setTimeout(function(){r.filter_initialized||I.filterInitComplete(t)},100)},formatterUpdated:function(e,t){e=e&&e.closest("table"),e=e.length&&e[0].config,e=e&&e.widgetOptions;e&&!e.filter_initialized&&(e.filter_formatterInit[t]=1)},filterInitComplete:function(e){function t(){l.filter_initialized=!0,e.lastSearch=e.$table.data("lastSearch"),e.$table.triggerHandler("filterInit",e),I.findRows(e.table,e.lastSearch||[]),z.debug(e,"filter")&&console.log("Filter >> Widget initialized")}var r,i,l=e.widgetOptions,a=0;if(M.isEmptyObject(l.filter_formatter))t();else{for(i=l.filter_formatterInit.length,r=0;r',p=0;p");for(t.$filters=M(h+="").appendTo(t.$table.children("thead").eq(0)).children("td"),p=0;p").appendTo(i):((o=z.getColumnData(e,r.filter_formatter,p))?(r.filter_formatterCount++,(h=(h=o(i,p))&&0===h.length?i.children("input"):h)&&(0===h.parent().length||h.parent().length&&h.parent()[0]!==i[0])&&i.append(h)):h=M('').appendTo(i),h&&(c=l.data("placeholder")||l.attr("data-placeholder")||r.filter_placeholder.search||"",h.attr("placeholder",c))),h)&&(s=(M.isArray(r.filter_cssFilter)?void 0!==r.filter_cssFilter[p]&&r.filter_cssFilter[p]||"":r.filter_cssFilter)||"",h.addClass(g.filter+" "+s),c=(s=r.filter_filterLabel).match(/{{([^}]+?)}}/g),M.each(c=c||["{{label}}"],function(e,t){var r=new RegExp(t,"g"),t=l.attr("data-"+t.replace(/{{|}}/g,"")),t=void 0===t?l.text():t;s=s.replace(r,M.trim(t))}),h.attr({"data-column":i.attr("data-column"),"aria-label":s}),n)&&(h.attr("placeholder","").addClass(g.filterDisabled)[0].disabled=!0)},bindSearch:function(l,e,t){var r,a,n,i,s;l=M(l)[0],(e=M(e)).length&&(a=l.config,n=a.widgetOptions,i=a.namespace+"filter",s=n.filter_$externalFilters,!0!==t&&(r=n.filter_anyColumnSelector+","+n.filter_multipleColumnSelector,n.filter_$anyMatch=e.filter(r),s&&s.length?n.filter_$externalFilters=n.filter_$externalFilters.add(e):n.filter_$externalFilters=e,z.setFilters(l,a.$table.data("lastSearch")||[],!1===t)),r="keypress keyup keydown search change input ".split(" ").join(i+" "),e.attr("data-lastSearchTime",(new Date).getTime()).unbind(r.replace(z.regex.spaces," ")).bind("keydown"+i,function(e){if(e.which===o.escape&&!l.config.widgetOptions.filter_resetOnEsc)return!1}).bind("keyup"+i,function(e){n=l.config.widgetOptions;var t=parseInt(M(this).attr("data-column"),10),r="boolean"==typeof n.filter_liveSearch?n.filter_liveSearch:z.getColumnData(l,n.filter_liveSearch,t);if(void 0===r&&(r=n.filter_liveSearch.fallback||!1),M(this).attr("data-lastSearchTime",(new Date).getTime()),e.which===o.escape)this.value=n.filter_resetOnEsc?"":a.lastSearch[t];else{if(""!==this.value&&("number"==typeof r&&this.value.length=o.left&&e.which<=o.down)))return;if(!1===r&&""!==this.value&&e.which!==o.enter)return}I.searching(l,!0,!0,t)}).bind("search change keypress input blur ".split(" ").join(i+" "),function(e){var t=parseInt(M(this).attr("data-column"),10),r=e.type,i="boolean"==typeof n.filter_liveSearch?n.filter_liveSearch:z.getColumnData(l,n.filter_liveSearch,t);!l.config.widgetOptions.filter_initialized||e.which!==o.enter&&"search"!==r&&"blur"!==r&&("change"!==r&&"input"!==r||!0!==i&&(!0===i||"INPUT"===e.target.nodeName)||this.value===a.lastSearch[t])||(e.preventDefault(),M(this).attr("data-lastSearchTime",(new Date).getTime()),I.searching(l,"keypress"!==r||e.which===o.enter,!0,t))}))},searching:function(e,t,r,i){var l,a=e.config.widgetOptions;void 0===i?l=!1:void 0===(l="boolean"==typeof a.filter_liveSearch?a.filter_liveSearch:z.getColumnData(e,a.filter_liveSearch,i))&&(l=a.filter_liveSearch.fallback||!1),clearTimeout(a.filter_searchTimer),void 0===t||!0===t?a.filter_searchTimer=setTimeout(function(){I.checkFilters(e,t,r)},l?a.filter_searchDelay:10):I.checkFilters(e,t,r)},equalFilters:function(e,t,r){var i,l=[],a=[],n=e.columns+1;for(t=M.isArray(t)?t:[],r=M.isArray(r)?r:[],i=0;i=e.columns&&(n=e.columns-1);a<=n;a++)d[d.length]=a;t=t.replace(i[c],"")}if(!r&&/,/.test(t))for(f=(s=t.split(/\s*,\s*/)).length,o=0;o> Starting filter widget search",r),m=new Date),R.filteredRows=0,t=S||[],c=R.totalRows=0;c> Searching through "+(w&&F> Completed search"+z.benchmark(m)),T.filter_initialized&&(R.$table.triggerHandler("filterBeforeEnd",R),R.$table.triggerHandler("filterEnd",R)),setTimeout(function(){z.applyWidget(R.table)},0)}},getOptionSource:function(e,t,r){var i=(e=M(e)[0]).config,l=!1,a=i.widgetOptions.filter_selectSource,i=i.$table.data("lastSearch")||[],n="function"==typeof a||z.getColumnData(e,a,t);if(r&&""!==i[t]&&(r=!1),!0===n)l=a(e,t,r);else{if(n instanceof M||"string"===M.type(n)&&0<=n.indexOf(""))return n;if(M.isArray(n))l=n;else if("object"===M.type(a)&&n&&null===(l=n(e,t,r)))return null}return!1===l&&(l=I.getOptions(e,t,r)),I.processOptions(e,t,l)},processOptions:function(i,l,r){if(!M.isArray(r))return!1;var a,e,t,n,s,o=(i=M(i)[0]).config,c=null!=l&&0<=l&&l'+(u.data("placeholder")||u.attr("data-placeholder")||d.filter_placeholder.select||"")+"",u=f.$table.find("thead").find("select."+g.filter+'[data-column="'+t+'"]').val();if(void 0!==r&&""!==r||null!==(r=I.getOptionSource(e,t,l))){if(M.isArray(r)){for(a=0;a"}else""+c!="[object Object]"&&(0<=(n=s=c=(""+c).replace(D.quote,""")).indexOf(d.filter_selectSourceSeparator)&&(n=(o=s.split(d.filter_selectSourceSeparator))[0],s=o[1]),h+=""!==c?"":"");r=[]}e=(f.$filters||f.$table.children("thead")).find("."+g.filter),(l=(e=d.filter_$externalFilters?e&&e.length?e.add(d.filter_$externalFilters):d.filter_$externalFilters:e).filter('select[data-column="'+t+'"]')).length&&(l[i?"html":"append"](h),M.isArray(r)||l.append(r).val(u),l.val(u))}}},buildDefault:function(e,t){for(var r,i,l=e.config,a=l.widgetOptions,n=l.columns,s=0;s/g,">");return''+(o.group_collapsible?"":"")+''+u+''},saveCurrentGrouping:function(r,o,e){var u,p=!1;return o.group_collapsible&&o.group_saveGroups&&(o.group_collapsedGroups=l.storage&&l.storage(r.table,"tablesorter-groups")||{},u="dir"+r.sortList[0][1],r=o.group_collapsedGroup=r.sortList[0][0]+u+e.grouping.join(""),o.group_collapsedGroups[r]?p=!0:o.group_collapsedGroups[r]=[]),p},findColumnGroups:function(r,o,e){for(var u,p,t,a=l.hasWidget(r.table,"pager"),s=r.pager||{},n=e.groupIndex=0;no.failure_limit)return!1}else t.trigger("appear"),e=0})}return t&&(r!==t.failurelimit&&(t.failure_limit=t.failurelimit,delete t.failurelimit),r!==t.effectspeed&&(t.effect_speed=t.effectspeed,delete t.effectspeed),n.extend(o,t)),t=o.container===r||o.container===i?d:n(o.container),0===o.event.indexOf("scroll")&&t.bind(o.event,e),this.each(function(){var e=this,a=n(e);e.loaded=!1,a.attr("src")!==r&&!1!==a.attr("src")||a.is("img")&&a.attr("src",o.placeholder),a.one("appear",function(){var t;this.loaded||(o.appear&&(t=l.length,o.appear.call(e,t,o)),n("").bind("load",function(){var t=a.attr("data-"+o.data_attribute),t=(a.hide(),a.is("img")?a.attr("src",t):a.css("background-image",'url("'+t+'")'),a[o.effect](o.effect_speed),e.loaded=!0,n.grep(l,function(t){return!t.loaded}));l=n(t),o.load&&(t=l.length,o.load.call(e,t,o))}).attr("src",a.attr("data-"+o.data_attribute)))}),0!==o.event.indexOf("scroll")&&a.bind(o.event,function(){e.loaded||a.trigger("appear")})}),d.bind("resize",function(){e()}),/(?:iphone|ipod|ipad).*os 5/gi.test(navigator.appVersion)&&d.bind("pageshow",function(t){t.originalEvent&&t.originalEvent.persisted&&l.each(function(){n(this).trigger("appear")})}),n(a).ready(function(){e()}),this},n.belowthefold=function(t,e){var a=e.container===r||e.container===i?(i.innerHeight||d.height())+d.scrollTop():n(e.container).offset().top+n(e.container).height();return a<=n(t).offset().top-e.threshold},n.rightoffold=function(t,e){var a=e.container===r||e.container===i?d.width()+d.scrollLeft():n(e.container).offset().left+n(e.container).width();return a<=n(t).offset().left-e.threshold},n.abovethetop=function(t,e){var a=e.container===r||e.container===i?d.scrollTop():n(e.container).offset().top;return a>=n(t).offset().top+e.threshold+n(t).height()},n.leftofbegin=function(t,e){var a=e.container===r||e.container===i?d.scrollLeft():n(e.container).offset().left;return a>=n(t).offset().left+e.threshold+n(t).width()},n.inviewport=function(t,e){return!(n.rightoffold(t,e)||n.leftofbegin(t,e)||n.belowthefold(t,e)||n.abovethetop(t,e))},n.extend(n.expr[":"],{"below-the-fold":function(t){return n.belowthefold(t,{threshold:0})},"above-the-top":function(t){return!n.belowthefold(t,{threshold:0})},"right-of-screen":function(t){return n.rightoffold(t,{threshold:0})},"left-of-screen":function(t){return!n.rightoffold(t,{threshold:0})},"in-viewport":function(t){return n.inviewport(t,{threshold:0})},"above-the-fold":function(t){return!n.belowthefold(t,{threshold:0})},"right-of-fold":function(t){return n.rightoffold(t,{threshold:0})},"left-of-fold":function(t){return!n.rightoffold(t,{threshold:0})}})}(jQuery,window,document);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-mark.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-mark.min.js new file mode 100644 index 00000000..94ca7bc1 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-mark.min.js @@ -0,0 +1,3 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! Widget: mark.js - updated 9/23/2016 (v2.27.7) */ +!function(s){"use strict";var c=s.tablesorter;c.mark={init:function(n){var e,r;"function"==typeof s.fn.mark?(r=n.widgetOptions.mark_tsUpdate,n.$table.on("filterEnd.tsmark pagerComplete.tsmark"+(r?" "+r:""),function(e,t){c.mark.update(n,e.type===r?t:"")}),e="(?:<|=|>|\\||\"|\\'|\\s+(?:&&|-|"+(c.language.and||"and")+"|"+(c.language.or||"or")+"|"+(c.language.to||"to")+")\\s+)",c.mark.regex.filter=new RegExp(e,"gim")):console.warn('Widget-mark not initialized: missing "jquery.mark.js"')},regex:{mark:/^mark_(.+)$/,pure:/^\/((?:\\\/|[^\/])+)\/([mig]{0,3})?$/},checkRegex:function(e){return e instanceof RegExp&&(null===(e="".match(e))||e.length<5)},cleanMatches:function(e){for(var t=[],n=e&&e.length||0;n--;)""!==e[n]&&(t[t.length]=e[n]);return t},ignoreColumns:function(e){for(var t=e.widgetOptions,n=e.columns,r=[];n--;)(t.mark_tsIgnore[n]||s(e.$headerIndexed[n]).hasClass("mark-ignore"))&&(r[r.length]=":nth-child("+(n+1)+")");return r.length?":not("+r.join(",")+")":""},update:function(i,e){var o={},l=i.widgetOptions,g=c.mark.regex,m=i.$table.find("tbody tr").unmark().not("."+(i.widgetOptions.filter_filteredRow||"filtered"));e=e||s.tablesorter.getFilters(i.$table),s.each(i.widgetOptions,function(e,t){e=e.match(g.mark);e&&void 0!==e[1]&&(o[e[1]]=t)}),s.each(e,function(e,t){if(t&&!s(i.$headerIndexed[e]).hasClass("mark-ignore")&&!l.mark_tsIgnore[e]){var n=null,r=t,a=!1,e=e===i.columns?c.mark.ignoreColumns(i):":nth-child("+(e+1)+")";if(g.pure.test(t)){".*"===(r=g.pure.exec(t))[1]&&(r[1]="");try{n=new RegExp(r[1],"gim"),r=new RegExp(r[1],r[2])}catch(e){r=null}c.mark.checkRegex(n)&&m.children(e).markRegExp(r,o)}else r=0===t.indexOf("~")?(a=!0,t.replace(/~/g,"").split("")):(-1"+r+"
").text().replace(/\{content\}/g,"").trim(),a=a.replace(e,"")),a=_.formatFloat(a.replace(/[^\w,. \-()]/g,""),t.table)||0,isNaN(a)?0:a},getRow:function(t,e,n){var a=t.widgetOptions,r=[],i=e.closest("tr"),l=i.hasClass(a.filter_filteredRow||"filtered");return n&&(i=i.filter(n)),!n&&l||(n=i.children().not("["+a.math_dataAttrib+"=ignore]"),r=(n=a.math_ignore.length?n.filter(function(){return-1===v.inArray(x.getCellIndex(v(this)),a.math_ignore)}):n).not(e).map(function(){return x.processText(t,v(this))}).get()),r},getColumn:function(t,e,n,a){var r,i,l,o,h,s,d=t.widgetOptions,u=[],c=e.closest("tr"),g=d.math_dataAttrib,f="["+g+"=ignore]",m=d.filter_filteredRow||"filtered",p=x.getCellIndex(e),_=t.$table.children("tbody").children(),b=["["+g+"^=above]","["+g+"^=below]","["+g+"^=col]","["+g+"^=all]"];if("above"===n)for(r=o=_.index(c);0<=r;)s=(l=_.eq(r)).children().filter(b[0]).length,i=(l=a?l.filter(a):l).children().filter(function(){return x.getCellIndex(v(this))===p}),((a||!l.hasClass(m))&&l.not(f).length&&r!==o||s&&r!==o)&&(s?r=0:i.length&&i.not(f).length&&(u[u.length]=x.processText(t,i))),r--;else if("below"===n)for(o=_.length,r=_.index(c)+1;r)/,regexBR:/(|\n)/g,regexIMG:/]+alt\s*=\s*['"]([^'"]+)['"][^>]*>/i,regexHTML:/<[^<]+>/g,replaceCR:"\r\n",replaceTab:"\t",popupTitle:"Output",popupStyle:"width:100%;height:100%;margin:0;resize:none;",message:"Your device does not support downloading. Please try again in desktop browser.",init:function(e){e.$table.off(S.event).on(S.event,function(t){t.stopPropagation(),!S.busy&&t.timeStamp-S.lastEvent>S.noDblClick&&(S.lastEvent=t.timeStamp,S.busy=!0,S.process(e,e.widgetOptions))})},processRow:function(t,e,o,u){for(var n,r,a,p,i,l,s,c,d,f=t.widgetOptions,_=[],w=f.output_duplicateSpans,m=o&&u&&f.output_headerRows&&b.isFunction(f.output_callbackJSON),g=0,h=e.length,v=0;v"+S.popupTitle+'"),n.document.close(),n.focus()}catch(t){return n.close(),S.popup(e,o,u)}return!0},download:function(t,e,o){if("function"==typeof e.output_savePlugin)return e.output_savePlugin(t,e,o);var u,t=window.navigator,n=document.createElement("a");if(/(iP)/g.test(t.userAgent))return alert(S.message),!1;try{u=!!new Blob}catch(t){u=!1}return u?(window.URL=window.URL||window.webkitURL,u=/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.output_encoding)?["\ufeff",o]:[o],u=new Blob(u,{type:e.output_encoding}),t.msSaveBlob?t.msSaveBlob(u,e.output_saveFileName):(n.href=window.URL.createObjectURL(u),n.download=e.output_saveFileName,document.createEvent&&((t=document.createEvent("MouseEvents")).initMouseEvent("click",!0,!0,window,0,0,0,0,0,!1,!1,!1,!1,0,null),n.dispatchEvent(t))),!1):(window.open(e.output_encoding+encodeURIComponent(o)+"?download","_self"),!0)},remove:function(t){t.$table.off(S.event)}};y.addWidget({id:"output",options:{output_separator:",",output_ignoreColumns:[],output_hiddenColumns:!1,output_includeFooter:!1,output_includeHeader:!0,output_headerRows:!1,output_dataAttrib:"data-name",output_delivery:"popup",output_saveRows:"filtered",output_duplicateSpans:!0,output_replaceQuote:"“;",output_includeHTML:!1,output_trimSpaces:!0,output_wrapQuotes:!1,output_popupStyle:"width=500,height=300",output_saveFileName:"mytable.csv",output_formatContent:null,output_callback:function(){return!0},output_callbackJSON:function(t,e,o){return e+"("+o+")"},output_encoding:"data:application/octet-stream;charset=utf8,",output_savePlugin:null},init:function(t,e,o){S.init(o)},remove:function(t,e){S.remove(e)}})}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-pager.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-pager.min.js new file mode 100644 index 00000000..ccbe2990 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-pager.min.js @@ -0,0 +1,3 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! Widget: Pager - updated 2020-03-03 (v2.31.3) */ +!function(x){"use strict";var j,_=x.tablesorter;_.addWidget({id:"pager",priority:55,options:{pager_output:"{startRow} to {endRow} of {totalRows} rows",pager_updateArrows:!0,pager_startPage:0,pager_pageReset:0,pager_size:10,pager_maxOptionSize:20,pager_savePages:!0,pager_storageKey:"tablesorter-pager",pager_fixedHeight:!1,pager_countChildRows:!1,pager_removeRows:!1,pager_ajaxUrl:null,pager_customAjaxUrl:function(e,a){return a},pager_ajaxError:null,pager_ajaxObject:{dataType:"json"},pager_processAjaxOnInit:!0,pager_ajaxProcessing:function(e){return e},pager_css:{container:"tablesorter-pager",errorRow:"tablesorter-errorRow",disabled:"disabled"},pager_selectors:{container:".pager",first:".first",prev:".prev",next:".next",last:".last",gotoPage:".gotoPage",pageDisplay:".pagedisplay",pageSize:".pagesize"}},init:function(e){j.init(e)},format:function(e,a){if(!a.pager||!a.pager.initialized)return j.initComplete(a);j.moveToPage(a,a.pager,!1)},remove:function(e,a,t,r){j.destroyPager(a,r)}}),j=_.pager={init:function(e){var a,t,r,i;e.hasInitialized&&e.config.pager&&e.config.pager.initialized||(r=(t=(a=e.config).widgetOptions).pager_selectors,(i=a.pager=x.extend({totalPages:0,filteredRows:0,filteredPages:0,currentFilters:[],page:t.pager_startPage,startRow:0,endRow:0,ajaxCounter:0,$size:null,last:{},setSize:t.pager_size,setPage:t.pager_startPage},a.pager)).removeRows=t.pager_removeRows,i.isInitializing)||(i.isInitializing=!0,_.debug(a,"pager")&&console.log("Pager >> Initializing"),i.size=x.data(e,"pagerLastSize")||t.pager_size,i.$container=x(r.container).addClass(t.pager_css.container).show(),i.totalRows=a.$tbodies.eq(0).children("tr").not(t.pager_countChildRows?"":"."+a.cssChildRow).length,i.oldAjaxSuccess=i.oldAjaxSuccess||t.pager_ajaxObject.success,a.appender=j.appender,i.initializing=!0,t.pager_savePages&&_.storage&&(r=_.storage(e,t.pager_storageKey)||{},i.page=(isNaN(r.page)?i:r).page||i.setPage||0,i.size="all"===r.size?r.size:(isNaN(r.size)?i:r).size||i.setSize||10,j.setPageSize(a,i.size)),i.regexRows=new RegExp("("+(t.filter_filteredRow||"filtered")+"|"+a.selectorRemove.slice(1)+"|"+a.cssChildRow+")"),i.regexFiltered=new RegExp(t.filter_filteredRow||"filtered"),i.initialized=!1,a.$table.triggerHandler("pagerBeforeInitialized",a),j.enablePager(a,!1),i.ajaxObject=t.pager_ajaxObject,i.ajaxObject.url=t.pager_ajaxUrl,"string"==typeof t.pager_ajaxUrl?(i.ajax=!0,t.filter_serversideFiltering=!0,a.serverSideSorting=!0,j.moveToPage(a,i)):(i.ajax=!1,_.appendCache(a,!0)))},initComplete:function(e){var a=e.pager;j.bindEvents(e),a.ajax||j.hideRowsSetup(e),a.initialized=!0,a.initializing=!1,a.isInitializing=!1,j.setPageSize(e,a.size),_.debug(e,"pager")&&console.log("Pager >> Triggering pagerInitialized"),e.$table.triggerHandler("pagerInitialized",e),e.widgetOptions.filter_initialized&&_.hasWidget(e.table,"filter")||j.updatePageDisplay(e,!a.ajax)},bindEvents:function(i){var s,o,g=i.pager,n=i.widgetOptions,e=i.namespace+"pager",a=n.pager_selectors,t=_.debug(i,"pager");i.$table.off(e).on("filterInit filterStart ".split(" ").join(e+" "),function(e,a){if(g.currentFilters=x.isArray(a)?a:i.$table.data("lastSearch"),g.ajax&&"filterInit"===e.type)return j.moveToPage(i,g,!1);a=_.filter.equalFilters?_.filter.equalFilters(i,i.lastSearch,g.currentFilters):(i.lastSearch||[]).join("")!==(g.currentFilters||[]).join(""),"filterStart"!==e.type||!1===n.pager_pageReset||a||(g.page=n.pager_pageReset)}).on("filterEnd sortEnd ".split(" ").join(e+" "),function(){g.currentFilters=i.$table.data("lastSearch"),(g.initialized||g.initializing)&&(i.delayInit&&i.rowsCopy&&0===i.rowsCopy.length&&j.updateCache(i),j.updatePageDisplay(i,!1),_.applyWidget(i.table))}).on("disablePager"+e,function(e){e.stopPropagation(),j.showAllRows(i)}).on("enablePager"+e,function(e){e.stopPropagation(),j.enablePager(i,!0)}).on("destroyPager"+e,function(e){e.stopPropagation(),_.removeWidget(i.table,"pager",!1)}).on("updateComplete"+e,function(e,a,t){e.stopPropagation(),!a||t||g.ajax||(e=i.$tbodies.eq(0).children("tr").not(i.selectorRemove),g.totalRows=e.length-(n.pager_countChildRows?0:e.filter("."+i.cssChildRow).length),g.totalPages="all"===g.size?1:Math.ceil(g.totalRows/g.size),e.length&&i.rowsCopy&&0===i.rowsCopy.length&&j.updateCache(i),g.page>=g.totalPages&&j.moveToLastPage(i,g),j.hideRows(i),j.changeHeight(i),j.updatePageDisplay(i,!1),_.applyWidget(a),j.updatePageDisplay(i))}).on("pageSize refreshComplete ".split(" ").join(e+" "),function(e,a){e.stopPropagation(),j.setPageSize(i,j.parsePageSize(i,a,"get")),j.moveToPage(i,g,!0),j.hideRows(i),j.updatePageDisplay(i,!1)}).on("pageSet pagerUpdate ".split(" ").join(e+" "),function(e,a){e.stopPropagation(),"pagerUpdate"===e.type&&(a=void 0===a?g.page+1:a,g.last.page=!0),g.page=(parseInt(a,10)||1)-1,j.moveToPage(i,g,!0),j.updatePageDisplay(i,!1)}).on("pageAndSize"+e,function(e,a,t){e.stopPropagation(),g.page=(parseInt(a,10)||1)-1,j.setPageSize(i,j.parsePageSize(i,t,"get")),j.moveToPage(i,g,!0),j.hideRows(i),j.updatePageDisplay(i,!1)}),s=[a.first,a.prev,a.next,a.last],o=["moveToFirstPage","moveToPrevPage","moveToNextPage","moveToLastPage"],t&&!g.$container.length&&console.warn('Pager >> "container" not found'),g.$container.find(s.join(",")).attr("tabindex",0).off("click"+e).on("click"+e,function(e){e.stopPropagation();var a,t=x(this),r=s.length;if(!t.hasClass(n.pager_css.disabled))for(a=0;a> "goto" selector not found'),(a=g.$container.find(n.pager_selectors.pageSize)).length?(a.find("option").removeAttr("selected"),a.off("change"+e).on("change"+e,function(){var e;return x(this).hasClass(n.pager_css.disabled)||(e=x(this).val(),g.$container.find(n.pager_selectors.pageSize).val(e),j.setPageSize(i,e),j.moveToPage(i,g,!0),j.changeHeight(i)),!1})):t&&console.warn('Pager >> "size" selector not found')},pagerArrows:function(e,a){var t=e.pager,a=!!a,r=a||0===t.page,i=j.getTotalPages(e,t),a=a||t.page===i-1||0===i,i=e.widgetOptions,e=i.pager_selectors;i.pager_updateArrows&&(t.$container.find(e.first+","+e.prev).toggleClass(i.pager_css.disabled,r).prop("aria-disabled",r),t.$container.find(e.next+","+e.last).toggleClass(i.pager_css.disabled,a).prop("aria-disabled",a))},calcFilters:function(e){var a,t,r,i=e.widgetOptions,s=e.pager,o=e.$table.hasClass("hasFilters");if(o&&!s.ajax)if(x.isEmptyObject(e.cache))s.filteredRows=s.totalRows=e.$tbodies.eq(0).children("tr").not(i.pager_countChildRows?"":"."+e.cssChildRow).length;else for(s.filteredRows=0,r=(a=e.cache[0].normalized).length,t=0;tp.filteredRows&&e,p.page=t?l.pager_pageReset||0:p.page,p.startRow=!t&&0===p.filteredRows?0:c*p.page+1,p.endRow=Math.min(p.filteredRows,p.totalRows,c*(p.page+1)),r=p.$container.find(l.pager_selectors.pageDisplay),g="function"==typeof l.pager_output?l.pager_output(n,p):(g=r.attr("data-pager-output"+(p.filteredRows'):1'+i[s]+"";p.$container.find(l.pager_selectors.gotoPage).html(t).val(p.page+1)}r.length&&(r["INPUT"===r[0].nodeName?"val":"html"](g),r.find(".ts-startRow, .ts-page").off("change"+d).on("change"+d,function(){var e=x(this).val(),e=x(this).hasClass("ts-startRow")?Math.floor(e/c)+1:e;a.$table.triggerHandler("pageSet"+d,[e])}))}j.pagerArrows(a),j.fixHeight(a),p.initialized&&!1!==e&&(_.debug(a,"pager")&&console.log("Pager >> Triggering pagerComplete"),a.$table.triggerHandler("pagerComplete",a),l.pager_savePages)&&_.storage&&_.storage(n,l.pager_storageKey,{page:p.page,size:c===p.totalRows?"all":c})}},buildPageSelect:function(e,a){for(var t,r,i=e.widgetOptions,s=j.getTotalPages(e,a)||1,o=5*Math.ceil(s/i.pager_maxOptionSize/5),g=s>i.pager_maxOptionSize,e=a.page+1,a=o,n=s-o,l=[1],p=g?o:1;p<=s;)l[l.length]=p,p+=g?o:1;if(l[l.length]=s,g){for(t=[],s<(n=e+(r=Math.max(Math.floor(i.pager_maxOptionSize/o)-1,5)))&&(n=s),p=a=(a=e-r)<1?1:a;p<=n;p++)t[t.length]=p;o/2<(e=(l=x.grep(l,function(e,a){return x.inArray(e,l)===a})).length)-(r=t.length)&&e+r>i.pager_maxOptionSize&&(a=Math.floor(e/2)-Math.floor(r/2),Array.prototype.splice.apply(l,[a,r])),l=l.concat(t)}return l=x.grep(l,function(e,a){return x.inArray(e,l)===a}).sort(function(e,a){return e-a})},fixHeight:function(e){var a,t=e.table,r=e.pager,i=e.widgetOptions,s=e.$tbodies.eq(0);s.find("tr.pagerSavedHeightSpacer").remove(),i.pager_fixedHeight&&!r.isDisabled&&(i=x.data(t,"pagerSavedHeight"))&&(a=0,1')},changeHeight:function(e){var a=e.table,t=e.pager,r="all"===t.size?t.totalRows:t.size,i=e.$tbodies.eq(0);i.find("tr.pagerSavedHeightSpacer").remove(),i.children("tr:visible").length||i.append(' '),i=i.children("tr").eq(0).height()*r,x.data(a,"pagerSavedHeight",i),j.fixHeight(e),x.data(a,"pagerLastSize",t.size)},hideRows:function(e){if(!e.widgetOptions.pager_ajaxUrl){var a,t,r,i,s,o=e.pager,g=e.widgetOptions,n=e.$tbodies.length,l="all"===o.size?o.totalRows:o.size,p=o.page*l,d=p+l,c=-1,f=0;for(o.cacheIndex=[],a=0;a> Ajax Error",t,r,i),_.showError(s,t,r,i),a.$tbodies.eq(0).children("tr").detach(),o.totalRows=0;else{if(x.isArray(e)?(r=e[(t=isNaN(e[0])&&!isNaN(e[1]))?1:0],o.totalRows=isNaN(r)?o.totalRows||0:r,a.totalRows=a.filteredRows=o.filteredRows=o.totalRows,b=0!==o.totalRows&&e[t?0:1]||[],P=e[2]):(o.ajaxData=e,a.totalRows=o.totalRows=e.total,a.filteredRows=o.filteredRows=void 0!==e.filteredRows?e.filteredRows:e.total,P=e.headers,b=e.rows||[]),z=b&&b.length,b instanceof x)g.pager_processAjaxOnInit&&(a.$tbodies.eq(0).empty(),a.$tbodies.eq(0).append(b));else if(z){for(l=0;l",p=0;p"+b[l][p]+"";m+=""}g.pager_processAjaxOnInit&&a.$tbodies.eq(0).html(m)}if(g.pager_processAjaxOnInit=!0,P){for(f=(d=v.hasClass("hasStickyHeaders"))?g.$sticky.children("thead:first").children("tr:not(."+a.cssIgnoreRow+")").children():"",c=v.find("tfoot tr:first").children(),R=(u=a.$headers.filter("th")).length,p=0;p> Triggering pagerChange"),v.triggerHandler("pagerChange",o),_.applyWidget(s),j.updatePageDisplay(a)},0)})}o.initialized||_.applyWidget(s)},getAjax:function(i){var r,e=j.getAjaxUrl(i),s=x(document),o=i.namespace+"pager",g=i.pager;""!==e&&(i.showProcessing&&_.isProcessing(i.table,!0),s.on("ajaxError"+o,function(e,a,t,r){j.renderAjax(null,i,a,t,r),s.off("ajaxError"+o)}),r=++g.ajaxCounter,g.last.ajaxUrl=e,g.ajaxObject.url=e,g.ajaxObject.success=function(e,a,t){r> Ajax initialized",g.ajaxObject),x.ajax(g.ajaxObject))},getAjaxUrl:function(e){var a,t,r=e.pager,i=e.widgetOptions,s=i.pager_ajaxUrl?i.pager_ajaxUrl.replace(/\{page([\-+]\d+)?\}/,function(e,a){return r.page+(a?parseInt(a,10):0)}).replace(/\{size\}/g,r.size):"",o=e.sortList,g=r.currentFilters||e.$table.data("lastSearch")||[],n=s.match(/\{\s*sort(?:List)?\s*:\s*(\w*)\s*\}/),l=s.match(/\{\s*filter(?:List)?\s*:\s*(\w*)\s*\}/),p=[];if(n){for(n=n[1],t=o.length,a=0;a> Ajax url = "+s),s},renderTable:function(e,a){var t,r,i,s,o=e.table,g=e.pager,n=e.widgetOptions,l=_.debug(e,"pager"),p=e.$table.hasClass("hasFilters"),d=a&&a.length||0,c="all"===g.size?g.totalRows:g.size,f=g.page*c;if(d<1)l&&console.warn("Pager >> No rows for pager to render");else{if(g.page>=g.totalPages)return j.moveToLastPage(e,g);if(g.cacheIndex=[],g.isDisabled=!1,g.initialized&&(l&&console.log("Pager >> Triggering pagerChange"),e.$table.triggerHandler("pagerChange",e)),n.pager_removeRows){for(_.clearTableBody(o),t=_.processTbody(o,e.$tbodies.eq(0),!0),i=r=p?0:f,s=0;s> Triggering updateComplete"),e.$table.triggerHandler("updateComplete",[o,!0]))}},showAllRows:function(e){var a,t,r,i=e.table,s=e.pager,o=e.widgetOptions;for(s.ajax?j.pagerArrows(e,!0):(x.data(i,"pagerLastPage",s.page),x.data(i,"pagerLastSize",s.size),s.page=0,s.size=s.totalRows,s.totalPages=1,e.$table.addClass("pagerDisabled").removeAttr("aria-describedby").find("tr.pagerSavedHeightSpacer").remove(),j.renderTable(e,e.rowsCopy),s.isDisabled=!0,_.applyWidget(i),_.debug(e,"pager")&&console.log("Pager >> Disabled")),r=(t=s.$container.find(o.pager_selectors.pageSize+","+o.pager_selectors.gotoPage+",.ts-startRow, .ts-page")).length,a=0;a> Changing to page "+a.page),a.last={page:a.page,size:a.size,sortList:(e.sortList||[]).join(","),totalRows:a.totalRows,currentFilters:a.currentFilters||[],ajaxUrl:a.ajaxObject.url||"",optAjaxUrl:i.pager_ajaxUrl},a.ajax?i.pager_processAjaxOnInit||x.isEmptyObject(i.pager_initialRows)?j.getAjax(e):(i.pager_processAjaxOnInit=!0,s=i.pager_initialRows,a.totalRows=void 0!==s.total?s.total:o&&console.error("Pager >> No initial total page set!")||0,a.filteredRows=void 0!==s.filtered?s.filtered:o&&console.error("Pager >> No initial filtered page set!")||0,j.updatePageDisplay(e,!1)):a.ajax||j.renderTable(e,e.rowsCopy),x.data(r,"pagerLastPage",a.page),a.initialized&&!1!==t&&(o&&console.log("Pager >> Triggering pageMoved"),e.$table.triggerHandler("pageMoved",e),_.applyWidget(r),!a.ajax)&&r.isUpdating&&(o&&console.log("Pager >> Triggering updateComplete"),e.$table.triggerHandler("updateComplete",[r,!0])))))},getTotalPages:function(e,a){return _.hasWidget(e.table,"filter")?Math.min(a.totalPages,a.filteredPages):a.totalPages},parsePageNumber:function(e,a){e=j.getTotalPages(e,a)-1;return a.page=parseInt(a.page,10),(a.page<0||isNaN(a.page))&&(a.page=0),a.page>e&&0<=e&&(a.page=e),a.page},parsePageSize:function(e,a,t){var r=e.pager,e=e.widgetOptions,i=parseInt(a,10)||r.size||e.pager_size||10;return r.initialized&&(/all/i.test(i+" "+a)||i===r.totalRows)?r.$container.find(e.pager_selectors.pageSize+' option[value="all"]').length?"all":r.totalRows:"get"===t?i:r.size},setPageSize:function(e,a){var t=e.pager,r=e.table;t.size=j.parsePageSize(e,a,"get"),t.$container.find(e.widgetOptions.pager_selectors.pageSize).val(t.size),x.data(r,"pagerLastPage",j.parsePageNumber(e,t)),x.data(r,"pagerLastSize",t.size),t.totalPages="all"===t.size?1:Math.ceil(t.totalRows/t.size),t.filteredPages="all"===t.size?1:Math.ceil(t.filteredRows/t.size)},moveToFirstPage:function(e,a){a.page=0,j.moveToPage(e,a,!0)},moveToLastPage:function(e,a){a.page=j.getTotalPages(e,a)-1,j.moveToPage(e,a,!0)},moveToNextPage:function(e,a){a.page++;var t=j.getTotalPages(e,a)-1;a.page>=t&&(a.page=t),j.moveToPage(e,a,!0)},moveToPrevPage:function(e,a){a.page--,a.page<=0&&(a.page=0),j.moveToPage(e,a,!0)},destroyPager:function(e,a){var t=e.table,r=e.pager,i=e.widgetOptions.pager_selectors||{},i=[i.first,i.prev,i.next,i.last,i.gotoPage,i.pageSize].join(","),s=e.namespace+"pager";r&&(r.initialized=!1,e.$table.off(s),r.$container.hide().find(i).off(s),a||(e.appender=null,j.showAllRows(e),_.storage&&_.storage(t,e.widgetOptions.pager_storageKey,""),r.$container=null,e.pager=null,e.rowsCopy=null))},enablePager:function(e,a){var t,r=e.table,i=e.pager,s=e.widgetOptions,o=i.$container.find(s.pager_selectors.pageSize);i.isDisabled=!1,i.page=x.data(r,"pagerLastPage")||i.page||0,t=o.find("option[selected]").val(),i.size=x.data(r,"pagerLastSize")||j.parsePageSize(e,t,"get"),j.setPageSize(e,i.size),i.totalPages="all"===i.size?1:Math.ceil(j.getTotalPages(e,i)/i.size),e.$table.removeClass("pagerDisabled"),r.id&&!e.$table.attr("aria-describedby")&&((t=(o=i.$container.find(s.pager_selectors.pageDisplay)).attr("id"))||(t=r.id+"_pager_info",o.attr("id",t)),e.$table.attr("aria-describedby",t)),j.changeHeight(e),a&&(_.update(e),j.setPageSize(e,i.size),j.moveToPage(e,i,!0),j.hideRowsSetup(e),_.debug(e,"pager"))&&console.log("Pager >> Enabled")},appender:function(e,a){var t=e.config,r=t.widgetOptions,i=t.pager;i.ajax?j.moveToPage(t,i,!0):(t.rowsCopy=a,i.totalRows=(r.pager_countChildRows?t.$tbodies.eq(0).children("tr"):a).length,i.size=x.data(e,"pagerLastSize")||i.size||r.pager_size||i.setSize||10,i.totalPages="all"===i.size?1:Math.ceil(i.totalRows/i.size),j.moveToPage(t,i),j.updatePageDisplay(t,!1))}},_.showError=function(e,a,t,r){function i(){s.$table.find("thead").find(s.selectorRemove).remove()}var e=x(e),s=e[0].config,o=s&&s.widgetOptions,g=s.pager&&s.pager.cssErrorRow||o&&o.pager_css&&o.pager_css.errorRow||"tablesorter-errorRow",n=typeof a,l=!0,p="";if(e.length){if("function"==typeof s.pager.ajaxError){if(!1===(l=s.pager.ajaxError(s,a,t,r)))return i();p=l}else if("function"==typeof o.pager_ajaxError){if(!1===(l=o.pager_ajaxError(s,a,t,r)))return i();p=l}if(""===p)if("object"==n)p=0===a.status?"Not connected, verify Network":404===a.status?"Requested page not found [404]":500===a.status?"Internal Server Error [500]":"parsererror"===r?"Requested JSON parse failed":"timeout"===r?"Time out error":"abort"===r?"Ajax Request aborted":"Uncaught error: "+a.statusText+" ["+a.status+"]";else{if("string"!=n)return i();p=a}x(/tr\>/.test(p)?p:''+p+"").click(function(){x(this).remove()}).appendTo(s.$table.find("thead:first")).addClass(g+" "+s.selectorRemove.slice(1)).attr({role:"alert","aria-live":"assertive"})}else console.error("tablesorter showError: no table parameter passed")}}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-print.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-print.min.js new file mode 100644 index 00000000..6b3b6aa3 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-print.min.js @@ -0,0 +1,2 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +!function(a){"use strict";var l=a.tablesorter,p=l.printTable={event:"printTable",basicStyle:"table, tr, td, th { border : solid 1px black; border-collapse : collapse; } td, th { padding: 2px; }",popupStyle:"width=500,height=300,scrollbars=1,resizable=1",init:function(t){t.$table.unbind(p.event).bind(p.event,function(){return p.process(t,t.widgetOptions),!1})},process:function(t,e){var i,n,r=a("
").append(t.$table.clone()),o=p.basicStyle+"table { width: 100%; }."+(l.css.filterRow||"tablesorter-filter-row")+", ."+(e.filter_filteredRow||"filtered")+" { display: none; }."+(l.css.header||"tablesorter-header")+" { background-image: none !important; }@media print { .print_widget_hidden { display: none; } }";r.find("["+e.print_dataAttrib+"]").each(function(){(i=a(this)).text(i.attr(e.print_dataAttrib))}),n="data-"+(e.lazyload_data_attribute||"original"),r.find("img["+n+"]").each(function(){(i=a(this)).attr("src",i.attr(n))}),/^f/i.test(e.print_rows)?o+="tbody tr:not(."+(e.filter_filteredRow||"filtered")+") { display: table-row !important; }":/^a/i.test(e.print_rows)?o+="tbody tr { display: table-row !important; }":/^[.#:\[]/.test(e.print_rows)&&(o+="tbody tr"+e.print_rows+" { display: table-row !important; }"),/s/i.test(e.print_columns)&&t.selector&&l.hasWidget(t.table,"columnSelector")?o+=e.columnSelector_mediaquery&&t.selector.auto?"":t.selector.$style.text():/a/i.test(e.print_columns)&&(o+="td, th { display: table-cell !important; }"),o+=e.print_extraCSS,a.isFunction(e.print_callback)?e.print_callback(t,r,o):p.printOutput(t,r.html(),o)},printOutput:function(t,e,i){var n=t.widgetOptions,r=l.language,o=window.open("",n.print_title,p.popupStyle),t=n.print_title||t.$table.find("caption").text()||t.$table[0].id||document.title||"table",r=n.print_now?"":'";return o.document.write(""+t+""+(n.print_styleSheet?'':"")+""+r+e+""),o.document.close(),n.print_now&&setTimeout(function(){o.print(),o.close()},10),!0},remove:function(t){t.$table.off(p.event)}};l.language.button_close="Close",l.language.button_print="Print",l.addWidget({id:"print",options:{print_title:"",print_dataAttrib:"data-name",print_rows:"filtered",print_columns:"selected",print_extraCSS:"",print_styleSheet:"",print_now:!0,print_callback:null},init:function(t,e,i){p.init(i)},remove:function(t,e){p.remove(e)}})}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-reflow.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-reflow.min.js new file mode 100644 index 00000000..318e0b04 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-reflow.min.js @@ -0,0 +1,2 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +!function(u){"use strict";var h=u.tablesorter,w={init:function(e,t,l){var o,r=l.reflow_dataAttrib,a=l.reflow_headerAttrib,s=[];t.$table.addClass(l.reflow_className).off("refresh.tsreflow updateComplete.tsreflow2").on("refresh.tsreflow updateComplete.tsreflow2",function(){w.init(e,t,l)}),t.$headers.each(function(){o=u(this),s.push(u.trim(o.attr(a)||o.text()))}),t.$tbodies.children().each(function(){u(this).children().each(function(e){u(this).attr(r,s[e])})})},init2:function(e,t,l){var o,r,a,s,i,n,f=t.columns,c=l.reflow2_headerAttrib,d=[];for(t.$table.addClass(l.reflow2_className).off("refresh.tsreflow2 updateComplete.tsreflow2").on("refresh.tsreflow2 updateComplete.tsreflow2",function(){w.init2(e,t,l)}),a=0;a'+d[e][a]+""),a--}),h.processTbody(e,r,!1)})},remove:function(e,t,l){t.$table.removeClass(l.reflow_className)},remove2:function(e,t,l){t.$table.removeClass(l.reflow2_className)}};h.addWidget({id:"reflow",options:{reflow_className:"ui-table-reflow",reflow_headerAttrib:"data-name",reflow_dataAttrib:"data-title"},init:function(e,t,l,o){w.init(e,l,o)},remove:function(e,t,l){w.remove(e,t,l)}}),h.addWidget({id:"reflow2",options:{reflow2_className:"ui-table-reflow",reflow2_classIgnore:"ui-table-reflow-ignore",reflow2_headerAttrib:"data-name",reflow2_labelClass:"ui-table-cell-label",reflow2_labelTop:"ui-table-cell-label-top"},init:function(e,t,l,o){w.init2(e,l,o)},remove:function(e,t,l){w.remove2(e,t,l)}})}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-repeatheaders.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-repeatheaders.min.js new file mode 100644 index 00000000..94714fbc --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-repeatheaders.min.js @@ -0,0 +1,3 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! Widget: repeatHeaders - updated 9/23/2016 (v2.27.7) */ +!function(n){"use strict";n.tablesorter.addWidget({id:"repeatHeaders",priority:10,options:{rowsToSkip:4},format:function(e,r,t){var a,o,d,i,s="";if(!t.repeatHeaders){for(s='',a=0;a"+n.trim(r.$headers.eq(a).html())+"";t.repeatHeaders=s+""}for(i=t&&t.rowsToSkip||4,r.$table.find("tr.repeated-header").remove(),d=(o=r.$tbodies.find("tr")).length,a=i;a";d("head").append(e)}),b.resizable={init:function(e,t){if(!e.$table.hasClass("hasResizable")){e.$table.addClass("hasResizable");var s,a,i,r=e.$table,l=r.parent(),o=parseInt(r.css("margin-top"),10),n=t.resizable_vars={useStorage:b.storage&&!1!==t.resizable,$wrap:l,mouseXPosition:0,$target:null,$next:null,overflow:"auto"===l.css("overflow")||"scroll"===l.css("overflow")||"auto"===l.css("overflow-x")||"scroll"===l.css("overflow-x"),storedSizes:[]};for(b.resizableReset(e.table,!0),n.tableWidth=r.width(),n.fullWidth=Math.abs(l.width()-n.tableWidth)<20,n.useStorage&&n.overflow&&(b.storage(e.table,"tablesorter-table-original-css-width",n.tableWidth),i=b.storage(e.table,"tablesorter-table-resized-width")||"auto",b.resizable.setWidth(r,i,!0)),t.resizable_vars.storedSizes=l=(n.useStorage?b.storage(e.table,b.css.resizableStorage):[])||[],b.resizable.setWidths(e,t,l),b.resizable.updateStoredSizes(e,t),t.$resizable_container=d('
').css({top:o}).insertBefore(r),a=0;a').appendTo(t.$resizable_container).attr({"data-column":a,unselectable:"on"}).data("header",s).bind("selectstart",!1);b.resizable.bindings(e,t)}},updateStoredSizes:function(e,t){var s,a,i=e.columns,r=t.resizable_vars;for(r.storedSizes=[],s=0;s> Saving last sort: "+t.sortList+l.benchmark(e)):(a.addClass("hasSaveSort"),i="",l.storage&&(i=v(t),n&&console.log('saveSort >> Last sort loaded: "'+i+'"'+l.benchmark(e)),a.bind("saveSortReset",function(t){t.stopPropagation(),l.storage(s,"tablesorter-savesort","")})),r&&i&&0 div { pointer-events: all; }."+R.scrollerWrap+" ."+R.scrollerFixed+" { position: absolute; top: 0; z-index: 1; left: 0 } ."+R.scrollerWrap+" ."+R.scrollerFixed+"."+R.scrollerRtl+" { left: auto; right: 0 } ."+R.scrollerWrap+"."+R.scrollerHasFix+" > ."+R.scrollerTable+" { overflow: auto; }."+R.scrollerFixed+" ."+R.scrollerFooter+" { position: absolute; bottom: 0; }."+R.scrollerFixed+" ."+R.scrollerTable+" { position: relative; left: 0; overflow: auto; -ms-overflow-style: none; }."+R.scrollerFixed+" ."+R.scrollerTable+"::-webkit-scrollbar { display: none; }."+R.scrollerWrap+" ."+R.scrollerFixedPanel+" { position: absolute; top: 0; bottom: 0; z-index: 2; left: 0; right: 0; } ";z("head").append(e)}),B.scroller={isFirefox:-1e.width():e.get(0).scrollHeight>e.height()},setWidth:function(e,r){e.css({width:r,"min-width":r,"max-width":r})},getBarWidth:function(){var e=z("
").css({position:"absolute",top:"-9999px",left:0,width:"100px",height:"100px",overflow:"scroll",visibility:"hidden"}).appendTo("body"),r=e[0],r=r.offsetWidth-r.clientWidth;return e.remove(),r},setup:function(o,s){var r,l,t,e,i=z(g),d=B.scroller,c=o.namespace+"tsscroller",a=z(),n=o.namespace.slice(1)+"tsscroller",h=o.$table;o.widthFixed=!0,s.scroller_calcWidths=[],s.scroller_saved=[0,0],s.scroller_isBusy=!0,(s.scroller_scrollTimer=null)!==s.scroller_barWidth?s.scroller_barSetWidth=s.scroller_barWidth:(e=d.getBarWidth(),s.scroller_barSetWidth=null!==e?e:15),e=h.children("caption"),l=z(''+(e.length?e[0].outerHTML:"")+h.children("thead")[0].outerHTML+"
"),s.scroller_$header=l.addClass(o.namespace.slice(1)+"_extra_table"),(e=h.children("tfoot")).length&&(a=z('
').addClass(o.namespace.slice(1)+"_extra_table").append(e.clone(!0)).wrap('
')),s.scroller_$footer=a,h.wrap('
').before(l).find("."+R.filterRow).addClass(R.filterRowHide),s.scroller_$container=h.parent(),a.length&&h.after(a.parent()),e=l.wrap('
').find("."+R.header),h.wrap('
':'">')),t=h.parent(),B.bindEvents(o.table,e),h.hasClass("hasFilters")&&B.filter.bindSearch(h,l.find("."+R.filter)),h.children("thead, caption").addClass(R.scrollerHideElement),r=t.parent().height(),t.off("scroll"+c).on("scroll"+c,function(){var e;clearTimeout(s.scroller_scrollTimer),s.scroller_scrollTimer=setTimeout(function(){s.scroller_saved[0]=t.scrollLeft(),s.scroller_saved[1]=t.scrollTop()},300),s.scroller_jumpToHeader&&(e=i.scrollTop()-l.offset().top,0!==z(this).scrollTop())&&e';for(r.scroller_calcWidths=[],i.removeFixed(e,r),d.find("."+R.scrollerSpacerRow).remove(),d.find("."+B.css.colgroup).remove(),c.find("."+R.scrollerHideElement).removeClass(R.scrollerHideElement),d=parseInt(c.css("border-left-width"),10),s=e.$headerIndexed,l=0;l',r.scroller_calcWidths[l]=o;m+="",e.$tbodies.eq(0).append(m),n.children("thead").append(m),h.children("tfoot").append(m),B.fixColumnWidth(e.table),m=e.$table.children("colgroup")[0].outerHTML,n.append(m),h.append(m),u=a.parent().innerWidth()-(i.hasScrollBar(a)?r.scroller_barSetWidth:0),a.width(u),u=(i.hasScrollBar(a)?r.scroller_barSetWidth:0)+d,o=a.innerWidth()-u,n.parent().add(h.parent()).width(o),a.width(o+u),c.children("thead, caption").addClass(R.scrollerHideElement),i.updateFixed(e,r),b.removeClass(R.scrollerHideElement),a.scrollTop(r.scroller_saved[1]),r.scroller_$container.find("."+R.scrollerFixed).find("."+R.scrollerTable).scrollTop(r.scroller_saved[1]),f.scrollLeft(p[0]),f.scrollTop(p[1]),setTimeout(function(){e.$table.triggerHandler("resizableUpdate"),e.$table.triggerHandler("scrollerComplete")},100)}},setupFixed:function(e,r){var l,o,s,t,i,d,c=e.$table,a=r.scroller_$container,n=r.scroller_fixedColumns,h=a.addClass(R.scrollerHasFix).clone().addClass(R.scrollerFixed).removeClass(R.scrollerWrap).attr("id","");for(h.find("caption").html(" "),r.scroller_addFixedOverlay&&h.append('
'),(d=h.find("."+R.scrollerTable)).children("table").addClass(e.namespace.slice(1)+"_extra_table").attr("id","").children("thead, tfoot").remove(),r.scroller_$fixedColumns=h,c.hasClass(R.scrollerRtl)&&h.addClass(R.scrollerRtl),t=(s=h.find("tr")).length,l=0;l')},throttle:function(o,s,t){var i,d;return s=s||50,function(){var e=t||this,r=+new Date,l=arguments;i&&r tr").on(s,"tbody > tr",function(e){var r=l.$table.children("tbody").children("tr").index(this);t.children("table").children("tbody").children("tr").eq(r).add(this).toggleClass(o.scroller_rowHighlight,"mouseover"===e.type)}),t.find("table").off(s,"tbody > tr").on(s,"tbody > tr",function(e){var r=t.children("table").children("tbody").children("tr").index(this);l.$table.children("tbody").children("tr").eq(r).add(this).toggleClass(o.scroller_rowHighlight,"mouseover"===e.type)}))},adjustWidth:function(e,r,l,o,s){r=r.scroller_$container;r.children("."+R.scrollerTable).css(s?"right":"left",l),r.children("."+R.scrollerHeader+", ."+R.scrollerFooter).css(s?"right":"left",l+(s&&B.scroller.isSafari?o:0))},updateFixed:function(e,r){var l,o,s=r.scroller_$container,t=r.scroller_$header,i=r.scroller_$footer,d=e.$table,c=d.parent(),a=r.scroller_barSetWidth,n=d.hasClass(R.scrollerRtl);if(0===r.scroller_fixedColumns)r.scroller_isBusy=!1,B.scroller.removeFixed(e,r),l=s.width(),c.width(l),o=B.scroller.hasScrollBar(c)?a:0,t.parent().add(i.parent()).width(l-o);else if(e.isScrolling){r.scroller_isBusy=!0,s.find("."+R.scrollerFixed).length||B.scroller.setupFixed(e,r);var h,f,p,b,u,m,g,v,x=r.scroller_$container.children("."+R.scrollerTable).children("table").children("tbody"),_=(r.scroller_$header.children("thead").children("."+R.headerRow),r.scroller_$fixedColumns.addClass(R.scrollerHideElement)),w=_.find("."+R.scrollerTable).children("table"),C=w.children("tbody"),F=B.scroller,H=r.scroller_fixedColumns,T=function(e,r,l){return parseInt(e.css(r)||"",10)||l||0},y=d.find("tbody td"),$=T(y,"border-right-width",1),W=T(y,"border-spacing",0),S=T(d,"padding-left")+T(d,"padding-right")+2*T(d,"border-left-width",1)+T(d,"border-right-width",1)-$+W/2,E=r.scroller_calcWidths;for(B.scroller.removeFixed(e,r,!1),h=0;h').css("height",o+"px"),_.find("."+R.scrollerTable).append(y)):l||_.find("."+R.scrollerBarSpacer).remove(),B.scroller.updateRowHeight(e,r),_.height(s.height()),_.removeClass(R.scrollerHideElement),_.find("caption").height(r.scroller_$header.find("caption").height()),c.scroll(),setTimeout(function(){r.scroller_isBusy=!1},0)}},fixHeight:function(e,r){for(var l,o,s,t,i=R.scrollerAddedHeight,d=e.length,c=0;ci.totalPages?i.totalPages-1:r,s=i.size=parseInt(H.decodeHash(e,t,"size"),10)),c.hasWidget(n,"filter")&&(a=H.decodeHash(e,t,"filter"))&&(a=a.split(t.sort2Hash_separator),e.$table.one("tablesorter-ready",function(){setTimeout(function(){e.$table.one("filterEnd",function(){l(this).triggerHandler("pageAndSize",[o,s])}),(r=c.filter.equalFilters?c.filter.equalFilters(e,e.lastSearch,a):(e.lastSearch||[]).join("")!==(a||[]).join(""))||l.tablesorter.setFilters(n,a,!0)},100)})),a||e.$table.one("tablesorter-ready",function(){e.$table.triggerHandler("pageAndSize",[o,s])}),e.$table.on("sortEnd.sort2hash filterEnd.sort2hash pagerComplete.sort2Hash",function(){this.hasInitialized&&H.setHash(this.config,this.config.widgetOptions)})},getTableId:function(e,t){return t.sort2Hash_tableId||e.table.id||"table"+l("table").index(e.$table)},regexEscape:function(e){return e.replace(/([\.\^\$\*\+\-\?\(\)\[\]\{\}\\\|])/g,"\\$1")},convertString2Sort:function(e,t,a){for(var r,o,s,n,i,h=a.split(t.sort2Hash_separator),d=0,l=h.length,c=[];de.columns)for(r=new RegExp("("+H.regexEscape(o)+")","i"),n=0;n'),u=H.parent().addClass(w.css.stickyHide).css({position:o.length?"absolute":"fixed",padding:parseInt(H.parent().parent().css("padding-left"),10),top:y+g,left:0,visibility:"hidden",zIndex:c.stickyHeaders_zIndex||2}),y=H.children("thead:first"),b="",_=function(e,s){for(var t,i,r,a=e.filter(":visible"),d=a.length,n=0;nr.top&&i thead:gt(0), tr.sticky-false").hide(),H.find("> tbody, > tfoot").remove(),H.find("caption").toggle(c.stickyHeaders_includeCaption),a=y.children().children(),H.css({height:0,width:0,margin:0}),a.find("."+w.css.resizer).remove(),l.addClass("hasStickyHeaders").bind("pagerComplete"+d,function(){m()}),w.bindEvents(e,y.children().children("."+w.css.header)),c.stickyHeaders_appendTo?C(c.stickyHeaders_appendTo).append(u):l.after(u),s.onRenderHeader)for(i=(r=y.children("tr").children()).length,t=0;t> Using",s?p:"cookies"),u.parseJSON&&(a=s?u.parseJSON(S[p][t]||"null")||{}:(o=c.cookie.split(/[;\s|=]/),0!==(g=u.inArray(t,o)+1)&&u.parseJSON(o[g]||"null")||{})),void 0===r||!S.JSON||!JSON.hasOwnProperty("stringify"))return a&&a[d]?a[d][e]:"";a[d]||(a[d]={}),a[d][e]=r,s?S[p][t]=JSON.stringify(a):((i=new Date).setTime(i.getTime()+31536e6),c.cookie=t+"="+JSON.stringify(a).replace(/\"/g,'"')+"; expires="+i.toGMTString()+"; path=/")}}(jQuery,window,document);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-toggle.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-toggle.min.js new file mode 100644 index 00000000..7d1f7098 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-toggle.min.js @@ -0,0 +1,6 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! tablesorter enable/disable sort & filter (BETA) - 11/10/2015 (v2.24.4) + * Requires tablesorter v2.24.4+ & jQuery 1.7+ + * by Rob Garrison + */ +!function(){"use strict";var g=jQuery.tablesorter,s=g.toggleTS={init:function(e,l){l.toggleTS_isEnabled=!0,l.toggleTS_areDisabled={headers:[],filters:[]},e.$table.on("enable.toggleTS disable.toggleTS",function(e){s.toggle(this.config,this.config.widgetOptions,"enable"===e.type)})},toggle:function(e,l,t){if(l.toggleTS_isEnabled!==t){l.toggleTS_isEnabled=t;for(var i,s=e.$headers.length,o=0;o
')}),o.cssIcon&&b.find("."+A.css.icon).removeClass(p?[m.icons,u].join(" "):"").addClass(w.icons||""),A.hasWidget(o.table,"filter")&&(r=function(){f.children("thead").children("."+A.css.filterRow).removeClass(p&&m.filterRow||"").addClass(w.filterRow||"")},t.filter_initialized?r():f.one("filterInit",function(){r()}))),s=0;s> Applied "+C+" theme"+A.benchmark(n))},remove:function(e,o,t,s){var r,i,a,n,c;t.uitheme_applied&&(r=o.$table,o=o.appliedTheme||"jui",i=A.themes[o]||A.themes.jui,a=r.children("thead").children(),n=i.sortNone+" "+i.sortDesc+" "+i.sortAsc,c=i.iconSortNone+" "+i.iconSortDesc+" "+i.iconSortAsc,r.removeClass("tablesorter-"+o+" "+i.table),t.uitheme_applied=!1,s||(r.find(A.css.header).removeClass(i.header),a.unbind("mouseenter.tsuitheme mouseleave.tsuitheme").removeClass(i.hover+" "+n+" "+i.active).filter("."+A.css.filterRow).removeClass(i.filterRow),a.find("."+A.css.icon).removeClass(i.icons+" "+c)))}})}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/js/widgets/widget-vertical-group.min.js b/modules/pdproductattributeslist/views/js/widgets/widget-vertical-group.min.js new file mode 100644 index 00000000..2c3d55f7 --- /dev/null +++ b/modules/pdproductattributeslist/views/js/widgets/widget-vertical-group.min.js @@ -0,0 +1,3 @@ +(function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery){ +/*! Widget: vertical-group (BETA) - updated 12/13/2017 (v2.29.1) */ +!function(h){"use strict";var G=h.tablesorter,f=G.css;function g(r){r.removeClass(f.verticalGroupHide+" "+f.verticalGroupShow)}function C(r,e,a){e.parent().removeClass(r.zebra[(a+1)%2]).addClass(r.zebra[a%2])}function r(r,e,a){var o=-1,t=r.tBodies[0].rows,i=G.hasWidget(r,"zebra"),l=[],s=[];if(!a.vertical_group_lock){if(a.vertical_group_lock=!0,""===(l=h.map(e.$headerIndexed,function(r){return r.hasClass(f.verticalGroupHeader)?1:""})).join(""))g(h(t).find("."+f.verticalGroupHide+",."+f.verticalGroupShow));else for(var c=0;c",{href:"#",class:i,"data-view-type":e,title:t.title}));i.append(l("",{class:t.icon})),o.append(i)}),o.find("."+a.view_switcher_class).on("click",function(e){if(e.preventDefault(),l(this).hasClass("active"))return!1;o.find("."+a.view_switcher_class).removeClass("active"),l(this).addClass("active"),a.view_layout=l(this).attr("data-view-type"),!0===a.view_layouts[a.view_layout].raw?(r.remove(t,a),r.buildToolBar(t,a)):(!1===c&&r.hideTable(t,a),r.buildView(t,a))})},removeToolBar:function(e,t){l(t.view_toolbar).empty(),r.removeCaption(e,t)},buildView:function(e,t){r.removeView(e,t);var a=t.view_layouts[t.view_layout],o=l(a.container,{class:t.view_layout});n.getColumnText(e.$table,0,function(e){var n=a.tmpl,i=(l.each(l(e.$row).find("td"),function(e,t){var i={},a="{col"+e+"}",o=(l.each(t.attributes,function(e,t){i[t.nodeName]=t.nodeValue}),l(t).html()),o=l("").append(l("",i).append(o));n=(n=n.replace(new RegExp(a,"g"),o.html())).replace(new RegExp("{col"+e+":raw}","g"),l(t).text())}),l(n));l.each(e.$row[0].attributes,function(e,t){"class"===t.nodeName?i.attr(t.nodeName,i.attr(t.nodeName)+" "+t.nodeValue):i.attr(t.nodeName,t.nodeValue)}),o.append(i)}),l(t.view_container).append(o),e.$table.triggerHandler("viewComplete")},removeView:function(e,t){l(t.view_container).empty()},hideTable:function(e){i=e.$table.css("position"),a=e.$table.css("bottom"),o=e.$table.css("left"),e.$table.css({position:"absolute",top:"-10000px",left:"-10000px"}),c=!0},init:function(e,t){!1!==t.view_layout&&void 0!==t.view_layouts[t.view_layout]&&(!1===c&&r.hideTable(e,t),e.$table.on("tablesorter-ready",function(){r.buildToolBar(e,t),r.buildView(e,t)}))},remove:function(e,t){r.removeToolBar(e,t),r.removeView(e,t),e.$table.css({position:i,top:a,left:o}),c=!1}};n.addWidget({id:"view",options:{view_toolbar:"#ts-view-toolbar",view_container:"#ts-view",view_caption:"#ts-view-caption",view_switcher_class:"ts-view-switcher",view_layout:!1,view_layouts:{}},init:function(e,t,i,a){r.init(i,a)},remove:function(e,t,i){r.remove(t,i)}})}(jQuery);return jQuery;})); diff --git a/modules/pdproductattributeslist/views/templates/hook/hookDisplayCustomAttributesListTable.tpl b/modules/pdproductattributeslist/views/templates/hook/hookDisplayCustomAttributesListTable.tpl new file mode 100644 index 00000000..3b0dddc0 --- /dev/null +++ b/modules/pdproductattributeslist/views/templates/hook/hookDisplayCustomAttributesListTable.tpl @@ -0,0 +1,107 @@ + +{if $product_combinations} +
+ + {if $block_heading} +

{l s='Select product combination' mod='pdproductattributeslist'}

+ {/if} + + + + + + + {if $show_prices} + + + {/if} + + {if !$is_catalog} + + {/if} + + + + {foreach from=$product_combinations item=$combination} + + + + + + + + + {if $show_prices} + + + + {/if} + + + + {if !$is_catalog} + + {/if} + + {/foreach} + + + +
{l s='Image' mod='pdproductattributeslist'}{l s='Variant' mod='pdproductattributeslist'}{l s='Product informations' mod='pdproductattributeslist'}{l s='Price (tax incl.)' mod='pdproductattributeslist'}{l s='Price (tax excl.)' mod='pdproductattributeslist'}{l s='Quantity in stock' mod='pdproductattributeslist'}{l s='Select quantity' mod='pdproductattributeslist'}
+ + + {foreach from=$combination.images item=$img} + + {$combination.attribute_name} + + {/foreach} + + + {$combination.attribute_name_html nofilter} + + + {if isset($combination.reference) AND $combination.reference} + {l s='Reference' mod='pdproductattributeslist'}: {$combination.reference} + {/if} + {if !empty($combination.ean13)} +
{l s='Ean' mod='pdproductattributeslist'}: {$combination.ean13} + {/if} + +
+ + {Tools::displayPrice($combination.price)} + + {if $combination.price != $combination.price_old} +
+ + {Tools::displayPrice($combination.price_old)} + + {/if} +
+ + {Tools::displayPrice($combination.price_tax_excl)} + +
+ {if $combination.price_tax_excl != $combination.price_old_tax_excl} + + {Tools::displayPrice($combination.price_old_tax_excl)} + + {/if} +
+ {$combination.quantity} {l s='pcs' mod='pdproductattributeslist'} + +
+ +
+
+ +
+{/if} diff --git a/modules/pdproductattributeslist/views/templates/hook/hookDisplayProductTab.tpl b/modules/pdproductattributeslist/views/templates/hook/hookDisplayProductTab.tpl new file mode 100644 index 00000000..5f47a54c --- /dev/null +++ b/modules/pdproductattributeslist/views/templates/hook/hookDisplayProductTab.tpl @@ -0,0 +1,3 @@ + +
  • {l s='Delivery cost' mod='pdproductshipping'}
  • + diff --git a/modules/pdproductattributeslist/views/templates/hook/hookDisplayProductTabContent.tpl b/modules/pdproductattributeslist/views/templates/hook/hookDisplayProductTabContent.tpl new file mode 100644 index 00000000..b3559119 --- /dev/null +++ b/modules/pdproductattributeslist/views/templates/hook/hookDisplayProductTabContent.tpl @@ -0,0 +1,105 @@ + +{if $product_combinations} +
    + {if $block_heading} +

    {l s='Select product combination' mod='pdproductattributeslist'}

    + {/if} + + + + + + + + + {if $show_prices} + + + {/if} + + {if !$is_catalog} + + {/if} + + + + {foreach from=$product_combinations item=$combination} + + + + + + + + + {if $show_prices} + + + + {/if} + + + + {if !$is_catalog} + + {/if} + + {/foreach} + +
    {l s='Image' mod='pdproductattributeslist'}{l s='Variant' mod='pdproductattributeslist'}{l s='Product informations' mod='pdproductattributeslist'}{l s='Price (tax incl.)' mod='pdproductattributeslist'}{l s='Price (tax excl.)' mod='pdproductattributeslist'}{l s='Quantity in stock' mod='pdproductattributeslist'}{l s='Select quantity' mod='pdproductattributeslist'}
    + + + {foreach from=$combination.images item=$img} + + {$combination.attribute_name} + + {/foreach} + + + {$combination.attribute_name_html nofilter} + + + {if isset($combination.reference) AND $combination.reference} + {l s='Reference' mod='pdproductattributeslist'}: {$combination.reference} + {/if} + {if !empty($combination.ean13)} +
    {l s='Ean' mod='pdproductattributeslist'}: {$combination.ean13} + {/if} + +
    + + {Tools::displayPrice($combination.price)} + + {if $combination.price != $combination.price_old} +
    + + {Tools::displayPrice($combination.price_old)} + + {/if} +
    + + {Tools::displayPrice($combination.price_tax_excl)} + +
    + {if $combination.price_tax_excl != $combination.price_old_tax_excl} + + {Tools::displayPrice($combination.price_old_tax_excl)} + + {/if} +
    + {$combination.quantity} {l s='pcs' mod='pdproductattributeslist'} + +
    + +
    +
    + +
    +{/if} diff --git a/modules/pdproductattributeslist/views/templates/hook/hookDisplayProductTabContentGrid.tpl b/modules/pdproductattributeslist/views/templates/hook/hookDisplayProductTabContentGrid.tpl new file mode 100644 index 00000000..6844de63 --- /dev/null +++ b/modules/pdproductattributeslist/views/templates/hook/hookDisplayProductTabContentGrid.tpl @@ -0,0 +1,79 @@ + +{if isset($placement) AND $placement == 2} +
    +{/if} + +{if $block_heading} +

    {l s='Select product combination' mod='pdproductattributeslist'}

    +{/if} + +
    + {if $product_combinations} +
    + +
    + {foreach from=$product_combinations item=combination} +
    +
    +
    + +
    + {foreach from=$combination.images item=$img} + + {$combination.attribute_name} + + {/foreach} + + +
    +
    +

    + {$combination.attribute_name} +

    + + {if $configuration.show_prices} +
    + {Tools::displayPrice($combination.price)} + {if $combination.price != $combination.price_old} + + {Tools::displayPrice($combination.price_old)} + + {/if} +
    + {/if} +
    + {if !$configuration.is_catalog} +
    + + + +
    + +
    +
    + +
    +
    + {/if} + {include file='catalog/_partials/product-flags.tpl'} +
    +
    + +
    + {/foreach} +
    +
    + {/if} +
    + +{if isset($placement) AND $placement == 2} +
    +{/if} diff --git a/modules/pdproductattributeslist/views/templates/hook/index.php b/modules/pdproductattributeslist/views/templates/hook/index.php new file mode 100644 index 00000000..93974122 --- /dev/null +++ b/modules/pdproductattributeslist/views/templates/hook/index.php @@ -0,0 +1,35 @@ + +* @copyright 2007-2013 PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/modules/pdproductattributeslist/views/templates/index.php b/modules/pdproductattributeslist/views/templates/index.php new file mode 100644 index 00000000..f4531ceb --- /dev/null +++ b/modules/pdproductattributeslist/views/templates/index.php @@ -0,0 +1,35 @@ + +* @copyright 2007-2014 PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/_dev/.htaccess b/themes/at_movic/_dev/.htaccess new file mode 100644 index 00000000..93169e4e --- /dev/null +++ b/themes/at_movic/_dev/.htaccess @@ -0,0 +1,2 @@ +Order deny,allow +Deny from all diff --git a/themes/at_movic/_dev/css/_theme_variables.scss b/themes/at_movic/_dev/css/_theme_variables.scss new file mode 100644 index 00000000..69867ca6 --- /dev/null +++ b/themes/at_movic/_dev/css/_theme_variables.scss @@ -0,0 +1,95 @@ +@import "partials/variables"; + +/** + * Web Application Prefix Apply For Making Owner Styles + */ +$app-brand-prefix : leo !default; + +/** + * Blocks Layout Selectors + */ +$block-prefix : block!default; +$block-selector : block !default; +$block-heading-selector : title_block !default; +$block-content-selector : block_content !default; + +//------- Path Variables +$image-path: "images/"!default; +$image-theme-base-path: "../img/"!default; +$image-base-path: "../../../img/"!default; +$image-module-path: "../../../img/icon/"!default; +$module-path: "../../../modules/"!default; + +/***********************************************************************/ +// some basic colors + +$white: #FFFFFF !default; +$black: #000000 !default; +$blue: #6087D2 !default; +$wild-sand: #ffffff !default; +$silver: #f5f5f5 !default; +$red: #f7525a !default; +$red-light: #ff9999 !default; +$yellow-light: #fcd54c !default; +$nocolor: transparent!default; + +// Variables Font Family +// ======================================================================== + +$font-family-tertiary : $font-family-base !default; // font for menu +$font-family-septenary : $font-family-base !default; // font for slideshow +$font-family-senary : $font-family-base !default; // font for Price + +$font-icon: "FontAwesome" !default; +$font-icon-2: "Material Icons" !default; +$font-icon-3: "themify" !default; + +//-------- Variables defined for Themes + Skins + +$theme-color-default : #000 !default; +$theme-color-secondary : #333 !default; // Category page +$theme-color-tertiary: #999999 !default; +$theme-color-senary: #666666 !default; // Product Page + +//-------- BORDERS +$border-color: #eee !default; +$main-border: 1px solid $border-color !default; +$main-border-hover: 1px solid $theme-color-default !default; + + +//-------- Variables RTL +$rtl-left : left; +$rtl-right : right; +$ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); + +// LAYOUT VARIABLES +// ======================================================================== + +// Header Nav +$header-nav-outside-bg: #282d35 !default; +$header-nav-bg: $nocolor !default; +$header-nav-color: $theme-color-tertiary !default; +$header-nav-font-size: $base-font-size !default; +$header-nav-height: 50px !default; + +// Header Top +$header-top-outside-bg: $white !default; +$header-top-bg: $nocolor !default; +$header-top-color: $black !default; + +// Footer +$footer-outside-bg: #25292f !default; +$footer-bg: $nocolor !default; +$footer-color: $theme-color-tertiary !default; + +$footer-top-outside-bg: $white !default; +$footer-top-bg: $nocolor !default; +$footer-top-color: $footer-color !default; + +$footer-center-outside-bg: $footer-outside-bg !default; +$footer-center-bg: $nocolor !default; +$footer-center-color: $footer-color !default; + +$footer-bottom-outside-bg: #191c21 !default; +$footer-bottom-bg: $nocolor !default; +$footer-bottom-color: $footer-color !default; \ No newline at end of file diff --git a/themes/at_movic/_dev/css/app/_animations.scss b/themes/at_movic/_dev/css/app/_animations.scss new file mode 100644 index 00000000..b7853232 --- /dev/null +++ b/themes/at_movic/_dev/css/app/_animations.scss @@ -0,0 +1,722 @@ +/**/ +.no-padding { padding: 0 !important; } +.no-margin { margin: 0 !important; } + +.effect-1{ + overflow: hidden; + img{ + @include transition(all 1s); + @include backface-visibility(hidden); + } + &:hover{ + img{ + @include transform(scale3d(1.05,1.05,1.05)); + } + } +} +.effect-2{ + img{ + @include transition(all .4s); + } + &:hover{ + img{ + @include filter(brightness(30%)); + } + } +} + +@keyframes effectzoom { + 0% { @include scale(1); } + 50% { @include scale(1.2); } + 100% { @include scale(1); } +} +@-o-keyframes effectzoom{ + 0% { @include scale(1); } + 50% { @include scale(1.2); } + 100% { @include scale(1); } +} +@-webkit-keyframes effectzoom{ + 0% { @include scale(1); } + 50% { @include scale(1.2); } + 100% { @include scale(1); } +} +@-moz-keyframes effectzoom{ + 0% { @include scale(1); } + 50% { @include scale(1.2); } + 100% { @include scale(1); } +} + + +// Dropdown effect +.e-scale{ + .popup-content{ + @include scale(0); + @include transition(all 0.3s ease 0s); + } + &.popup-over:hover{ + .popup-content{ + @include scale(1); + @include transition(all 0.3s ease 0s); + } + } +} + +.e-translate-left{ + .popup-content{ + @include opacity(0); + @include translate(-200px, 0px); + @include transition(all 0.3s ease 0s); + } + &.popup-over:hover{ + .popup-content{ + @include opacity(1); + @include translate(0, 0); + @include transition(all 0.3s ease 0s); + } + } +} + +.e-translate-right{ + .popup-content{ + @include opacity(0); + @include translate(200px, 0px); + @include transition(all 0.3s ease 0s); + } + &.popup-over:hover{ + .popup-content{ + @include opacity(1); + @include translate(0, 0); + @include transition(all 0.3s ease 0s); + } + } +} + +.e-translate-top{ + .popup-content{ + @include opacity(0); + @include translate(0, 200px); + @include transition(all 0.3s ease 0s); + } + &.popup-over:hover{ + .popup-content{ + @include opacity(1); + @include translate(0, 0); + @include transition(all 0.3s ease 0s); + } + } +} + +.e-translate-down{ + .popup-content{ + @include opacity(0); + height: 0; + @include transition(all 0.3s ease 0s); + } + &.popup-over:hover{ + .popup-content{ + @include opacity(1); + height: auto; + @include transition(all 0.3s ease 0s); + } + } +} +// Image Effect +.effect { + a{ + position: relative; + display: inline-block; + max-width: 100%; + &:before{ + position: absolute; + content: ""; + top: 0; + left: 0; + width: 0; + height: 0; + margin: auto; + background-color: rgba(255, 255, 255, 0.1); + @include transition (all 0.3s ease-out 0s); + } + &:after{ + content: ""; + position: absolute; + right: 0; + bottom: 0; + width: 0; + height: 0; + background-color: rgba(255, 255, 255, 0.1); + @include transition (all 0.3s ease-out 0s); + } + &:hover:before, + &:hover:after{ + width: 100%; + height: 100%; + } + } +} +/* effect *******************/ +/* +@media (min-width: 991px) { + .dropdown-menu, + .popup-content{ + animation: animationmenus ease-in-out 0.4s; + -webkit-animation: animationmenus ease-in-out 0.4s; + -moz-animation: animationmenus ease-in-out 0.4s; + -o-animation: animationmenus ease-in-out 0.4s; + -ms-animation: animationmenus ease-in-out 0.4s; + } +} +@-webkit-keyframes animationmenus { + from { + @include opacity(0); + transform: translateY(20px); + backface-visibility: hidden; + } + to { + @include opacity(1); + transform: translateY(0px); + backface-visibility: visible; + } +} +@-moz-keyframes animationmenus { + from { + @include opacity(0); + transform: translateY(20px); + backface-visibility: hidden; + } + to { + @include opacity(1); + transform: translateY(0px); + backface-visibility: visible; + } +} +@-o-keyframes animationmenus { + from { + @include opacity(0); + transform: translateY(20px); + backface-visibility: hidden; + } + to { + @include opacity(1); + transform: translateY(0px); + backface-visibility: visible; + } +} +@keyframes animationmenus { + from { + @include opacity(0); + transform: translateY(20px); + backface-visibility: hidden; + } + to { + @include opacity(1); + transform: translateY(0px); + backface-visibility: visible; + } +} + */ +.ImageWrapper {display: block;overflow: hidden;position: relative;} +/* ============================================= +Button Layout and Color Scheme +============================================= */ +.WhiteRounded {background-color: #ffffff;border: medium none;display: inline-block !important;float: none !important;font-size: 14px;font-weight: normal;height: 40px;line-height: 40px;margin: 0 2px;text-align: center;width: 40px;-webkit-border-radius: 50%;-moz-border-radius: 50%;-ms-border-radius: 50%;-o-border-radius: 50%;border-radius: 50%;-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-ms-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-o-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);} +.WhiteRounded > a {color: #222222;display: block;font-weight: normal;} +.RedRounded {background-color: #D8322B;border: medium none;display: inline-block !important;float: none !important;font-size: 14px;font-weight: normal;height: 40px;line-height: 40px;margin: 0 2px;text-align: center;width: 40px;-webkit-border-radius: 50%;-moz-border-radius: 50%;-ms-border-radius: 50%;-o-border-radius: 50%;border-radius: 50%;-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-ms-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-o-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);} +.RedRounded > a {color: #FFFFFF;display: block;font-weight: normal;} +.BlackRounded {background-color: #222222;border: medium none;display: inline-block !important;float: none !important;font-size: 14px;font-weight: normal;height: 40px;line-height: 40px;margin: 0 2px;text-align: center;width: 40px;-webkit-border-radius: 50%;-moz-border-radius: 50%;-ms-border-radius: 50%;-o-border-radius: 50%;border-radius: 50%;-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-ms-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-o-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);} +.BlackRounded > a {color: #ffffff;display: block;font-weight: normal;} +.WhiteHollowRounded {border: 1px solid #ffffff;display: inline-block !important;float: none !important;font-size: 14px;font-weight: normal;height: 40px;line-height: 40px;margin: 0 2px;text-align: center;width: 40px;-webkit-border-radius: 50%;-moz-border-radius: 50%;-ms-border-radius: 50%;-o-border-radius: 50%;border-radius: 50%;} +.WhiteHollowRounded > a {color: #ffffff;display: block;font-weight: normal;} +.BlackHollowRounded {border: 1px solid #222222;display: inline-block !important;float: none !important;font-size: 14px;font-weight: normal;height: 40px;line-height: 40px;margin: 0 2px;text-align: center;width: 40px;-webkit-border-radius: 50%;-moz-border-radius: 50%;-ms-border-radius: 50%;-o-border-radius: 50%;border-radius: 50%;} +.BlackHollowRounded > a {color: #222222;display: block;font-weight: normal;} +.WhiteSquare {background-color: #ffffff;border: medium none;display: inline-block !important;float: none !important;font-size: 14px;font-weight: normal;height: 40px;line-height: 40px;margin: 0 2px;text-align: center;width: 40px;-webkit-border-radius: 4px 4px 4px;-moz-border-radius: 4px 4px 4px;-ms-border-radius: 4px 4px 4px;-o-border-radius: 4px 4px 4px;border-radius: 4px 4px 4px;-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-ms-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-o-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);} +.WhiteSquare > a {color: #222222;display: block;font-weight: normal;} +.BlackSquare {background-color: #222222;border: medium none;display: inline-block !important;float: none !important;font-size: 14px;font-weight: normal;height: 40px;line-height: 40px;margin: 0 2px;text-align: center;width: 40px;-webkit-border-radius: 4px 4px 4px;-moz-border-radius: 4px 4px 4px;-ms-border-radius: 4px 4px 4px;-o-border-radius: 4px 4px 4px;border-radius: 4px 4px 4px;-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-ms-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);-o-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);box-shadow: 0 0 1px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(0, 0, 0, .1);} +.BlackSquare > a {color: #ffffff;display: block;font-weight: normal;} +.WhiteHollowSquare {border: 1px solid #ffffff;display: inline-block !important;float: none !important;font-size: 14px;font-weight: normal;height: 40px;line-height: 40px;margin: 0 2px;text-align: center;width: 40px;-webkit-border-radius: 4px 4px 4px;-moz-border-radius: 4px 4px 4px;-ms-border-radius: 4px 4px 4px;-o-border-radius: 4px 4px 4px;border-radius: 4px 4px 4px;} +.WhiteHollowSquare > a {color: #ffffff;display: block;font-weight: normal;} +.BlackHollowSquare {border: 1px solid #222222;display: inline-block !important;float: none !important;font-size: 14px;font-weight: normal;height: 40px;line-height: 40px;margin: 0 2px;text-align: center;width: 40px;-webkit-border-radius: 4px 4px 4px;-moz-border-radius: 4px 4px 4px;-ms-border-radius: 4px 4px 4px;-o-border-radius: 4px 4px 4px;border-radius: 4px 4px 4px;} +.BlackHollowSquare > a {color: #222222;display: block;font-weight: normal;} +.VisibleButtons {margin: 0;position: absolute;text-align: center;width: 100%;top: 50%;margin-top: -20px;} +.VisibleImageOverlay {position: absolute;background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);width: 100%;height: 100%;top: 0;left: 0;opacity: .6;visibility: visible;} +/* ============================================= +Overlay Effects +============================================= */ +.ImageWrapper .ImageOverlayH {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);bottom: 0;display: block;height: 100%;left: 0;opacity: 0;position: absolute;right: 0;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayH {opacity: 1;} +.ImageWrapper .ImageOverlayHe {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 0;display: block;height: 0;left: 0;opacity: 0;position: absolute;top: 50%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayHe {height: 100%;top: 0;opacity: 1;} +.ImageWrapper .ImageOverlayLi:after {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;content:"";display: block;left: 0;opacity: 0;position: absolute;top: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayLi:after {top: -50%;opacity: 1;} +.ImageWrapper .ImageOverlayLi:before {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);bottom: -100%;height: 100%;content:"";display: block;left: 0;opacity: 0;position: absolute;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayLi:before {bottom: -50%;opacity: 1;} +.ImageWrapper .ImageOverlayBe:after {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;content:"";display: block;left: 0;opacity: 0;position: absolute;top: -100%;-webkit-transition: all 0.6s ease 0s;-moz-transition: all 0.6s ease 0s;-ms-transition: all 0.6s ease 0s;-o-transition: all 0.6s ease 0s;transition: all 0.6s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayBe:after {top: 50%;opacity: 1;} +.ImageWrapper .ImageOverlayBe:before {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);bottom: -100%;height: 100%;content:"";display: block;left: 0;opacity: 0;position: absolute;-webkit-transition: all 0.6s ease 0s;-moz-transition: all 0.6s ease 0s;-ms-transition: all 0.6s ease 0s;-o-transition: all 0.6s ease 0s;transition: all 0.6s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayBe:before {bottom: 50%;opacity: 1;} +.ImageWrapper .ImageOverlayB {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;display: block;left: 50%;opacity: 0;position: absolute;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 0;} +.ImageWrapper:hover .ImageOverlayB {left: 0;width: 100%;opacity: 1;} +.ImageWrapper .ImageOverlayC:after {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;content:"";display: block;right: -100%;opacity: 0;position: absolute;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayC:after {right: -50%;opacity: 1;} +.ImageWrapper .ImageOverlayC:before {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;content:"";display: block;left: -100%;opacity: 0;position: absolute;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayC:before {left: -50%;opacity: 1;} +.ImageWrapper .ImageOverlayN:after {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;content:"";display: block;right: -100%;opacity: 0;position: absolute;top: 0;-webkit-transition: all 0.6s ease 0s;-moz-transition: all 0.6s ease 0s;-ms-transition: all 0.6s ease 0s;-o-transition: all 0.6s ease 0s;transition: all 0.6s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayN:after {right: 50%;opacity: 1;} +.ImageWrapper .ImageOverlayN:before {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;content:"";display: block;left: -100%;opacity: 0;position: absolute;top: 0;-webkit-transition: all 0.6s ease 0s;-moz-transition: all 0.6s ease 0s;-ms-transition: all 0.6s ease 0s;-o-transition: all 0.6s ease 0s;transition: all 0.6s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayN:before {left: 50%;opacity: 1;} +.ImageWrapper .ImageOverlayO {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;display: block;left: -100%;opacity: 0;position: absolute;top: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayO {left: 0;top: 0;opacity: 1;} +.ImageWrapper .ImageOverlayF {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;display: block;right: -100%;opacity: 0;position: absolute;top: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayF {right: 0;top: 0;opacity: 1;} +.ImageWrapper .ImageOverlayNe {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;display: block;left: -100%;opacity: 0;position: absolute;bottom: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayNe {bottom: 0;left: 0;opacity: 1;} +.ImageWrapper .ImageOverlayNa {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;display: block;right: -100%;opacity: 0;position: absolute;bottom: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayNa {bottom: 0;right: 0;opacity: 1;} +.ImageWrapper .ImageOverlayMg {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;display: block;left: 0;opacity: 0;position: absolute;top: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayMg {top: 0;opacity: 1;} +.ImageWrapper .ImageOverlayAl {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;display: block;left: 0;opacity: 0;position: absolute;bottom: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayAl {bottom: 0;opacity: 1;} +.ImageWrapper .ImageOverlaySi {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;display: block;top: 0;opacity: 0;position: absolute;right: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlaySi {right: 0;opacity: 1;} +.ImageWrapper .ImageOverlayP {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;display: block;top: 0;opacity: 0;position: absolute;left: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;} +.ImageWrapper:hover .ImageOverlayP {left: 0;opacity: 1;} +.ImageWrapper .ImageOverlayS {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;display: block;top: 0;opacity: 0;position: absolute;left: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;-webkit-transform: rotate(180deg) scale(0);-moz-transform: rotate(180deg) scale(0);-ms-transform: rotate(180deg) scale(0);-o-transform: rotate(180deg) scale(0);transform: rotate(180deg) scale(0);} +.ImageWrapper:hover .ImageOverlayS {-webkit-transform: rotate(0deg) scale(1);-moz-transform: rotate(0deg) scale(1);-ms-transform: rotate(0deg) scale(1);-o-transform: rotate(0deg) scale(1);transform: rotate(0deg) scale(1);opacity: 1;} +.ImageWrapper .ImageOverlayCl {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);height: 100%;display: block;top: 0;opacity: 0;position: absolute;left: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;-webkit-transform: rotate(-180deg) scale(0);-moz-transform: rotate(-180deg) scale(0);-ms-transform: rotate(-180deg) scale(0);-o-transform: rotate(-180deg) scale(0);transform: rotate(-180deg) scale(0);} +.ImageWrapper:hover .ImageOverlayCl {-webkit-transform: rotate(0deg) scale(1);-moz-transform: rotate(0deg) scale(1);-ms-transform: rotate(0deg) scale(1);-o-transform: rotate(0deg) scale(1);transform: rotate(0deg) scale(1);opacity: 1;} +.ImageWrapper .ImageOverlayArLeft:before {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);opacity: 0;content:"";display: block;position: absolute;top: -50%;-webkit-transition: all 0.2s ease 0s;-moz-transition: all 0.2s ease 0s;-ms-transition: all 0.2s ease 0s;-o-transition: all 0.2s ease 0s;transition: all 0.2s ease 0s;width: 100%;height: 100%;left: -100%;overflow: hidden;} +.ImageWrapper .ImageOverlayArLeft:after {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);opacity: 0;content:"";display: block;position: absolute;top: 50%;-webkit-transition: all 0.2s ease .2s;-moz-transition: all 0.2s ease .2s;-ms-transition: all 0.2s ease .2s;-o-transition: all 0.2s ease .2s;transition: all 0.2s ease .2s;width: 100%;height: 100%;left: -100%;overflow: hidden;} +.ImageWrapper .ImageOverlayArRight:before {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);opacity: 0;content:"";display: block;position: absolute;top: -50%;-webkit-transition: all 0.2s ease .3s;-moz-transition: all 0.2s ease .3s;-ms-transition: all 0.2s ease .3s;-o-transition: all 0.2s ease .3s;transition: all 0.2s ease .3s;width: 100%;height: 100%;right: -100%;overflow: hidden;} +.ImageWrapper .ImageOverlayArRight:after {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);opacity: 0;content:"";display: block;position: absolute;top: 50%;-webkit-transition: all 0.2s ease .5s;-moz-transition: all 0.2s ease .5s;-ms-transition: all 0.2s ease .5s;-o-transition: all 0.2s ease .5s;transition: all 0.2s ease .5s;width: 100%;height: 100%;right: -100%;overflow: hidden;} +.ImageWrapper:hover .ImageOverlayArLeft:before, .ImageWrapper:hover .ImageOverlayArLeft:after {opacity: 1;left: 50%;} +.ImageWrapper:hover .ImageOverlayArRight:before, .ImageWrapper:hover .ImageOverlayArRight:after {opacity: 1;right: 50%;} +.ImageWrapper .ImageOverlayK {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);opacity: 0;position: absolute;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform-origin: top left;-moz-transform-origin: top left;-ms-transform-origin: top left;-o-transform-origin: top left;transform-origin: top left;-webkit-transform-style: preserve-3D;-moz-transform-style: preserve-3D;-ms-transform-style: preserve-3D;-o-transform-style: preserve-3D;transform-style: preserve-3D;-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);-ms-transform: rotate(180deg);-o-transform: rotate(180deg);transform: rotate(180deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .ImageOverlayK {-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);opacity: 1;} +.ImageWrapper .ImageOverlayCa {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);opacity: 0;position: absolute;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform-origin: top right;-moz-transform-origin: top right;-ms-transform-origin: top right;-o-transform-origin: top right;transform-origin: top right;-webkit-transform-style: preserve-3D;-moz-transform-style: preserve-3D;-ms-transform-style: preserve-3D;-o-transform-style: preserve-3D;transform-style: preserve-3D;-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);-ms-transform: rotate(180deg);-o-transform: rotate(180deg);transform: rotate(180deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .ImageOverlayCa {-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);opacity: 1;} +.ImageWrapper .ImageOverlaySc {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);opacity: 0;position: absolute;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform-origin: bottom left;-moz-transform-origin: bottom left;-ms-transform-origin: bottom left;-o-transform-origin: bottom left;transform-origin: bottom left;-webkit-transform-style: preserve-3D;-moz-transform-style: preserve-3D;-ms-transform-style: preserve-3D;-o-transform-style: preserve-3D;transform-style: preserve-3D;-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);-ms-transform: rotate(180deg);-o-transform: rotate(180deg);transform: rotate(180deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .ImageOverlaySc {-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);opacity: 1;} +.ImageWrapper .ImageOverlayTi {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);opacity: 0;position: absolute;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform-origin: bottom right;-moz-transform-origin: bottom right;-ms-transform-origin: bottom right;-o-transform-origin: bottom right;transform-origin: bottom right;-webkit-transform-style: preserve-3D;-moz-transform-style: preserve-3D;-ms-transform-style: preserve-3D;-o-transform-style: preserve-3D;transform-style: preserve-3D;-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);-ms-transform: rotate(180deg);-o-transform: rotate(180deg);transform: rotate(180deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .ImageOverlayTi {-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);opacity: 1;} +/* ============================================= +Background Transform +============================================= */ +.GrayScale {-webkit-filter: url("data:image/svg+xml;utf8,#grayscale");filter: url("data:image/svg+xml;utf8,#grayscale");filter: gray;-webkit-filter: grayscale(100%);-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);opacity: .6;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.GrayScale:hover {-webkit-filter: url("data:image/svg+xml;utf8,#grayscale");filter: url("data:image/svg+xml;utf8,#grayscale");-webkit-filter: grayscale(0%);-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity: 1;} +.BackgroundS img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.BackgroundS:hover img {-webkit-transform: scale(1.2);-moz-transform: scale(1.2);-ms-transform: scale(1.2);-o-transform: scale(1.2);transform: scale(1.2);} +.BackgroundRR img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.BackgroundRR:hover img {-webkit-transform: rotate(-10deg) scale(1.4);-moz-transform: rotate(-10deg) scale(1.4);-ms-transform: rotate(-10deg) scale(1.4);-o-transform: rotate(-10deg) scale(1.4);transform: rotate(-10deg) scale(1.4);} +.BackgroundR img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.BackgroundR:hover img {-webkit-transform: rotate(10deg) scale(1.4);-moz-transform: rotate(10deg) scale(1.4);-ms-transform: rotate(10deg) scale(1.4);-o-transform: rotate(10deg) scale(1.4);transform: rotate(10deg) scale(1.4);} +.BackgroundRS img {-webkit-transform: scale(1.2);-moz-transform: scale(1.2);-ms-transform: scale(1.2);-o-transform: scale(1.2);transform: scale(1.2);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.BackgroundRS:hover img {-webkit-transform: scale(1.0);-moz-transform: scale(1.0);-ms-transform: scale(1.0);-o-transform: scale(1.0);transform: scale(1.0);} +.BackgroundF img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.BackgroundF:hover img {opacity: 0;} +.BackgroundFS img {-webkit-transform: scale(1.0);-moz-transform: scale(1.0);-ms-transform: scale(1.0);-o-transform: scale(1.0);transform: scale(1.0);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.BackgroundFS:hover img {-webkit-transform: scale(10);-moz-transform: scale(10);-ms-transform: scale(10);-o-transform: scale(10);transform: scale(10);opacity: 0;} +.BackgroundFRS img {-webkit-transform: scale(1.0);-moz-transform: scale(1.0);-ms-transform: scale(1.0);-o-transform: scale(1.0);transform: scale(1.0);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.BackgroundFRS:hover img {-webkit-transform: scale(0);-moz-transform: scale(0);-ms-transform: scale(0);-o-transform: scale(0);transform: scale(0);opacity: 0;} +.SquareCircle {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.SquareCircle:hover {-webkit-border-radius: 50%;-moz-border-radius: 50%;-ms-border-radius: 50%;-o-border-radius: 50%;border-radius: 50%;} +.CircleSquare {-webkit-border-radius: 50%;-moz-border-radius: 50%;-ms-border-radius: 50%;-o-border-radius: 50%;border-radius: 50%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.CircleSquare:hover {-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;} +/* ============================================= +Cubic Effects +============================================= */ +.ImageWrapper .CStyleH {margin: 0;opacity: 0;position: absolute;text-align: center;top: 0;visibility: hidden;width: 100%;-webkit-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-moz-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-ms-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-o-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);} +.ImageWrapper:hover .CStyleH {margin-top: -20px;opacity: 1;top: 50%;visibility: visible;} +.ImageWrapper .CStyleHe {visibility: hidden;margin: 0;opacity: 0;position: absolute;text-align: center;bottom: 0;width: 100%;-webkit-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-moz-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-ms-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-o-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);} +.ImageWrapper:hover .CStyleHe {margin-bottom: -20px;opacity: 1;bottom: 50%;visibility: visible;} +.ImageWrapper .CStyleLi {visibility: hidden;margin: 0;opacity: 0;position: absolute;text-align: right;right: 0;width: 100%;top: 50%;margin-top: -20px;-webkit-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-moz-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-ms-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-o-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);} +.ImageWrapper:hover .CStyleLi {margin-right: -42px;opacity: 1;right: 50%;visibility: visible;} +.ImageWrapper .CStyleBe {visibility: hidden;margin: 0;opacity: 0;position: absolute;text-align: left;left: 0;width: 100%;top: 50%;margin-top: -20px;-webkit-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-moz-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-ms-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-o-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);} +.ImageWrapper:hover .CStyleBe {margin-left: -42px;opacity: 1;left: 50%;visibility: visible;} +.ImageWrapper .CStyleB {visibility: hidden;margin: 0;opacity: 0;position: absolute;text-align: center;width: 100%;top: 50%;margin-top: -20px;-webkit-transform: scale(0.2);-moz-transform: scale(0.2);-ms-transform: scale(0.2);-o-transform: scale(0.2);transform: scale(0.2);-webkit-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-moz-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-ms-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);-o-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);} +.ImageWrapper:hover .CStyleB {opacity: 1;visibility: visible;-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);} +.ImageWrapper .CStyleC span {position: absolute;} +.ImageWrapper .CStyleC span:nth-of-type(1) {bottom: 50%;top: 50%;left: 0;margin: -20px 0 0 -68px;visibility: hidden;opacity: 0;-webkit-transition: all 400ms cubic-bezier(1.000, 0, 0.570, 0) !important;-webkit-transition: all 400ms cubic-bezier(1.000, -0.360, 0.570, -0.150)!important;-moz-transition: all 400ms cubic-bezier(1.000, -0.360, 0.570, -0.150)!important;-ms-transition: all 400ms cubic-bezier(1.000, -0.360, 0.570, -0.150)!important;-o-transition: all 400ms cubic-bezier(1.000, -0.360, 0.570, -0.150)!important;transition: all 400ms cubic-bezier(1.000, -0.360, 0.570, -0.150)!important;} +.ImageWrapper .CStyleC span:nth-of-type(2) {bottom: 50%;top: 50%;left: 50%;right: 50%;margin: -20px 0 0 -20px;visibility: hidden;opacity: 0;-webkit-transform: scale(0);-moz-transform: scale(0);-ms-transform: scale(0);-o-transform: scale(0);transform: scale(0);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .CStyleC span:nth-of-type(3) {bottom: 50%;top: 50%;right: 0;margin: -20px -68px 0 0;visibility: hidden;opacity: 0;-webkit-transition: all 400ms cubic-bezier(1.000, 0, 0.570, 0) !important;-webkit-transition: all 400ms cubic-bezier(1.000, -0.360, 0.570, -0.150)!important;-moz-transition: all 400ms cubic-bezier(1.000, -0.360, 0.570, -0.150)!important;-ms-transition: all 400ms cubic-bezier(1.000, -0.360, 0.570, -0.150)!important;-o-transition: all 400ms cubic-bezier(1.000, -0.360, 0.570, -0.150)!important;transition: all 400ms cubic-bezier(1.000, -0.360, 0.570, -0.150)!important;} +.ImageWrapper:hover .CStyleC span:nth-of-type(1) {left: 50%;visibility: visible;opacity: 1;} +.ImageWrapper:hover .CStyleC span:nth-of-type(2) {visibility: visible;opacity: 1;-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);} +.ImageWrapper:hover .CStyleC span:nth-of-type(3) {right: 50%;visibility: visible;opacity: 1;} +/* ============================================= +Button Effects +============================================= */ +.ImageWrapper .StyleH {visibility: hidden;margin: 0;opacity: 0;position: absolute;text-align: center;width: 100%;top: 50%;margin-top: -20px;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleH {opacity: 1;visibility: visible;} +.ImageWrapper .StyleHe {margin: 0;opacity: 0;position: absolute;text-align: center;top: 0;visibility: hidden;width: 100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleHe {margin-top: -20px;opacity: 1;top: 50%;visibility: visible;} +.ImageWrapper .StyleLi {visibility: hidden;margin: 0;opacity: 0;position: absolute;text-align: center;bottom: 0;width: 100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleLi {margin-bottom: -20px;opacity: 1;bottom: 50%;visibility: visible;} +.ImageWrapper .StyleBe {visibility: hidden;opacity: 0;position: absolute;text-align: right;right: 0;width: 100%;top: 50%;margin-top: -20px;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleBe {margin-right: -42px;opacity: 1;right: 50%;visibility: visible;} +.ImageWrapper .StyleB {visibility: hidden;opacity: 0;position: absolute;text-align: left;left: 0;width: 100%;top: 50%;margin-top: -20px;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleB {margin-left: -42px;opacity: 1;left: 50%;visibility: visible;} +.ImageWrapper .StyleC {visibility: hidden;opacity: 0;position: absolute;text-align: center;width: 100%;top: 50%;margin-top: -20px;-webkit-transform: scale(0.2);-moz-transform: scale(0.2);-ms-transform: scale(0.2);-o-transform: scale(0.2);transform: scale(0.2);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleC {opacity: 1;visibility: visible;-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);} +.ImageWrapper .StyleN {visibility: hidden;opacity: 0;position: absolute;text-align: center;width: 100%;top: 50%;margin-top: -20px;visibility: visible;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleN {opacity: 1;visibility: visible;-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg);} +.ImageWrapper .StyleO span {position: absolute;} +.ImageWrapper .StyleO span:nth-of-type(1) {bottom: 50%;top: 50%;left: 50%;margin: -20px 0 0 -42px;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleO span:nth-of-type(2) {bottom: 50%;top: 50%;right: 50%;margin: -20px -42px 0 0;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleO span:nth-of-type(1) {opacity: 1;visibility: visible;-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg);} +.ImageWrapper:hover .StyleO span:nth-of-type(2) {opacity: 1;visibility: visible;-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg);} +.ImageWrapper .StyleF {visibility: hidden;-webkit-transform: scale(0.5) rotateX(360deg);-moz-transform: scale(0.5) rotateX(360deg);-ms-transform: scale(0.5) rotateX(360deg);-o-transform: scale(0.5) rotateX(360deg);transform: scale(0.5) rotateX(360deg);margin: 0;opacity: 0;position: absolute;text-align: center;width: 100%;top: 50%;margin-top: -20px;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleF {opacity: 1;-webkit-transform: scale(1) rotateX(0deg);-moz-transform: scale(1) rotateX(0deg);-ms-transform: scale(1) rotateX(0deg);-o-transform: scale(1) rotateX(0deg);transform: scale(1) rotateX(0deg);visibility: visible;} +.ImageWrapper .StyleNe {visibility: hidden;margin: 0;-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-ms-transform:rotateY(0deg);-o-transform:rotateY(0deg);transform:rotateY(0deg);opacity: 0;position: absolute;text-align: center;width: 100%;top: 50%;margin-top: -20px;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleNe {opacity: 1;-webkit-transform:rotateY(360deg);-moz-transform:rotateY(360deg);-ms-transform:rotateY(360deg);-o-transform:rotateY(360deg);transform:rotateY(360deg);visibility: visible;} +.ImageWrapper .StyleNa {visibility: hidden;-webkit-transform: scale(0.2) rotateY(360deg);-moz-transform: scale(0.2) rotateY(360deg);-ms-transform: scale(0.2) rotateY(360deg);-o-transform: scale(0.2) rotateY(360deg);transform: scale(0.2) rotateY(360deg);margin: 0;opacity: 0;position: absolute;text-align: center;width: 100%;top: 50%;margin-top: -20px;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleNa {opacity: 1;-webkit-transform: scale(1) rotateY(0deg);-moz-transform: scale(1) rotateY(0deg);-ms-transform: scale(1) rotateY(0deg);-o-transform: scale(1) rotateY(0deg);transform: scale(1) rotateY(0deg);visibility: visible;} +.ImageWrapper .StyleMg span {position: absolute;} +.ImageWrapper .StyleMg span:nth-of-type(1) {bottom: 50%;top: 50%;left: 50%;margin: -20px 0 0 -82px;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleMg span:nth-of-type(2) {bottom: 50%;top: 50%;right: 50%;margin: -20px -82px 0 0;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleMg span:nth-of-type(1) {margin: -20px 0 0 -42px;visibility: visible;opacity: 1;} +.ImageWrapper:hover .StyleMg span:nth-of-type(2) {margin: -20px -42px 0 0;visibility: visible;opacity: 1;} +.ImageWrapper .StyleAl span {position: absolute;} +.ImageWrapper .StyleAl span:nth-of-type(1) {top: 0;left: 50%;margin: -20px 0 0 -42px;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleAl span:nth-of-type(2) {bottom: 0;right: 50%;margin: 0 -42px -20px 0;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleAl span:nth-of-type(1) {top: 50%;visibility: visible;opacity: 1;} +.ImageWrapper:hover .StyleAl span:nth-of-type(2) {bottom: 50%;visibility: visible;opacity: 1;} +.ImageWrapper .StyleSi span {position: absolute;} +.ImageWrapper .StyleSi span:nth-of-type(1) {bottom: 0;left: 50%;margin: 0 0 -20px -42px;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleSi span:nth-of-type(2) {top: 0;right: 50%;margin: -20px -42px 0 0;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleSi span:nth-of-type(1) {bottom: 50%;visibility: visible;opacity: 1;} +.ImageWrapper:hover .StyleSi span:nth-of-type(2) {top: 50%;visibility: visible;opacity: 1;} +.ImageWrapper .StyleP span {position: absolute;} +.ImageWrapper .StyleP span:nth-of-type(1) {top: 0;left: 0;margin: -40px 0 0 -40px;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleP span:nth-of-type(2) {bottom: 0;right: 0;margin: 0 -40px -40px 0;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleP span:nth-of-type(1) {top: 50%;left: 50%;margin: -20px 0 0 -42px;visibility: visible;opacity: 1;} +.ImageWrapper:hover .StyleP span:nth-of-type(2) {bottom: 50%;right: 50%;margin: 0 -42px -20px 0;visibility: visible;opacity: 1;} +.ImageWrapper .StyleS span {position: absolute;} +.ImageWrapper .StyleS span:nth-of-type(1) {bottom: 0;left: 0;margin: -40px 0 0 -40px;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleS span:nth-of-type(2) {top: 0;right: 0;margin: 0 -40px -40px 0;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleS span:nth-of-type(1) {bottom: 50%;left: 50%;margin: 0 0 -20px -42px;visibility: visible;opacity: 1;} +.ImageWrapper:hover .StyleS span:nth-of-type(2) {top: 50%;right: 50%;margin: -20px -42px 0 0;visibility: visible;opacity: 1;} +.ImageWrapper .StyleCl {visibility: hidden;margin: 0;opacity: 0;position: absolute;text-align: center;width: 100%;top: 50%;margin-top: -20px;visibility: visible;-webkit-transform:rotateX(0deg);-moz-transform:rotateX(0deg);-ms-transform:rotateX(0deg);-o-transform:rotateX(0deg);transform:rotateX(0deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleCl {opacity: 1;visibility: visible;-webkit-transform:rotateX(360deg);-moz-transform:rotateX(360deg);-ms-transform:rotateX(360deg);-o-transform:rotateX(360deg);transform:rotateX(360deg);} +.ImageWrapper .StyleAr span {position: absolute;} +.ImageWrapper .StyleAr span:nth-of-type(1) {top: 50%;bottom: 50%;left: 50%;margin: -20px 0 0 -42px;visibility: hidden;opacity: 0;-webkit-transform: scale(0.2) rotate(0deg);-moz-transform: scale(0.2) rotate(0deg);-ms-transform: scale(0.2) rotate(0deg);-o-transform: scale(0.2) rotate(0deg);transform: scale(0.2) rotate(0deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleAr span:nth-of-type(2) {top: 50%;bottom: 50%;right: 50%;margin: -20px -42px -0 0;visibility: hidden;opacity: 0;-webkit-transform: scale(0.2) rotate(0deg);-moz-transform: scale(0.2) rotate(0deg);-ms-transform: scale(0.2) rotate(0deg);-o-transform: scale(0.2) rotate(0deg);transform: scale(0.2) rotate(0deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleAr span:nth-of-type(1) {visibility: visible;opacity: 1;-webkit-transform: scale(1) rotate(360deg);-moz-transform: scale(1) rotate(360deg);-ms-transform: scale(1) rotate(360deg);-o-transform: scale(1) rotate(360deg);transform: scale(1) rotate(360deg);} +.ImageWrapper:hover .StyleAr span:nth-of-type(2) {visibility: visible;opacity: 1;-webkit-transform: scale(1) rotate(360deg);-moz-transform: scale(1) rotate(360deg);-ms-transform: scale(1) rotate(360deg);-o-transform: scale(1) rotate(360deg);transform: scale(1) rotate(360deg);} +.ImageWrapper .StyleK span {position: absolute;} +.ImageWrapper .StyleK span:nth-of-type(1) {top: 50%;bottom: 50%;left: 50%;margin: -20px 0 0 -42px;visibility: hidden;opacity: 0;-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-ms-transform:rotateY(0deg);-o-transform:rotateY(0deg);transform:rotateY(0deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleK span:nth-of-type(2) {top: 50%;bottom: 50%;right: 50%;margin: -20px -42px -0 0;visibility: hidden;opacity: 0;-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-ms-transform:rotateY(0deg);-o-transform:rotateY(0deg);transform:rotateY(0deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleK span:nth-of-type(1) {visibility: visible;opacity: 1;-webkit-transform:rotateY(360deg);-moz-transform:rotateY(360deg);-ms-transform:rotateY(360deg);-o-transform:rotateY(360deg);transform:rotateY(360deg);} +.ImageWrapper:hover .StyleK span:nth-of-type(2) {visibility: visible;opacity: 1;-webkit-transform:rotateY(360deg);-moz-transform:rotateY(360deg);-ms-transform:rotateY(360deg);-o-transform:rotateY(360deg);transform:rotateY(360deg);} +.ImageWrapper .StyleCa span {position: absolute;} +.ImageWrapper .StyleCa span:nth-of-type(1) {top: 50%;bottom: 50%;left: 50%;margin: -20px 0 0 -42px;visibility: hidden;opacity: 0;-webkit-transform: scale(0.2) rotateY(0deg);-moz-transform: scale(0.2) rotateY(0deg);-ms-transform: scale(0.2) rotateY(0deg);-o-transform: scale(0.2) rotateY(0deg);transform: scale(0.2) rotateY(0deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleCa span:nth-of-type(2) {top: 50%;bottom: 50%;right: 50%;margin: -20px -42px -0 0;visibility: hidden;opacity: 0;-webkit-transform: scale(0.2) rotateY(0deg);-moz-transform: scale(0.2) rotateY(0deg);-ms-transform: scale(0.2) rotateY(0deg);-o-transform: scale(0.2) rotateY(0deg);transform: scale(0.2) rotateY(0deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleCa span:nth-of-type(1) {visibility: visible;opacity: 1;-webkit-transform: scale(1) rotateY(360deg);-moz-transform: scale(1) rotateY(360deg);-ms-transform: scale(1) rotateY(360deg);-o-transform: scale(1) rotateY(360deg);transform: scale(1) rotateY(360deg);} +.ImageWrapper:hover .StyleCa span:nth-of-type(2) {visibility: visible;opacity: 1;-webkit-transform: scale(1) rotateY(360deg);-moz-transform: scale(1) rotateY(360deg);-ms-transform: scale(1) rotateY(360deg);-o-transform: scale(1) rotateY(360deg);transform: scale(1) rotateY(360deg);} +.ImageWrapper .StyleSc span {position: absolute;} +.ImageWrapper .StyleSc span:nth-of-type(1) {bottom: 50%;top: 50%;left: 0;margin: -20px 0 0 -68px;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleSc span:nth-of-type(2) {top: 0;right: 50%;left: 50%;margin: -20px 0 0 -20px;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleSc span:nth-of-type(3) {bottom: 50%;top: 50%;right: 0;margin: -20px -68px 0 0;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleSc span:nth-of-type(1) {left: 50%;visibility: visible;opacity: 1;} +.ImageWrapper:hover .StyleSc span:nth-of-type(2) {top: 50%;visibility: visible;opacity: 1;} +.ImageWrapper:hover .StyleSc span:nth-of-type(3) {right: 50%;visibility: visible;opacity: 1;} +.ImageWrapper .StyleTi span {position: absolute;} +.ImageWrapper .StyleTi span:nth-of-type(1) {bottom: 50%;top: 50%;left: 0;margin: -20px 0 0 -68px;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleTi span:nth-of-type(2) {bottom: 50%;top: 50%;left: 50%;right: 50%;margin: -20px 0 0 -20px;visibility: hidden;opacity: 0;-webkit-transform: scale(0);-moz-transform: scale(0);-ms-transform: scale(0);-o-transform: scale(0);transform: scale(0);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper .StyleTi span:nth-of-type(3) {bottom: 50%;top: 50%;right: 0;margin: -20px -68px 0 0;visibility: hidden;opacity: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .StyleTi span:nth-of-type(1) {left: 50%;visibility: visible;opacity: 1;} +.ImageWrapper:hover .StyleTi span:nth-of-type(2) {visibility: visible;opacity: 1;-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);} +.ImageWrapper:hover .StyleTi span:nth-of-type(3) {right: 50%;visibility: visible;opacity: 1;} +.ImageWrapper .StyleV span {position: absolute;} +.ImageWrapper .StyleV span:nth-of-type(1) {top: 0;left: 50%;margin: -20px 0 0 -68px;visibility: hidden;opacity: 0;-webkit-transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .2s;-moz-transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .2s;-ms-transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .2s;-o-transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .2s;transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .2s;} +.ImageWrapper .StyleV span:nth-of-type(2) {top: 0;left: 50%;margin: -20px 0 0 -20px;visibility: hidden;opacity: 0;-webkit-transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .3s;-moz-transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .3s;-ms-transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .3s;-o-transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .3s;transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .3s;} +.ImageWrapper .StyleV span:nth-of-type(3) {top: 0;right: 50%;margin: -20px -68px 0 0;visibility: hidden;opacity: 0;-webkit-transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .4s;-moz-transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .4s;-ms-transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .4s;-o-transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .4s;transition: all 200ms cubic-bezier(0.000, 1.135, 0.730, 1.405) .4s;} +.ImageWrapper:hover .StyleV span:nth-of-type(1) {top: 50%;visibility: visible;opacity: 1;} +.ImageWrapper:hover .StyleV span:nth-of-type(2) {top: 50%;visibility: visible;opacity: 1;} +.ImageWrapper:hover .StyleV span:nth-of-type(3) {top: 50%;visibility: visible;opacity: 1;} +/* ============================================= +Plus Button Effects +============================================= */ +.ImageWrapper .PStyleH {background: url(#{$image-theme-base-path}plus.png) no-repeat scroll center center / 60px 60px #222222;height: 100%;left: 0;opacity: 0;overflow: hidden;position: absolute;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;z-index: 7;} +.ImageWrapper:hover .PStyleH {opacity: .6;visibility: visible;} +.ImageWrapper .PStyleHe {position: absolute;background: url(#{$image-theme-base-path}plus.png) no-repeat scroll center center / 100% 100% #222222;width: 100%;height: 100%;z-index: 3;-webkit-background-origin: padding-box, padding-box;-moz-background-origin: padding-box, padding-box;-ms-background-origin: padding-box, padding-box;-o-background-origin: padding-box, padding-box;background-origin: padding-box, padding-box;background-position: center center;background-repeat: no-repeat;-webkit-background-size: 10px 10px, 100% 100%;-moz-background-size: 10px 10px, 100% 100%;-ms-background-size: 10px 10px, 100% 100%;-o-background-size: 10px 10px, 100% 100%;background-size: 10px 10px, 100% 100%;opacity: 0;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .PStyleHe {opacity: .6;-webkit-background-size: 60px 60px, 100% 100%;-moz-background-size: 60px 60px, 100% 100%;-ms-background-size: 60px 60px, 100% 100%;-o-background-size: 60px 60px, 100% 100%;background-size: 60px 60px, 100% 100%;visibility: visible;} +.ImageWrapper .PStyleLi {-webkit-transform: scale(0.5) rotateY(180deg);-moz-transform: scale(0.5) rotateY(180deg);-ms-transform: scale(0.5) rotateY(180deg);-o-transform: scale(0.5) rotateY(180deg);transform: scale(0.5) rotateY(180deg);background: url(#{$image-theme-base-path}plus.png) no-repeat scroll center center / 60px 60px #222222;height: 100%;left: 0;opacity: 0;overflow: hidden;position: absolute;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;z-index: 7;} +.ImageWrapper:hover .PStyleLi {opacity: .6;-webkit-transform: scale(1) rotateY(0deg);-moz-transform: scale(1) rotateY(0deg);-ms-transform: scale(1) rotateY(0deg);-o-transform: scale(1) rotateY(0deg);transform: scale(1) rotateY(0deg);visibility: visible;} +.ImageWrapper .PStyleBe {-webkit-transform: scale(0.5) rotateX(180deg);-moz-transform: scale(0.5) rotateX(180deg);-ms-transform: scale(0.5) rotateX(180deg);-o-transform: scale(0.5) rotateX(180deg);transform: scale(0.5) rotateX(180deg);background: url(#{$image-theme-base-path}plus.png) no-repeat scroll center center / 60px 60px #222222;height: 100%;left: 0;opacity: 0;overflow: hidden;position: absolute;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;width: 100%;z-index: 7;} +.ImageWrapper:hover .PStyleBe {opacity: .6;-webkit-transform: scale(1) rotateX(0deg);-moz-transform: scale(1) rotateX(0deg);-ms-transform: scale(1) rotateX(0deg);-o-transform: scale(1) rotateX(0deg);transform: scale(1) rotateX(0deg);visibility: visible;} +.ImageWrapper .PStyleB {position: absolute;background: url(#{$image-theme-base-path}plus.png) no-repeat scroll top left / 100% 100% #222222;width: 100%;height: 100%;z-index: 3;-webkit-background-origin: padding-box, padding-box;-moz-background-origin: padding-box, padding-box;-ms-background-origin: padding-box, padding-box;-o-background-origin: padding-box, padding-box;background-origin: padding-box, padding-box;background-position: top left;background-repeat: no-repeat;-webkit-background-size: 10px 10px, 100% 100%;-moz-background-size: 10px 10px, 100% 100%;-ms-background-size: 10px 10px, 100% 100%;-o-background-size: 10px 10px, 100% 100%;background-size: 10px 10px, 100% 100%;opacity: 0;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .PStyleB {opacity: .6;-webkit-background-size: 60px 60px, 100% 100%;-moz-background-size: 60px 60px, 100% 100%;-ms-background-size: 60px 60px, 100% 100%;-o-background-size: 60px 60px, 100% 100%;background-size: 60px 60px, 100% 100%;visibility: visible;background-position: center center;} +.ImageWrapper .PStyleC {position: absolute;background: url(#{$image-theme-base-path}plus.png) no-repeat scroll top left / 100% 100% #222222;width: 100%;height: 100%;z-index: 3;-webkit-background-origin: padding-box, padding-box;-moz-background-origin: padding-box, padding-box;-ms-background-origin: padding-box, padding-box;-o-background-origin: padding-box, padding-box;background-origin: padding-box, padding-box;background-position: top right;background-repeat: no-repeat;-webkit-background-size: 10px 10px, 100% 100%;-moz-background-size: 10px 10px, 100% 100%;-ms-background-size: 10px 10px, 100% 100%;-o-background-size: 10px 10px, 100% 100%;background-size: 10px 10px, 100% 100%;opacity: 0;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .PStyleC {opacity: .6;-webkit-background-size: 60px 60px, 100% 100%;-moz-background-size: 60px 60px, 100% 100%;-ms-background-size: 60px 60px, 100% 100%;-o-background-size: 60px 60px, 100% 100%;background-size: 60px 60px, 100% 100%;visibility: visible;background-position: center center;} +.ImageWrapper .PStyleN {position: absolute;background: url(#{$image-theme-base-path}plus.png) no-repeat scroll top left / 100% 100% #222222;width: 100%;height: 100%;z-index: 3;-webkit-background-origin: padding-box, padding-box;-moz-background-origin: padding-box, padding-box;-ms-background-origin: padding-box, padding-box;-o-background-origin: padding-box, padding-box;background-origin: padding-box, padding-box;background-position: bottom right;background-repeat: no-repeat;-webkit-background-size: 10px 10px, 100% 100%;-moz-background-size: 10px 10px, 100% 100%;-ms-background-size: 10px 10px, 100% 100%;-o-background-size: 10px 10px, 100% 100%;background-size: 10px 10px, 100% 100%;opacity: 0;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .PStyleN {opacity: .6;-webkit-background-size: 60px 60px, 100% 100%;-moz-background-size: 60px 60px, 100% 100%;-ms-background-size: 60px 60px, 100% 100%;-o-background-size: 60px 60px, 100% 100%;background-size: 60px 60px, 100% 100%;visibility: visible;background-position: center center;} +.ImageWrapper .PStyleO {position: absolute;background: url(#{$image-theme-base-path}plus.png) no-repeat scroll top left / 100% 100% #222222;width: 100%;height: 100%;z-index: 3;-webkit-background-origin: padding-box, padding-box;-moz-background-origin: padding-box, padding-box;-ms-background-origin: padding-box, padding-box;-o-background-origin: padding-box, padding-box;background-origin: padding-box, padding-box;background-position: bottom left;background-repeat: no-repeat;-webkit-background-size: 10px 10px, 100% 100%;-moz-background-size: 10px 10px, 100% 100%;-ms-background-size: 10px 10px, 100% 100%;-o-background-size: 10px 10px, 100% 100%;background-size: 10px 10px, 100% 100%;opacity: 0;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .PStyleO {opacity: .6;-webkit-background-size: 60px 60px, 100% 100%;-moz-background-size: 60px 60px, 100% 100%;-ms-background-size: 60px 60px, 100% 100%;-o-background-size: 60px 60px, 100% 100%;background-size: 60px 60px, 100% 100%;visibility: visible;background-position: center center;} +.ImageWrapper .PStyleF {position: absolute;background: url(#{$image-theme-base-path}plus.png) no-repeat scroll top left / 100% 100% #222222;width: 100%;height: 100%;z-index: 3;-webkit-background-origin: padding-box, padding-box;-moz-background-origin: padding-box, padding-box;-ms-background-origin: padding-box, padding-box;-o-background-origin: padding-box, padding-box;background-origin: padding-box, padding-box;background-position: top center;background-repeat: no-repeat;-webkit-background-size: 10px 10px, 100% 100%;-moz-background-size: 10px 10px, 100% 100%;-ms-background-size: 10px 10px, 100% 100%;-o-background-size: 10px 10px, 100% 100%;background-size: 10px 10px, 100% 100%;opacity: 0;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .PStyleF {opacity: .6;-webkit-background-size: 60px 60px, 100% 100%;-moz-background-size: 60px 60px, 100% 100%;-ms-background-size: 60px 60px, 100% 100%;-o-background-size: 60px 60px, 100% 100%;background-size: 60px 60px, 100% 100%;visibility: visible;background-position: center center;} +.ImageWrapper .PStyleNe {position: absolute;background: url(#{$image-theme-base-path}plus.png) no-repeat scroll top left / 100% 100% #222222;width: 100%;height: 100%;z-index: 3;-webkit-background-origin: padding-box, padding-box;-moz-background-origin: padding-box, padding-box;-ms-background-origin: padding-box, padding-box;-o-background-origin: padding-box, padding-box;background-origin: padding-box, padding-box;background-position: bottom center;background-repeat: no-repeat;-webkit-background-size: 10px 10px, 100% 100%;-moz-background-size: 10px 10px, 100% 100%;-ms-background-size: 10px 10px, 100% 100%;-o-background-size: 10px 10px, 100% 100%;background-size: 10px 10px, 100% 100%;opacity: 0;top: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .PStyleNe {opacity: .6;-webkit-background-size: 60px 60px, 100% 100%;-moz-background-size: 60px 60px, 100% 100%;-ms-background-size: 60px 60px, 100% 100%;-o-background-size: 60px 60px, 100% 100%;background-size: 60px 60px, 100% 100%;visibility: visible;background-position: center center;} +/* ============================================= +Content Transform +============================================= */ +.ContentWrapperH .ContentH {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperH:hover .ContentH {opacity: 1;visibility: visible;} +.ContentWrapperH .ContentH .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperH .ContentH .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperH .ContentH .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperH .ContentH .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperH .ContentH .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperHe .ContentHe {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform: scale(0.0);-moz-transform: scale(0.0);-ms-transform: scale(0.0);-o-transform: scale(0.0);transform: scale(0.0);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperHe:hover .ContentHe {opacity: 1;visibility: visible;-webkit-transform: scale(1.0);-moz-transform: scale(1.0);-ms-transform: scale(1.0);-o-transform: scale(1.0);transform: scale(1.0);} +.ContentWrapperHe .ContentHe .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperHe .ContentHe .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperHe .ContentHe .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperHe .ContentHe .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperHe .ContentHe .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperLi img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperLi:hover img {-webkit-transform: scale(0);-moz-transform: scale(0);-ms-transform: scale(0);-o-transform: scale(0);transform: scale(0);} +.ContentWrapperLi .ContentLi {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform: scale(0);-moz-transform: scale(0);-ms-transform: scale(0);-o-transform: scale(0);transform: scale(0);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperLi:hover .ContentLi {opacity: 1;visibility: visible;-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);} +.ContentWrapperLi .ContentLi .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperLi .ContentLi .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperLi .ContentLi .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperLi .ContentLi .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperLi .ContentLi .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperBe img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;opacity: 1;} +.ContentWrapperBe:hover img {-webkit-transform: scale(10);-moz-transform: scale(10);-ms-transform: scale(10);-o-transform: scale(10);transform: scale(10);opacity: 0;} +.ContentWrapperBe .ContentBe {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperBe:hover .ContentBe {opacity: 1;visibility: visible;} +.ContentWrapperBe .ContentBe .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperBe .ContentBe .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperBe .ContentBe .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperBe .ContentBe .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperBe .ContentBe .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperB img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperB:hover img {-webkit-transform: translateY(100%);-moz-transform: translateY(100%);-ms-transform: translateY(100%);-o-transform: translateY(100%);transform: translateY(100%);} +.ContentWrapperB .ContentB {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: -100%;left: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperB:hover .ContentB {opacity: 1;visibility: visible;top: 0;} +.ContentWrapperB .ContentB .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperB .ContentB .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperB .ContentB .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperB .ContentB .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperB .ContentB .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperC img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperC:hover img {-webkit-transform: translateY(-100%);-moz-transform: translateY(-100%);-ms-transform: translateY(-100%);-o-transform: translateY(-100%);transform: translateY(-100%);} +.ContentWrapperC .ContentC {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;bottom: -100%;left: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperC:hover .ContentC {opacity: 1;visibility: visible;bottom: 0;} +.ContentWrapperC .ContentC .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperC .ContentC .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperC .ContentC .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperC .ContentC .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperC .ContentC .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperN img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperN:hover img {-webkit-transform: translateX(-100%);-moz-transform: translateX(-100%);-ms-transform: translateX(-100%);-o-transform: translateX(-100%);transform: translateX(-100%);} +.ContentWrapperN .ContentN {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;right: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperN:hover .ContentN {opacity: 1;visibility: visible;right: 0;} +.ContentWrapperN .ContentN .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperN .ContentN .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperN .ContentN .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperN .ContentN .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperN .ContentN .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperO img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperO:hover img {-webkit-transform: translateX(100%);-moz-transform: translateX(100%);-ms-transform: translateX(100%);-o-transform: translateX(100%);transform: translateX(100%);} +.ContentWrapperO .ContentO {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperO:hover .ContentO {opacity: 1;visibility: visible;left: 0;} +.ContentWrapperO .ContentO .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperO .ContentO .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperO .ContentO .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperO .ContentO .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperO .ContentO .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperF img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperF:hover img {-webkit-transform: translateX(20%);-moz-transform: translateX(20%);-ms-transform: translateX(20%);-o-transform: translateX(20%);transform: translateX(20%);} +.ContentWrapperF .ContentF {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 50%;height: 100%;display: block;top: 0;left: 0;-webkit-transform: perspective(600px) rotateY(90deg);-moz-transform: perspective(600px) rotateY(90deg);-ms-transform: perspective(600px) rotateY(90deg);-o-transform: perspective(600px) rotateY(90deg);transform: perspective(600px) rotateY(90deg);-webkit-transform-origin: left center 0;-moz-transform-origin: left center 0;-ms-transform-origin: left center 0;-o-transform-origin: left center 0;transform-origin: left center 0;-webkit-transform-style: preserve-3d;-moz-transform-style: preserve-3d;-ms-transform-style: preserve-3d;-o-transform-style: preserve-3d;transform-style: preserve-3d;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperF:hover .ContentF {opacity: 1;visibility: visible;-webkit-transform: perspective(600px) rotateY(0deg);-moz-transform: perspective(600px) rotateY(0deg);-ms-transform: perspective(600px) rotateY(0deg);-o-transform: perspective(600px) rotateY(0deg);transform: perspective(600px) rotateY(0deg);} +.ContentWrapperF .ContentF .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperF .ContentF .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperF .ContentF .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperNe img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperNe:hover img {-webkit-transform: translateY(20%);-moz-transform: translateY(20%);-ms-transform: translateY(20%);-o-transform: translateY(20%);transform: translateY(20%);} +.ContentWrapperNe .ContentNe {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 50%;display: block;top: 0;left: 0;-webkit-transform: perspective(600px) rotateX(-90deg);-moz-transform: perspective(600px) rotateX(-90deg);-ms-transform: perspective(600px) rotateX(-90deg);-o-transform: perspective(600px) rotateX(-90deg);transform: perspective(600px) rotateX(-90deg);-webkit-transform-origin: center top 0;-moz-transform-origin: center top 0;-ms-transform-origin: center top 0;-o-transform-origin: center top 0;transform-origin: center top 0;-webkit-transform-style: preserve-3d;-moz-transform-style: preserve-3d;-ms-transform-style: preserve-3d;-o-transform-style: preserve-3d;transform-style: preserve-3d;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperNe:hover .ContentNe {opacity: 1;visibility: visible;-webkit-transform: perspective(600px) rotateX(0deg);-moz-transform: perspective(600px) rotateX(0deg);-ms-transform: perspective(600px) rotateX(0deg);-o-transform: perspective(600px) rotateX(0deg);transform: perspective(600px) rotateX(0deg);} +.ContentWrapperNe .ContentNe .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperNe .ContentNe .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperNe .ContentNe .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperNa img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperNa:hover img {-webkit-transform: translateX(-20%);-moz-transform: translateX(-20%);-ms-transform: translateX(-20%);-o-transform: translateX(-20%);transform: translateX(-20%);} +.ContentWrapperNa .ContentNa {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 50%;height: 100%;display: block;top: 0;right: 0;-webkit-transform: perspective(600px) rotateY(-90deg);-moz-transform: perspective(600px) rotateY(-90deg);-ms-transform: perspective(600px) rotateY(-90deg);-o-transform: perspective(600px) rotateY(-90deg);transform: perspective(600px) rotateY(-90deg);-webkit-transform-origin: right center 0;-moz-transform-origin: right center 0;-ms-transform-origin: right center 0;-o-transform-origin: right center 0;transform-origin: right center 0;-webkit-transform-style: preserve-3d;-moz-transform-style: preserve-3d;-ms-transform-style: preserve-3d;-o-transform-style: preserve-3d;transform-style: preserve-3d;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperNa:hover .ContentNa {opacity: 1;visibility: visible;-webkit-transform: perspective(600px) rotateY(0deg);-moz-transform: perspective(600px) rotateY(0deg);-ms-transform: perspective(600px) rotateY(0deg);-o-transform: perspective(600px) rotateY(0deg);transform: perspective(600px) rotateY(0deg);} +.ContentWrapperNa .ContentNa .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperNa .ContentNa .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperNa .ContentNa .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperMg img {-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperMg:hover img {-webkit-transform: translateY(-20%);-moz-transform: translateY(-20%);-ms-transform: translateY(-20%);-o-transform: translateY(-20%);transform: translateY(-20%);} +.ContentWrapperMg .ContentMg {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 50%;display: block;bottom: 0;left: 0;-webkit-transform: perspective(600px) rotateX(90deg);-moz-transform: perspective(600px) rotateX(90deg);-ms-transform: perspective(600px) rotateX(90deg);-o-transform: perspective(600px) rotateX(90deg);transform: perspective(600px) rotateX(90deg);-webkit-transform-origin: center bottom 0;-moz-transform-origin: center bottom 0;-ms-transform-origin: center bottom 0;-o-transform-origin: center bottom 0;transform-origin: center bottom 0;-webkit-transform-style: preserve-3d;-moz-transform-style: preserve-3d;-ms-transform-style: preserve-3d;-o-transform-style: preserve-3d;transform-style: preserve-3d;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperMg:hover .ContentMg {opacity: 1;visibility: visible;-webkit-transform: perspective(600px) rotateY(0deg);-moz-transform: perspective(600px) rotateY(0deg);-ms-transform: perspective(600px) rotateY(0deg);-o-transform: perspective(600px) rotateY(0deg);transform: perspective(600px) rotateY(0deg);} +.ContentWrapperMg .ContentMg .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperMg .ContentMg .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperMg .ContentMg .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperAl .ContentAl {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform: rotateY(0deg) scale(0.0);-moz-transform: rotateY(0deg) scale(0.0);-ms-transform: rotateY(0deg) scale(0.0);-o-transform: rotateY(0deg) scale(0.0);transform: rotateY(0deg) scale(0.0);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperAl:hover .ContentAl {opacity: 1;visibility: visible;-webkit-transform: rotateY(360deg) scale(.9);-moz-transform: rotateY(360deg) scale(.9);-ms-transform: rotateY(360deg) scale(.9);-o-transform: rotateY(360deg) scale(.9);transform: rotateY(360deg) scale(.9);} +.ContentWrapperAl .ContentAl .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperAl .ContentAl .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperAl .ContentAl .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperAl .ContentAl .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperAl .ContentAl .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperSi .ContentSi {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform: rotateX(0deg) scale(0.0);-moz-transform: rotateX(0deg) scale(0.0);-ms-transform: rotateX(0deg) scale(0.0);-o-transform: rotateX(0deg) scale(0.0);transform: rotateX(0deg) scale(0.0);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperSi:hover .ContentSi {opacity: 1;visibility: visible;-webkit-transform: rotateX(360deg) scale(.9);-moz-transform: rotateX(360deg) scale(.9);-ms-transform: rotateX(360deg) scale(.9);-o-transform: rotateX(360deg) scale(.9);transform: rotateX(360deg) scale(.9);} +.ContentWrapperSi .ContentSi .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperSi .ContentSi .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperSi .ContentSi .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperSi .ContentSi .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperSi .ContentSi .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperP .ContentP {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform: rotateY(0deg) scale(.9);-moz-transform: rotateY(0deg) scale(.9);-ms-transform: rotateY(0deg) scale(.9);-o-transform: rotateY(0deg) scale(.9);transform: rotateY(0deg) scale(.9);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperP:hover .ContentP {opacity: 1;visibility: visible;-webkit-transform: rotateY(360deg) scale(.9);-moz-transform: rotateY(360deg) scale(.9);-ms-transform: rotateY(360deg) scale(.9);-o-transform: rotateY(360deg) scale(.9);transform: rotateY(360deg) scale(.9);} +.ContentWrapperP .ContentP .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperP .ContentP .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperP .ContentP .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperP .ContentP .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperP .ContentP .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperS .ContentS {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform: rotateX(0deg) scale(.9);-moz-transform: rotateX(0deg) scale(.9);-ms-transform: rotateX(0deg) scale(.9);-o-transform: rotateX(0deg) scale(.9);transform: rotateX(0deg) scale(.9);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperS:hover .ContentS {opacity: 1;visibility: visible;-webkit-transform: rotateX(360deg) scale(.9);-moz-transform: rotateX(360deg) scale(.9);-ms-transform: rotateX(360deg) scale(.9);-o-transform: rotateX(360deg) scale(.9);transform: rotateX(360deg) scale(.9);} +.ContentWrapperS .ContentS .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperS .ContentS .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperS .ContentS .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperS .ContentS .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperS .ContentS .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperCl {overflow: visible !important;} +.ContentWrapperCl img {position: relative;z-index: 5;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperCl:hover img {-webkit-transform: translateY(-40%);-moz-transform: translateY(-40%);-ms-transform: translateY(-40%);-o-transform: translateY(-40%);transform: translateY(-40%);} +.ContentWrapperCl .ContentCl {position: absolute;background: #ffffff;opacity: 1;visibility: hidden;width: 100%;height: 100%;display: block;bottom: 0;left: 0;z-index: 4;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperCl:hover .ContentCl {visibility: visible;} +.ContentWrapperCl .ContentCl .Content {position: absolute;top: 65%;display: block;width: 100%;} +.ContentWrapperCl .ContentCl .Content h2 {font:600 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 2px;text-align: center;} +.ContentWrapperCl .ContentCl .Content .ReadMore {margin: 8px auto;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);display: block;width: 80px;} +.ContentWrapperCl .ContentCl .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperAr {overflow: visible !important;} +.ContentWrapperAr img {position: relative;z-index: 5;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperAr:hover img {-webkit-transform: translateY(40%);-moz-transform: translateY(40%);-ms-transform: translateY(40%);-o-transform: translateY(40%);transform: translateY(40%);} +.ContentWrapperAr .ContentAr {position: absolute;background: #ffffff;opacity: 1;visibility: hidden;width: 100%;height: 100%;display: block;bottom: 0;left: 0;z-index: 4;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperAr:hover .ContentAr {visibility: visible;} +.ContentWrapperAr .ContentAr .Content {position: absolute;top: 5%;display: block;width: 100%;} +.ContentWrapperAr .ContentAr .Content h2 {font:600 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 2px;text-align: center;} +.ContentWrapperAr .ContentAr .Content .ReadMore {margin: 8px auto;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);display: block;width: 80px;} +.ContentWrapperAr .ContentAr .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperK {overflow: visible !important;} +.ContentWrapperK img {position: relative;z-index: 5;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperK:hover img {-webkit-transform: translateX(-20%);-moz-transform: translateX(-20%);-ms-transform: translateX(-20%);-o-transform: translateX(-20%);transform: translateX(-20%);} +.ContentWrapperK .ContentK {position: absolute;background: #ffffff;opacity: 1;visibility: hidden;width: 100%;height: 100%;display: block;bottom: 0;left: 0;z-index: 4;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperK:hover .ContentK {visibility: visible;} +.ContentWrapperK .ContentK .Content {display: block;width: 100%;position: relative;} +.ContentWrapperK .ContentK .Content ul {position: absolute;top: 0;right: 0;} +.ContentWrapperK .ContentK .Content ul li {margin: 14px 16px;} +.ContentWrapperK .ContentK .Content ul li a {font-size: 21px;color: #a9a9a9;} +// .ContentWrapperCa {overflow: visible !important;} +.ContentWrapperCa img {position: relative;z-index: 5;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperCa:hover img {-webkit-transform: translateX(20%);-moz-transform: translateX(20%);-ms-transform: translateX(20%);-o-transform: translateX(20%);transform: translateX(20%);} +.ContentWrapperCa .ContentCa {position: absolute;background: #ffffff;opacity: 1;visibility: hidden;width: 100%;height: 100%;display: block;bottom: 0;left: 0;z-index: 4;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperCa:hover .ContentCa {visibility: visible;} +.ContentWrapperCa .ContentCa .Content {display: block;width: 100%;position: relative;} +.ContentWrapperCa .ContentCa .Content ul {position: absolute;top: 0;left: 0;} +.ContentWrapperCa .ContentCa .Content ul li {margin: 5px;} +.ContentWrapperCa .ContentCa .Content ul li a {padding: 6px 9px;} +.ContentWrapperSc .ContentSc {position: absolute;background: #ffffff;visibility: hidden;width: 100%;height: 100%;display: block;top: -100%;left: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperSc:hover .ContentSc {visibility: visible;top: 0;} +.ContentWrapperSc .ContentSc .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperSc .ContentSc .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperSc .ContentSc .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperSc .ContentSc .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperSc .ContentSc .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperTi .ContentTi {position: absolute;background: #ffffff;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperTi:hover .ContentTi {visibility: visible;left: 0;} +.ContentWrapperTi .ContentTi .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperTi .ContentTi .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperTi .ContentTi .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperTi .ContentTi .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperTi .ContentTi .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperV .ContentV {position: absolute;background: #ffffff;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;right: -100%;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperV:hover .ContentV {visibility: visible;right: 0;} +.ContentWrapperV .ContentV .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperV .ContentV .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperV .ContentV .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperV .ContentV .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperV .ContentV .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperCr .ContentCr {position: absolute;background: #ffffff;visibility: hidden;width: 100%;height: 0;display: block;bottom: -100%;left: 0;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperCr:hover .ContentCr {visibility: visible;height: 100%;bottom: 0;} +.ContentWrapperCr .ContentCr .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperCr .ContentCr .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperCr .ContentCr .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperCr .ContentCr .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperCr .ContentCr .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperMn .ContentMn {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform-origin: top left;-moz-transform-origin: top left;-ms-transform-origin: top left;-o-transform-origin: top left;transform-origin: top left;-webkit-transform-style: preserve-3D;-moz-transform-style: preserve-3D;-ms-transform-style: preserve-3D;-o-transform-style: preserve-3D;transform-style: preserve-3D;-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);-ms-transform: rotate(180deg);-o-transform: rotate(180deg);transform: rotate(180deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperMn:hover .ContentMn {opacity: 1;visibility: visible;-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);} +.ContentWrapperMn .ContentMn .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperMn .ContentMn .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperMn .ContentMn .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperMn .ContentMn .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperMn .ContentMn .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperFe .ContentFe {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;right: 0;-webkit-transform-origin: top right;-moz-transform-origin: top right;-ms-transform-origin: top right;-o-transform-origin: top right;transform-origin: top right;-webkit-transform-style: preserve-3D;-moz-transform-style: preserve-3D;-ms-transform-style: preserve-3D;-o-transform-style: preserve-3D;transform-style: preserve-3D;-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);-ms-transform: rotate(180deg);-o-transform: rotate(180deg);transform: rotate(180deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperFe:hover .ContentFe {opacity: 1;visibility: visible;-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);} +.ContentWrapperFe .ContentFe .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperFe .ContentFe .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperFe .ContentFe .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperFe .ContentFe .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperFe .ContentFe .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperCo .ContentCo {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform-origin: bottom left;-moz-transform-origin: bottom left;-ms-transform-origin: bottom left;-o-transform-origin: bottom left;transform-origin: bottom left;-webkit-transform-style: preserve-3D;-moz-transform-style: preserve-3D;-ms-transform-style: preserve-3D;-o-transform-style: preserve-3D;transform-style: preserve-3D;-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);-ms-transform: rotate(180deg);-o-transform: rotate(180deg);transform: rotate(180deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperCo:hover .ContentCo {opacity: 1;visibility: visible;-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);} +.ContentWrapperCo .ContentCo .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperCo .ContentCo .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperCo .ContentCo .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperCo .ContentCo .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperCo .ContentCo .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperNi .ContentNi {position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;right: 0;-webkit-transform-origin: bottom right;-moz-transform-origin: bottom right;-ms-transform-origin: bottom right;-o-transform-origin: bottom right;transform-origin: bottom right;-webkit-transform-style: preserve-3D;-moz-transform-style: preserve-3D;-ms-transform-style: preserve-3D;-o-transform-style: preserve-3D;transform-style: preserve-3D;-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);-ms-transform: rotate(180deg);-o-transform: rotate(180deg);transform: rotate(180deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperNi:hover .ContentNi {opacity: 1;visibility: visible;-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);} +.ContentWrapperNi .ContentNi .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperNi .ContentNi .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperNi .ContentNi .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperNi .ContentNi .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperNi .ContentNi .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperCu img {-webkit-backface-visibility: hidden;-moz-backface-visibility: hidden;-ms-backface-visibility: hidden;-o-backface-visibility: hidden;backface-visibility: hidden;-webkit-transform: rotateY(0deg);-moz-transform: rotateY(0deg);-ms-transform: rotateY(0deg);-o-transform: rotateY(0deg);transform: rotateY(0deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperCu:hover img {-webkit-transform: rotateY(180deg);-moz-transform: rotateY(180deg);-ms-transform: rotateY(180deg);-o-transform: rotateY(180deg);transform: rotateY(180deg);} +.ContentWrapperCu .ContentCu {-webkit-backface-visibility: hidden;-moz-backface-visibility: hidden;-ms-backface-visibility: hidden;-o-backface-visibility: hidden;backface-visibility: hidden;position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform: rotateY(180deg);-moz-transform: rotateY(180deg);-ms-transform: rotateY(180deg);-o-transform: rotateY(180deg);transform: rotateY(180deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperCu:hover .ContentCu {opacity: 1;visibility: visible;-webkit-transform: rotateY(0deg);-moz-transform: rotateY(0deg);-ms-transform: rotateY(0deg);-o-transform: rotateY(0deg);transform: rotateY(0deg);} +.ContentWrapperCu .ContentCu .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperCu .ContentCu .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperCu .ContentCu .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperCu .ContentCu .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperCu .ContentCu .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +.ContentWrapperZn img {-webkit-backface-visibility: hidden;-moz-backface-visibility: hidden;-ms-backface-visibility: hidden;-o-backface-visibility: hidden;backface-visibility: hidden;-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);-o-transform: rotateX(0deg);transform: rotateX(0deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperZn:hover img {-webkit-transform: rotateX(180deg);-moz-transform: rotateX(180deg);-ms-transform: rotateX(180deg);-o-transform: rotateX(180deg);transform: rotateX(180deg);} +.ContentWrapperZn .ContentZn {-webkit-backface-visibility: hidden;-moz-backface-visibility: hidden;-ms-backface-visibility: hidden;-o-backface-visibility: hidden;backface-visibility: hidden;position: absolute;background: #ffffff;opacity: 0;visibility: hidden;width: 100%;height: 100%;display: block;top: 0;left: 0;-webkit-transform: rotateX(180deg);-moz-transform: rotateX(180deg);-ms-transform: rotateX(180deg);-o-transform: rotateX(180deg);transform: rotateX(180deg);-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ContentWrapperZn:hover .ContentZn {opacity: 1;visibility: visible;-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);-o-transform: rotateX(0deg);transform: rotateX(0deg);} +.ContentWrapperZn .ContentZn .Content {position: absolute;top: 10%;padding: 0 10px;} +.ContentWrapperZn .ContentZn .Content h2 {font: 16px'Source Sans Pro', Arial, sans-serif;color: #8CA757;padding: 0 0 6px;} +.ContentWrapperZn .ContentZn .Content p {font: normal 12px'Source Sans Pro';color: #666666;} +.ContentWrapperZn .ContentZn .Content .ReadMore {float: right;margin: 16px 0 0;background: #D1CDC3;background: -moz-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D1CDC3), color-stop(100%, #C9C5BA));background: -webkit-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -o-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: -ms-linear-gradient(top, #D1CDC3 0%, #C9C5BA 100%);background: linear-gradient(to bottom, #D1CDC3 0%, #C9C5BA 100%);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1CDC3', endColorstr='#C9C5BA', GradientType=0);-webkit-border-radius: 2px 2px 2px 2px;-moz-border-radius: 2px 2px 2px 2px;-ms-border-radius: 2px 2px 2px 2px;-o-border-radius: 2px 2px 2px 2px;border-radius: 2px 2px 2px 2px;-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-ms-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);-o-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.11), 0 0 0 rgba(0, 0, 0, 0);} +.ContentWrapperZn .ContentZn .Content .ReadMore a {color: #757167;padding: 6px 16px;display: block;font: normal 12px'Source Sans Pro';} +/* ============================================= +Ribbons +============================================= */ +.ImageWrapper .RibbonCTL .Triangle:after {border-right: 35px solid rgba(0, 0, 0, 0);border-top: 35px solid #FFFFFF;content:" ";display: block;height: 0;position: absolute;width: 0;top: 0;left: 0;z-index: 2;} +.ImageWrapper .RibbonCTL .Sign {top: 2px;left: 2px;position: absolute;z-index: 6;} +.ImageWrapper .RibbonCTL .Sign a {color: #666666;} +.ImageWrapper .RibbonCTL {opacity: 0;visibility: hidden;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .RibbonCTL {opacity: 1;visibility: visible;} +.ImageWrapper .RibbonCTR .Triangle:after {border-left: 35px solid rgba(0, 0, 0, 0);border-top: 35px solid #FFFFFF;content:" ";display: block;height: 0;position: absolute;width: 0;top: 0;right: 0;z-index: 2;} +.ImageWrapper .RibbonCTR .Sign {top: 2px;right: 2px;position: absolute;z-index: 6;} +.ImageWrapper .RibbonCTR .Sign a {color: #666666;} +.ImageWrapper .RibbonCTR {opacity: 0;visibility: hidden;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .RibbonCTR {opacity: 1;visibility: visible;} +.ImageWrapper .RibbonCBL .Triangle:after {border-right: 35px solid rgba(0, 0, 0, 0);border-bottom: 35px solid #FFFFFF;content:" ";display: block;height: 0;position: absolute;width: 0;bottom: 0;left: 0;z-index: 2;} +.ImageWrapper .RibbonCBL .Sign {bottom: 1px;left: 1px;position: absolute;z-index: 6;} +.ImageWrapper .RibbonCBL .Sign a {color: #666666;} +.ImageWrapper .RibbonCBL {opacity: 0;visibility: hidden;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .RibbonCBL {opacity: 1;visibility: visible;} +.ImageWrapper .RibbonCBR .Triangle:after {border-left: 35px solid rgba(0, 0, 0, 0);border-bottom: 35px solid #FFFFFF;content:" ";display: block;height: 0;position: absolute;width: 0;bottom: 0;right: 0;z-index: 2;} +.ImageWrapper .RibbonCBR .Sign {bottom: 1px;right: 1px;position: absolute;z-index: 6;} +.ImageWrapper .RibbonCBR .Sign a {color: #666666;} +.ImageWrapper .RibbonCBR {opacity: 0;visibility: hidden;-webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;} +.ImageWrapper:hover .RibbonCBR {opacity: 1;visibility: visible;} +/* ============================================= +Transparent Background +============================================= */ +.TBlack {background: none repeat scroll 0 0 rgba(0,0,0,.8) !important;} +.TWhite {background: none repeat scroll 0 0 rgba(255,255,255,.8) !important;} diff --git a/themes/at_movic/_dev/css/app/_block.scss b/themes/at_movic/_dev/css/app/_block.scss new file mode 100644 index 00000000..de719554 --- /dev/null +++ b/themes/at_movic/_dev/css/app/_block.scss @@ -0,0 +1,185 @@ +@import "vars/block.vars"; +// block in sidebar - left column, right column +.sidebar{ + @media (min-width: 992px) { + margin-bottom: 30px; + } + .ApColumn .block { + margin-bottom: 0; + &.ApImage{ + padding: 0; + img{ + max-width: 100%; + } + } + } + #search_filters_wrapper{ + border: 1px solid #efefef; + .block{ + border: 0; + } + } + .#{$block-selector} { + margin: 0; + padding: 30px; + background: $white; + border: 1px solid #efefef; + border-bottom: 0; + @media (max-width: 1199px) { + padding: 30px; + } + &.af{ + border-bottom: 1px solid #efefef; + } + &:last-child{ + border-bottom: 1px solid #efefef; + } + &.featured-products{ + padding: 30px 0; + } + .#{$block-heading-selector}{ + font-size: 16px; + padding: 20px 0; + position: relative; + margin: 0; + text-transform: uppercase; + @media (max-width: 1199px) { + font-size: 14px; + } + a{ + color: #000; + } + &.products-section-title{ + @include rtl-text-align-left(); + letter-spacing: 0; + padding: 20px 30px; + margin: 0 0 15px; + @media (max-width: 1199px) { + padding: 20px; + } + } + } + .#{$block-content-selector} { + @include clearfix(); + } + .products{ + .ajax_block_product { + @include make-col(12); + } + .thumbnail-container{ + @include rtl-text-align-left(); + box-shadow: none; + border-bottom: 1px solid #efefef; + margin: 0 0 15px; + padding: 0 5px 15px; + &:after { + content: ""; + display: block; + clear: both; + } + .product-meta{ + @include rtl-text-align-left(); + } + .leo-pro-attr-section, + input.leo_cart_quantity, + .product-thumbnail:before{ + display: none; + } + .product-image{ + width: 40%; + @include rtl-float-left(); + padding: 0 10px; + border: 0; + margin: 0; + } + .product-meta{ + width: 60%; + @include rtl-float-left(); + padding: 0 10px; + margin: 0; + position: static; + transform: none; + img{ + max-width: 100%; + } + } + .highlighted-informations, + .quickview, + .product-flags, + .functional-buttons, + .button-container, + .wishlist, + .leo-wishlist-button-dropdown, + .compare, + .pro-info + { + display: none; + } + .product-additional{ + right: 15px; + left: 15px; + } + .product-title{ + margin: 0 0 10px; + height: 20px; + overflow: hidden; + line-height: 20px; + font-size: 13px; + a{ + display: block; + } + } + .product-price-and-shipping{ + transform: none; + opacity: 1; + visibility: visible; + } + .leo-bt-cart { + min-width: 30px; + i { + display: inline-block; + } + .leo-bt-cart-content span{ + display: none; + } + } + } + } + a.all-product-link{ + font-size: 12px; + text-transform: capitalize; + border: 0; + font-weight: normal; + margin: 0 15px; + padding: 10px 0; + color: #333; + background: none; + text-decoration: underline; + &:hover, + &:active, + &:focus{ + color: $theme-color-default; + background: none; + } + } + .list-group-item{ + border: none; + padding: 10px 0; + } + } + .js-search-filters-clear-all{ + text-decoration: underline; + background: none; + color: #333; + padding: 12px 15px; + &:hover, + &:active, + &:focus{ + color: $theme-color-default; + background: none; + } + } +} +#_desktop_cart{ + position: relative; +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/app/_buttons.scss b/themes/at_movic/_dev/css/app/_buttons.scss new file mode 100644 index 00000000..a8783750 --- /dev/null +++ b/themes/at_movic/_dev/css/app/_buttons.scss @@ -0,0 +1,81 @@ +.carousel{ + .direction{ + position: absolute; + top: -95px; + @include rtl-right(0); + } +} +.carousel-control{ + background: none !important; + .icon-prev, .icon-next{ + background: #f3f3f3; + font-size: $carousel-control-font-size; + @include rounded-corners(3px); + @include size(25px,25px); + &:before{ + font-family: $font-icon; + font-size: $carousel-control-font-size; + color: $theme-color-tertiary; + line-height: 25px; + } + &:hover{ + background: $theme-color-default; + &:before{ + color: $white; + } + } + } + &.left{ + right: 25px; + left: auto; + } + .icon-prev{ + &:before{ + content: "\f104"; + } + } + .icon-next{ + &:before{ + content: "\f105"; + } + } +} + +// Override Input +input[type=number]::-webkit-inner-spin-button, +input[type=number]::-webkit-outer-spin-button { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + margin: 0; +} +input[type=number] { + -moz-appearance:textfield; +} +input[type="file"]{ + height: auto; +} + +//@mixin button-variant-outline($color, $background, $border, $colorhover, $bghover, $borderhover ) { +.btn-inverse{ + @include button-variant-outline($white, $theme-color-default, $theme-color-default, $white, $nocolor, $border-color); +} +.btn-outline{ + @include button-variant-outline($white, #333b48, #333b48, $white, $theme-color-default, $theme-color-default); +} +.btn{ + @include rounded-corners($btn-border-radius); + &:active, + &:focus, + &:visited, + &.active:focus, + &:active:focus { + outline: none !important; + @include box-shadow(none); + } +} +button{ + &:focus, &:hover{ + outline: none; + } +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/app/_menu.scss b/themes/at_movic/_dev/css/app/_menu.scss new file mode 100644 index 00000000..88089493 --- /dev/null +++ b/themes/at_movic/_dev/css/app/_menu.scss @@ -0,0 +1,1497 @@ +// menu.scss +// Navs +// -------------------------------------------------- +@import "vars/menu.vars"; + +/* +* NAVIGATION +*/ +.#{$app-brand-prefix}-megamenu { + @include container-layout-variant($megamenu-color, $megamenu-bg); + + .#{$app-brand-prefix}-colorbox { + display: none !important; + } + + &.navbar { + padding: 0; + } + + /* menu level 1 */ + .navbar-nav { + @include rtl-text-align-right(); + + >li { + @include rtl-text-align-left(); + float: none; + + @media (min-width: 992px) { + display: inline-block; + vertical-align: top; + } + + +.nav-item { + @include rtl-margin-left(0px); + } + + &.aligned-fullwidth { + position: static; + + >.dropdown-menu { + width: 100% !important; + } + } + + &.aligned-right { + .dropdown-menu { + right: 0; + left: auto; + } + } + + &.aligned-left { + .dropdown-menu { + left: 0; + right: auto; + } + } + + &.aligned-center { + .dropdown-menu { + left: 50%; + @include translate(-50%, 0); + } + } + + &.ic { + &>a { + &>.sub-title { + display: inline-block; + text-align: center; + font-size: 12px; + color: #ffffff; + text-transform: capitalize; + font-weight: 400; + padding: 0px 5px; + position: absolute; + top: 10px; + border-radius: 2px; + @include rtl-right(-3px); + background-color: #333; + } + } + + &.ic-new { + &>a { + &>.sub-title { + background-color: #16c98d; + } + } + } + + &.ic-sale { + &>a { + &>.sub-title { + background-color: #ff708e; + } + } + } + } + + @media (min-width: 992px) { + &.parent { + &>a span.menu-title { + position: static; + + &:after, + &:before { + bottom: -1px; + border: solid transparent; + content: ""; + height: 0; + width: 0; + position: absolute; + pointer-events: none; + opacity: 0; + visibility: hidden; + transform: translateY(20px); + left: 50%; + transition: transform .4s; + z-index: 9999; + backface-visibility: hidden; + } + + &:before { + border-width: 12px; + margin-left: -12px; + border-bottom-color: #eee; + } + + &:after { + border-bottom-color: #fff; + border-width: 14px; + margin-left: -14px; + z-index: 99999; + margin-bottom: -3px; + } + } + + &:hover { + &>a span.menu-title { + + &:after, + &:before { + opacity: 1; + visibility: visible; + transform: translateY(0px); + } + } + } + } + } + + /*end min 992px*/ + >a { + padding: 30px 18px; + + @media (min-width: 992px) and (max-width: 1199px) { + padding: 30px 14px; + } + + font-size: 13px; + line-height: 20px; + text-transform: uppercase; + color: #000; + font-weight: 600; + @include transition(all 350ms ease-out); + position: relative; + + &:hover, + &:focus, + &:active { + color: $megamenu-link-hover-color; + background-color: $megamenu-link-bg-hover-color; + } + + &.dropdown-toggle:after { + font-size: 13px; + content: "\f107"; + font-family: $font-icon; + border: 0; + width: auto; + height: auto; + @include rtl-margin(0, 0, 0, 5px); + vertical-align: 1px; + font-weight: normal; + line-height: 1; + } + + &:before { + /* position: absolute; + top: 50%; + right: 20px; + left: 20px; + height: 2px; + margin-top: 12px; + -webkit-transform: scale(0, 1); + -moz-transform: scale(0, 1); + -ms-transform: scale(0, 1); + -o-transform: scale(0, 1); + -webkit-transition: transform 0.5s ease; + transition: transform 0.5s ease; + background: $theme-color-default; + content: ''; + -webkit-transform-origin: right top; + -moz-transform-origin: right top; + -ms-transform-origin: right top; + transform-origin: right top; */ + } + + >.menu-title { + position: relative; + } + } + + &:focus>a, + &:hover>a { + color: #888; + + &:before { + -webkit-transform: scale(1, 1); + -moz-transform: scale(1, 1); + -ms-transform: scale(1, 1); + -o-transform: scale(1, 1); + -webkit-transform-origin: left top; + -moz-transform-origin: left top; + -ms-transform-origin: left top; + transform-origin: left top; + } + } + + &:hover>.caret, + &:active>.caret { + color: $megamenu-link-hover-color; + } + + &.home { + a { + @include rtl-padding(20px, 20px, 20px, 0); + } + } + } + } + + /* level 2 */ + .dropdown-menu { + left: auto; + @include rtl-right(0px); + top: 100%; + height: auto; + border: 0; + min-width: $megamenu-sub-min-width; + padding: $megamenu-sub-padding; + margin: 0px; + @include rtl-text-align-left(); + @include transition(all 0.2s); + border-radius: 0; + //border: 1px solid #eee; + display: block; + + @media (min-width: 992px) { + opacity: 0; + visibility: hidden; + transform: translateY(5px); + } + + @media (max-width: 991px) { + @include transition(none); + } + + @media (min-width: 1200px) { + padding: 25px; + min-width: 200px; + } + + li { + line-height: 25px; + padding: 0; + float: none; + + +.nav-item { + @include rtl-margin-left(0px); + } + + &:hover>a { + transform: translateX(5px); + color: $theme-color-default; + } + + a { + color: #888; + padding: 5px 0; + font-weight: 400; + font-size: $megamenu-sub-font-size; + line-height: 25px; + display: block; + @include transition(all .4s); + text-transform: capitalize; + position: relative; + + &:hover { + .fa { + color: $megamenu-sub-link-hover-color; + } + } + } + } + + div.menu-title { + margin-bottom: $small-space; + font-size: 12px; + text-transform: $megamenu-parent-text-transform; + font-weight: 600; + padding-bottom: 10px; + letter-spacing: 1px; + line-height: 1.5; + color: #000; + position: relative; + + &:before { + content: ""; + width: 14px; + height: 1px; + background: #000; + position: absolute; + bottom: 0; + @include rtl-left(0); + opacity: 0.2; + } + + a { + color: #000; + } + } + + a>.menu-title { + text-transform: capitalize; + font-weight: 400; + font-size: $base-font-size; + + &:hover { + //color: $theme-color-default; + } + } + } + + .dropdown { + @media (min-width: 992px) { + >.dropdown-menu { + pointer-events: none; + } + + &:hover { + >.dropdown-menu { + opacity: 1; + visibility: visible; + transform: translateY(0px); + pointer-events: auto; + } + + >a { + color: $megamenu-link-hover-color; + + .fa { + color: $megamenu-link-hover-color; + } + } + } + } + } + + /* level > 3 */ + .dropdown-submenu { + position: relative; + + .dropdown-menu { + top: 0; + position: absolute; + @include rtl-left(100%); + } + + &:hover { + >.dropdown-menu { + @include media-breakpoint-up(lg) { + display: block; + opacity: 1; + visibility: visible; + transform: translateY(0px); + } + + top: 0; + } + } + } + + .mega-group { + &>.dropdown-toggle { + border: 0; + display: block; + + text-transform: uppercase; + font-family: $megamenu-heading-title-font-family; + color: $megamenu-heading-color; + + .fa { + color: $white; + } + } + } + + .megamenu .cols1 { + min-width: 200px; + } + + .megamenu .cols2 { + min-width: 500px; + } + + .megamenu .cols3 { + min-width: 740px; + } + + // manufacture + .manu-logo { + img { + border: $main-border; + margin-bottom: $small-space; + margin-right: $small-space; + } + } + + .widget-subcategories { + margin-bottom: $large-space/2; + } +} + +/* Product for menu */ + +.#{$app-brand-prefix}-widget { + .thumbnail-container { + margin: 0; + @include rtl-text-align-left(); + @include box-shadow(none); + + .product-image { + @include rtl-float-left(); + @include rtl-margin(0, 15px, 15px, 0); + width: 80px; + } + + .product-meta { + overflow: hidden; + zoom: 1; + padding: 10px 0px; + } + + .product-title { + margin-top: 0px; + margin-bottom: 0; + line-height: 20px; + height: 20px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + text-transform: none; + font-size: 13px; + } + + .product-price-and-shipping { + color: #888; + + .price { + color: $theme-color-default; + } + + .aeuc_from_label { + color: #888; + } + + .aeuc_before_label, + .discount-percentage { + display: none; + } + } + + } + + .widget-html { + color: #888; + line-height: 1.5; + font-size: 13px; + + @media (max-width: 991px) { + margin: 10px 0; + } + + p { + line-height: 20px; + margin: 0 0 15px; + + &:last-child { + margin: 0; + } + } + + img { + max-width: 100%; + height: auto; + } + } + + .widget-video { + iframe { + border-width: 0px; + + @media (max-width: 991px) { + // max 991px + width: 100%; + } + } + } + + ul.widget-image { + @include rtl-margin-left(0px); + + li { + @include rtl-margin-right($small-space); + + &:last-child { + @include rtl-margin-right(0px); + } + } + } +} + +/* + * + * Vertical menu + */ +.ApMegamenu { + .#{$app-brand-prefix}-verticalmenu { + background: $vertical-menu-content-bg; + position: relative; + + .title_block { + margin: 0; + color: $white; + width: 100%; + line-height: 26px; + letter-spacing: 1px; + font-size: 20px; + padding: $medium-space 25px; + text-transform: none; + + &:before { + display: none; + } + } + + >.block_content { + background: $vertical-menu-content-bg; + position: absolute; + z-index: 30; + height: auto; + overflow: visible; + width: 100%; + @include transition(height 0.4s ease 0s); + } + } +} + +div.verticalmenu { + z-index: 100; + + .navbar-collapse, + .navbar-vertical { + margin: 0; + padding: 0; + } + + .navbar-nav { + position: static; + @include clearfloat(); + + >li { + @include size(100%, auto); + position: relative; + float: none; + + +.nav-item { + @include rtl-margin-left(0px); + } + + >a { + display: block; + color: $vertical-menu-color; + font-size: $vertical-menu-font-size; + font-family: $vertical-menu-font-family; + padding: $vertical-menu-link-padding; + font-weight: $vertical-menu-font-weight; + line-height: 24px; + } + + .caret { + display: none; + } + + @media (max-width: 991px) { + + // max 991px + .caret { + display: block; + position: relative; + top: -40px; + cursor: pointer; + border: none; + width: 25px; + height: 30px; + text-align: center; + border: none; + @include rtl-float-right(); + @include rtl-right(0); + + &:before { + content: "\f105"; + font-family: $font-icon; + color: $vertical-menu-color; + font-size: 11px; + font-weight: normal; + } + } + } + + .dropdown-submenu .caret { + top: 0; + + @media (max-width: 991px) { + // max 991px + top: -16px; + } + } + + &.last a, + &:last-child a { + border: 0; + } + + // Hover Effect + &:hover { + >a { + color: $megamenu-sub-link-hover-color; + background: $theme-color-default; + + &:hover, + &:focus { + color: $vertical-menu-link-hover-color; + background: $theme-color-default; + border-color: $border-color; + } + } + + .caret { + color: $theme-color-default; + + &:before { + color: $theme-color-default; + } + } + } + + &.open { + >a { + color: $megamenu-sub-link-hover-color; + background: $theme-color-default; + + &:hover, + &:focus { + color: $vertical-menu-link-hover-color; + background: $theme-color-default; + border-color: $border-color; + } + } + + .caret { + color: $theme-color-default; + + &:before { + color: $theme-color-default; + top: -23px; + content: "\f0d7"; + } + } + } + + .parent { + position: relative; + + >.dropdown-toggle { + text-transform: none; + font-weight: normal; + color: $vertical-sub-menu-link-color; + + &:hover { + color: $theme-color-default; + } + } + } + } + + li { + &.parent { + >a { + &:after { + position: absolute; + content: "\f105"; + font-family: $font-icon; + color: $vertical-menu-link; + font-size: 11px; + font-weight: normal; + right: 12px; + top: 12px; + border: none; + + @media (max-width: 991px) { + // max 991px + display: none; + } + } + } + + &:hover { + >a { + &:after { + color: $white; + } + } + } + + &.dropdown-submenu { + >a { + &:after { + color: $body-color; + } + } + } + } + } + } + + ul { + li { + a { + .menu-icon { + display: block; + @include rtl-background-position-left(center); + + span { + display: block; + @include rtl-margin-left(35px); + } + + .menu-desc { + display: none; + } + } + + .menu-title { + display: block; + color: $vertical-menu-link; + } + + .sub-title { + font-size: $vertical-menu-font-size; + } + + &:hover, + &:focus { + .menu-title { + color: $vertical-menu-link-hover-color; + } + + color: $vertical-menu-link-hover-color; + background: $white; + } + } + } + } + + .dropdown-menu { + left: -9999px; + top: -9999px; + right: auto; + border: 2px solid $theme-color-default; + min-height: 100px; + height: 100% !important; + min-width: $vertical-sub-menu-width; + padding: $vertical-sub-menu-padding; + background: $vertical-sub-menu-bg; + margin: 0px; + @include rtl-text-align-left(); + @include rounded-corners(0); + @include box-shadow($vertical-sub-shadow); + + ul { + li { + padding: 4px 0; + line-height: normal; + list-style: none; + display: block; + float: none; + + +.nav-item { + @include rtl-margin-left(0px); + } + + a { + color: $vertical-sub-menu-link-color; + font-size: $vertical-sub-menu-link-font-size; + font-weight: 400; + padding: 0; + + .menu-title { + color: $vertical-sub-menu-link-color; + text-transform: none; + } + + &:hover { + color: $theme-color-default; + + .menu-title { + color: $theme-color-default; + } + } + } + } + } + + p { + line-height: 18px; + font-size: $vertical-sub-menu-link-font-size; + } + + .#{$app-brand-prefix}-menu-video { + width: 100%; + + iframe { + margin-bottom: 10px; + } + } + + .dropdown-toggle { + &:hover { + color: $vertical-sub-menu-heading-color; + } + } + + .dropdown-toggle { + font-weight: 400; + text-transform: uppercase; + line-height: normal; + color: $vertical-sub-menu-heading-color; + font-family: $vertical-sub-menu-link-font-family; + font-size: $vertical-sub-menu-link-font-size; + } + + .action { + display: none; + } + } + + .widget-heading { + color: $vertical-sub-menu-heading-color; + text-transform: uppercase; + font-weight: 400; + } +} + +div.active-hover { + ul { + >li { + &:hover { + >.dropdown-menu { + @include rtl-left(100%); + top: -1px; + @include opacity(1); + display: inline-table; + } + } + } + } +} + +/* CANVAS MENU - SHOW CANVAS = YES */ +.megamenu-overlay { + cursor: pointer; + position: fixed; + top: 0; + left: 0; + bottom: 0; + right: 0; + z-index: 999; + visibility: hidden; + @include rgba($black, 0.5); + @include opacity(0); + @include transition(all 0.4s ease); +} + +.off-canvas { + body { + position: relative; + } +} + +@include media-breakpoint-up(lg) { + + // Menu Canvas + .off-canvas-active { + + >#page, + >.off-canvas-nav-megamenu { + @include translate(0, 0); + position: relative !important; + } + } + + .off-canvas-button-megamenu { + display: none !important; + } +} + +@include media-breakpoint-down(md) { + .off-canvas-active { + .megamenu-overlay { + @include opacity(1); + visibility: visible; + } + } +} + +.off-canvas-button-megamenu { + color: $black; + margin: 15px 10px; + @include rtl-text-align-right(); + + &:hover { + cursor: pointer; + } +} + +.off-canvas-inactive { + >#page { + @include transition(all 400ms ease 0s); + } +} + +.off-canvas-active { + background: $white; + + >#page { + //@include transform(translateX(234px)); + //@include transition(all 400ms ease 0s); + } + + >.off-canvas-nav-megamenu { + &.active { + @include rtl-left(0px); + @include transform(translateX(234px)); + @include transition(all 400ms ease 0s); + } + } + + #page { + position: fixed; + margin: 0 auto; + max-width: 100%; + width: 100%; + } +} + +.off-canvas-nav-megamenu { + position: absolute; + top: 0px; + width: 0px; + background: $white; + z-index: 999; + @include rtl-left(0); + @include transition(all 400ms ease 0s); + + .navbar-nav { + margin: 0px; + + >li { + float: none; + border-bottom: $main-border; + float: none; + + +.nav-item { + @include rtl-margin-left(0px); + } + + &.ic { + &>a { + &>.sub-title { + display: inline-block; + text-align: center; + font-size: 12px; + color: #ffffff; + text-transform: capitalize; + font-weight: 400; + padding: 2px 5px; + position: absolute; + top: 5px; + border-radius: 2px; + @include rtl-right(-35px); + background-color: #333; + } + } + + &.ic-new { + &>a { + &>.sub-title { + background-color: #16c98d; + } + } + } + + &.ic-sale { + &>a { + &>.sub-title { + background-color: #ff708e; + } + } + } + } + + >a { + display: inline-block; + color: #2a363b; + font-size: 14px; + font-weight: 600; + padding: 14px 20px; + position: relative; + text-transform: uppercase; + + &:hover, + &:focus { + background: none; + } + } + } + + .dropdown-sub div.menu-title { + font-weight: 600; + color: #444; + font-size: 12px; + } + } + + .nav { + li { + &.dropdown { + .caret { + cursor: pointer; + position: absolute; + top: 0; + margin: auto 0; + @include rtl-right(0); + @include size(50px, 50px); + line-height: 50px; + text-align: center; + + &:before { + content: "\f107"; + font-family: $font-icon; + color: $black; + font-size: 15px; + font-weight: normal; + display: block; + text-align: center; + transition: all .6s; + transform-origin: center center; + } + } + + .dropdown-toggle::after { + display: none; + } + } + + &.open-sub { + >.caret { + &:before { + transform: rotate(180deg); + } + } + } + + li { + &.dropdown-submenu { + .caret { + top: 0px; + width: 30px; + height: 40px; + line-height: 40px; + } + } + } + } + } + + .offcanvas-mainnav { + background-color: $white; + position: absolute; + top: 0; + width: 234px; + overflow: hidden; + @include rtl-left(-234px); + } + + .dropdown-menu { + font-size: $base-font-size; + position: relative; + left: 0; + right: 0; + top: 0; + float: none; + margin: 0; + width: 100% !important; + border: 0; + padding: 0px 20px 10px; + @include box-shadow(none); + @include rounded-corners(0); + @include rtl-text-align-left(); + + ul { + li { + line-height: 30px; + float: none; + + +.nav-item { + position: relative; + @include rtl-margin-left(0px); + } + + >a { + font-weight: 400; + color: #888; + padding: 0; + } + } + } + } + + .dropdown-sub { + div.menu-title { + margin: 10px 0; + color: $black; + font-family: "Lato", sans-serif; + font-size: 14px; + text-transform: uppercase; + + a { + color: #000; + } + } + } + + ul.nav-links { + @include rtl-padding-left(7px); + + li { + line-height: 30px; + } + } + + .mega-col { + width: 100%; + } + + .#{$app-brand-prefix}-widget { + .widget-subcategories { + ul { + @include rtl-padding(3px, 3px, 3px, 7px); + } + } + } +} + +/* OFF CANVAS MENU - SHOW CANVAS = NO */ +@media (max-width: 991px) { + .leo-megamenu { + &.disable-canvas { + .dropdown-menu { + @include box-shadow(none); + } + + .navbar-nav>li { + &.aligned-fullwidth { + position: relative; + } + + >a { + padding: $medium-space 0; + + &:after { + display: none; + } + } + + .caret { + cursor: pointer; + position: absolute; + top: 13px; + line-height: 30px; + display: block; + @include size(30px, 30px); + @include rtl-right(0); + + &:before { + content: "add"; + font-family: $font-icon-2; + position: absolute; + font-size: 20px; + font-weight: normal; + text-align: center; + color: $white; + z-index: 1001; + } + } + } + } + + .collapse { + @include rtl-text-align-left(); + + .navbar-nav { + @include rtl-text-align-left(); + height: auto; + } + + .navbar-nav { + >li { + &.aligned-fullwidth { + position: relative; + } + + >.dropdown-menu { + @include media-breakpoint-down(md) { + .mega-col { + max-width: 100%; + flex: 0 0 100%; + } + } + } + } + + .nav-item { + &.dropdown { + &.open-sub { + >.caret { + &:before { + content: "remove"; + } + } + } + } + + &.dropdown-submenu { + .caret { + &:before { + top: -13px; + } + } + + &.open-sub { + >.caret { + &:before { + content: "remove"; + } + } + } + } + } + + .dropdown-toggle::after { + display: none; + } + } + + .dropdown-submenu { + >.dropdown-menu { + width: 100%; + position: relative; + @include rtl-left(0); + @include box-shadow(none); + } + } + } + } +} + +/*** Responsive part ***/ +@include media-breakpoint-down(md) { + .ApMegamenu { + >.navbar { + position: static; + } + } + + .leo-megamenu { + &.disable-canvas { + .navbar-nav { + margin: 0; + + >li { + >a { + padding: 15px; + display: inline-block; + letter-spacing: 1px; + } + } + + .nav-item { + .caret { + cursor: pointer; + position: absolute; + top: 9px; + line-height: 30px; + display: block; + @include size(30px, 30px); + @include rtl-right(0); + + &:before { + content: "add"; + font-family: $font-icon-2; + position: absolute; + font-size: 20px; + font-weight: normal; + text-align: center; + color: #F0F0F0; + z-index: 1001; + } + } + } + } + + .leo-top-menu { + background: #353535; + position: absolute; + top: 100%; + z-index: 99; + left: $small-space; + right: $small-space; + } + + .dropdown-toggle::after { + display: none; + } + } + } +} + + +//Style leo widget general +.leo-widget { + .widget-category_image { + .level0 li { + position: relative; + display: inline-block; + min-width: 140px; + + ul { + background: $white; + border: 1px solid #c3c3c3; + position: absolute; + top: -1px; + z-index: 99; + display: none; + @include rtl-left(100%); + @include transition(all 0.3s ease); + + li { + padding: 5px 10px; + } + } + + &:hover>ul { + display: block; + } + } + + } +} + +.navbar-header { + .navbar-toggler { + height: 40px; + width: 40px; + padding: 0; + border: 1px solid #333; + margin: 20px auto; + border-radius: 0; + + &:focus, + &:hover { + border-color: $theme-color-default; + background: $theme-color-default; + color: #fff; + } + } +} + +.off-canvas-active { + .navbar-header { + .navbar-toggler { + border-color: $theme-color-default; + background: $theme-color-default; + color: #fff; + } + } +} + +.off-canvas-button-megamenu { + font-size: 0px; + color: transparent; + margin: 15px 20px 0; + + .off-canvas-nav { + display: block; + outline: 0; + + &:before { + content: "\e646"; + font-family: 'themify'; + font-size: 14px; + color: #333; + } + } + + &:focus .off-canvas-nav:before { + color: $theme-color-default; + } +} + +.col-menuinfo { + .widget-raw-html { + font-size: 20px; + padding: 25px 0; + text-align: center; + color: #333; + border-top: 1px solid #e5e5e5; + margin: 10px -20px -20px; + font-weight: 300; + background: #fbfbfb; + line-height: 1.5; + + @media (min-width: 1200px) { + margin: 30px -25px -25px; + } + + @media (max-width: 991px) { + font-size: 16px; + margin: 10px -20px 0px; + line-height: 2; + padding: 20px; + } + + p { + margin: 0; + } + + strong, + b { + color: $theme-color-default; + } + + .shop-now { + background: #a3de83; + border-radius: 5px; + color: #fff; + font-size: 14px; + text-transform: uppercase; + @include rtl-margin(0, 0, 0, 15px); + padding: 6px 20px; + transition: all 0.4s cubic-bezier(.44, .13, .48, .87); + display: inline-block; + + &:hover { + background: $theme-color-default; + color: #fff; + } + } + } +} + +.box-listdetail .leo-widget .widget-html { + margin-top: 0; +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/app/_modules.scss b/themes/at_movic/_dev/css/app/_modules.scss new file mode 100644 index 00000000..ca5ad84c --- /dev/null +++ b/themes/at_movic/_dev/css/app/_modules.scss @@ -0,0 +1,211 @@ +// modules.scss + +@import "vars/modules.vars"; +// top bar module dropdown +.popup-over{ + position: relative; + a.popup-title{ + display: block; + white-space: nowrap; + } + .popup-content{ + padding: 10px 0; + position: absolute; + top: 100%; + background: #fff; + color: #999; + border: 0; + min-width: 180px; + z-index: 9999; + display: block; + right: 0; + left: auto; + @include transition(all 0.2s); + @include border-radius(0); + @include rtl-text-align-left(); + font-size: 13px; + animation: none; + @media (min-width: 992px) { + opacity: 0; + visibility: hidden; + transform: translateY(5px); + } + @media (max-width: 991px) { + display: none; + @include transition(opacity 0.4s); + } + &:after, + &:before { + bottom: 100%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; + } + &:before { + border-bottom-color: #eee; + border-width: 12px; + margin-left: -12px; + @include rtl-right(8px); + } + &:after { + border-bottom-color: #fff; + border-width: 12px; + margin-left: -12px; + margin-bottom: -1px; + @include rtl-right(8px); + } + a{ + color:#999; + padding: 0px; + &:hover{ + color: #000; + } + } + margin: 0px; + li{ + display: block; + img{ + vertical-align: 0; + margin: 0 2px 0 0; + } + &.current{ + color: #000; + a{ + color: #000; + } + } + a{ + display: block; + line-height: 20px; + padding: 5px 18px; + i{ + font-size: 13px; + @include rtl-margin-right(5px); + } + } + } + } + &:hover{ + cursor: pointer; + @media (min-width: 992px) { + .popup-content{ + display: block !important; + opacity: 1; + visibility: visible; + transform: translateY(0px); + } + } + } + @media (min-width: 992px) { + &.open{ + .popup-content{ + display: block !important; + opacity: 1; + visibility: visible; + transform: translateY(0px); + } + } + } +} +.language-selector-wrapper, +.currency-selector{ + .popup-content li{ + position: relative; + &:before{ + content: "\f00c"; + font-family: "FontAwesome"; + position: absolute; + top: 0; + right: 15px; + line-height: 30px; + color: #ccc; + font-size: 13px; + pointer-events: none; + transition: all .3s; + opacity: 0; + } + &:hover:before{ + opacity: 1; + } + &.current:before{ + color: #000; + opacity: 1; + } + } +} +#leo_block_top{ + .popup-content{ + padding: 20px; + .language-selector, + .currency-selector{ + margin-bottom: 15px; + padding-bottom: 15px; + border-bottom: 1px solid #eee; + line-height: 30px; + ul{ + &:after { + content: ""; + display: block; + clear: both; + } + } + li{ + float: left; + text-align: center; + } + a{ + line-height: 30px; + padding: 0; + } + &>span{ + display: none; + } + } + .currency-selector{ + margin: 0; + padding: 0; + border: 0; + li{ + width: 50%; + } + } + .language-selector{ + li{ + width: 33%; + .lang-name{ + display: none; + } + .lang-img{ + outline: 1px dashed transparent; + outline-offset: 3px; + display: inline-block; + line-height: 1; + width: 16px; + height: 11px; + img{ + display: block; + } + } + &:hover, + &.current{ + .lang-img{ + outline-color: #fff; + } + } + } + } + } +} +.rtl{ + .popup-over .popup-content{ + left: 0; + right: auto; + } +} +/* mini basket */ +#_desktop_cart{ + +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/app/_product-item.scss b/themes/at_movic/_dev/css/app/_product-item.scss new file mode 100644 index 00000000..39227f39 --- /dev/null +++ b/themes/at_movic/_dev/css/app/_product-item.scss @@ -0,0 +1,1875 @@ + +@import "vars/product-item.vars"; +/* Product List*/ +.ajax_block_product{ + transition: all .5s; +} +.product_list{ + &.list{ + @media (max-width: 991px) and (min-width: 768px){ + &.plist-modern{ + .thumbnail-container .functional-buttons > div { + width: 100%; + } + } + } + .ajax_block_product{ + width: 100%; + &:hover{ + z-index: 2; + } + } + .thumbnail-container{ + @include rtl-text-align-left(); + &:after { + content: ""; + display: block; + clear: both; + } + .product-flags{ + @include rtl-text-align-left(); + } + .product-image{ + @include rtl-float-left(); + @include make-col(4); + text-align: center; + } + .product-meta{ + position: relative; + @include make-col(8); + @include rtl-text-align-left(); + padding: 30px; + background: none; + transform: none !important; + @media (max-width: 991px) { + padding: 0 10px 0; + } + } + .pro-btn{ + position: static; + transform: none; + margin: 0 0 15px; + } + .product-description-short{ + display: inline-block; + } + .product-title { + margin: 10px 0; + } + .product-price-and-shipping { + .discount-percentage { + vertical-align: 2px; + } + } + .p-action { + .p-top{ + @include transform(none); + @include opacity(1); + visibility: visible; + .leo-list-product-reviews { + @include rtl-right(10px); + } + } + .p-bottom { + position: static; + @include transform(none); + @include opacity(1); + visibility: visible; + } + } + } + } + &.grid{ + .ajax_block_product{ + clear: none; + @media (min-width: 1200px) { + &.first-in-line{ + clear: both; + } + } + @media (min-width: 992px) and (max-width: 1199px) { + &:nth-child(3n+1){ + clear: both; + } + } + @media (max-width: 991px) and (min-width: 768px) { + &:nth-child(3n+1){ + clear: both; + } + } + @media (max-width: 767px) and (min-width: 481px) { + width: 50%; + &:nth-child(2n+1){ + clear: both; + } + } + } + } +} +.layout-left-column{ + .product_list{ + &.grid{ + .ajax_block_product{ + clear: none; + @media (max-width: 991px) and (min-width: 768px) { + width: 50%; + &:nth-child(2n+1){ + clear: both; + } + } + } + } + } +} +.featured-products{ + .ajax_block_product.col-xl-3{ + clear: none; + @media (min-width: 992px) { + width: 25%; + &.first-in-line{ + clear: both; + } + } + @media (max-width: 991px) and (min-width: 768px) { + width: 33.33%; + &:nth-child(3n+1){ + clear: both; + } + } + @media (max-width: 767px) and (min-width: 481px) { + width: 33.33%; + &:nth-child(3n+1){ + clear: both; + } + } + @media (max-width: 480px) { + width: 50%; + &:nth-child(2n+1){ + clear: both; + } + } + } +} + + + +body#category{ + .product_list.grid{ + .ajax_block_product{ + clear: none; + @media (min-width: 1200px) { + &.first-in-line{ + clear: both; + } + } + @media (min-width: 992px) and (max-width: 1199px) { + &:nth-child(3n+1){ + clear: both; + } + } + @media (max-width: 991px) and (min-width: 768px) { + &:nth-child(2n+1){ + clear: both; + } + } + @media (max-width: 767px) and (min-width: 481px) { + width: 50%; + &:nth-child(2n+1){ + clear: both; + } + } + } + } +} +/* Product Grid style */ +.thumbnail-container{ + position: relative; + margin-bottom: 20px; + .product-image{ + position: relative; + img{ + @media (max-width: 480px) { + width: 100%; + } + } + .slick-arrow{ + transition: all .4s; + opacity: 0; + visibility: hidden; + } + } + .product-meta{ + padding: 20px 0 10px; + } + .functional-buttons { + position: absolute; + bottom: 0; + left: 0; + right: 0; + padding: 3px; + a.quick-view, + .btn-product{ + background: rgba(255, 255, 255, 0.95); + display: block; + width: 100%; + height: 44px; + line-height: 44px; + text-align: center; + padding: 0 10px; + color: #000; + border: 0; + font-size: 11px; + text-transform: uppercase; + border-radius: 0; + @include transition(all 0.35s ease); + margin: 3px 0 0; + @media (min-width: 992px) { + @include opacity(0); + visibility: hidden; + } + @media (min-width: 480px) { + font-size: 10px; + } + @media (max-width: 991px) { + font-size: 10px; + letter-spacing: 0; + } + &:hover, + &.added{ + color: $theme-color-default; + } + &.added{ + &:before{ + content: "\f00c"; + font-family: $font-icon; + } + } + } + @media (max-width: 991px) and (min-width: 768px) { + padding: 3px 1.5px; + a.quick-view, + .btn-product{ + font-size: 10px; + } + } + } + &:hover{ + .product-image .slick-arrow{ + opacity: 1; + visibility: visible; + } + .functional-buttons { + a.quick-view, + .btn-product{ + @include opacity(1); + visibility: visible; + } + .btn-product{ + transition-delay: 0.1s; + } + } + } + //name + .product-title { + text-transform: capitalize; + margin: 0px; + font-size: 13px; + line-height: 20px; + font-weight: 400; + a{ + @include ellipsis-text(1); + &:hover{ + color: $theme-color-default; + } + } + } + //Price + .product-price-and-shipping { + color: $product-price-color; + font-size: 14px; + .aeuc_before_label{ + color: #999; + font-size: 12px; + } + .aeuc_from_label{ + @include rtl-margin(0, 5px,0,0); + } + + .price{ + font-weight: normal; + @include rtl-margin(0, 5px,0,0); + font-size: 14px; + color: #000; + } + .regular-price{ + color: #999; + font-size: 14px; + text-decoration: line-through; + font-weight: normal; + @include rtl-margin(0, 5px,0,0); + &+span.price{ + color: #d31d52; + } + } + .discount-percentage{ + @include rtl-margin(0, 5px,0,0); + } + } + .p-name { + position: relative; + margin: 0 0 10px; + @include rtl-padding(0,35px,0,0); + .leo-wishlist-button{ + position: absolute; + top: 0; + @include rtl-right(0); + padding: 0; + border: 0; + width: 24px; + height: 24px; + line-height: 24px; + text-align: center; + color: #444; + background: none; + overflow: hidden; + &:hover, + &:active, + &:focus{ + color: #000; + background: none; + } + i{ + display: block; + width: 24px; + height: 24px; + line-height: 24px; + font-size: 0; + &:before{ + content: "\f08a"; + font-family: 'FontAwesome'; + font-size: 14px; + } + } + .leo-wishlist-bt-content span{ + display: none; + } + &.added{ + i{ + &:before{ + content: "\f004"; + } + } + } + } + .leo-wishlist-button-dropdown{ + position: static; + .leo-list-wishlist{ + left: auto; + @include rtl-right(0); + } + } + } + .p-price{ + position: relative; + @include rtl-padding(0, 40px ,0, 0); + .discount-percentage{ + display: none; + } + .add-to-cart{ + font-size: 13px; + padding: 0; + line-height: 24px; + height: 24px; + min-width: 24px; + background: none; + color: #000; + border: 0; + position: absolute; + top: 0; + width: auto; + @media (min-width: 992px) { + @include rtl-left(0); + @include transform(translateX(-20px)); + @include opacity(0); + visibility: hidden; + @include transition(all .3s .1s); + } + } + .product-price-and-shipping{ + display: block; + @include transition(all .3s .1s); + line-height: 24px; + } + @media (max-width: 991px) { + .add-to-cart{ + @include rtl-right(0); + width: 24px; + height: 24px; + line-height: 24px; + text-align: center; + .leo-bt-cart-content{ + i{ + display: block; + width: 24px; + height: 24px; + line-height: 24px; + text-align: center; + font-size: 0; + &:before{ + font-size: 16px; + } + } + span{ + display: none; + } + } + } + } + } + @media (min-width: 992px) { + &:hover{ + .p-price{ + .add-to-cart{ + @include opacity(1); + visibility: visible; + @include transform(translateX(0)); + &.disable{ + @include opacity(0.5); + } + } + .product-price-and-shipping{ + @include opacity(0); + visibility: hidden; + @include transform(translateX(70px)); + } + } + } + } + // Show more image + .product-additional{ + position: absolute; + top: 0px; + visibility: hidden; + left: 0px; + right: 0; + bottom: 0; + @include opacity(0); + @include transition(all 0.4s); + } + // Comment + .comments_note { + color: $gray; + } + // Color + .variant-links { + width: 100%; + padding-top: 3px; + min-height: 30px; + } + // Description + .product-description-short { + display: none; + line-height: 20px; + } + // Quick view + .quickview { + .quick-view { + &:hover { + } + } + } + &:hover { + .product-additional{ + // top: 0px; + visibility: visible; + @include opacity(1); + } + .leo-more-info{ + width: 90px; + @include opacity(1); + @include rtl-right(-90px); + } + } +} +.product_block{ + &.last_item{ + .thumbnail-container{ + .leo-more-info{ + right: auto; + left: 0px; + } + &:hover{ + .leo-more-info{ + right: auto; + left: -90px; + } + } + } + } +} +// Product Flags +.product-flags{ + margin: 0px; + position: absolute; + top: 10px; + @include rtl-left(10px); + font-size: 10px; + z-index: 1; + text-transform: uppercase; + line-height: 15px; + pointer-events: none; + li.product-flag { + margin: 0 5px 5px 0; + padding: 2px 5px; + } + .product-flag{ + &.discount{ + display: none; + } + &.online-only { + color: #0791d6; + border-color: #0791d6; + } + &.new{ + color: #30c22c; + border-color: #30c22c; + } + &.on-sale{ + color: $theme-color-default; + border-color: $theme-color-default; + } + } +} +.thumbnail-container{ + .quick-view{ + i{ + display: none; + } + } + .btn-product{ + position: relative; + .cssload-speeding-wheel{ + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + margin: auto; + } + i{ + display: none; + } + } +} + + +.leo-productscompare-item .thumbnail-container { + min-width: 250px; +} +.leo-productscompare-item, +.leo-wishlist-product{ + .thumbnail-container { + margin: 0; + text-align: center; + .button-container { + text-align: center; + padding: 10px 0; + } + .product_desc { + margin-bottom: 10px; + } + .btn-product { + width: 100%; + height: 40px; + .cssload-speeding-wheel { + border: 2px solid #fff; + border-left-color: transparent; + border-right-color: transparent; + } + } + .product-price-and-shipping .discount-percentage { + background: #f39d72; + color: #fff; + position: static; + padding: 3px 5px; + border-radius: 2px; + font-size: 12px; + } + .product-flags { + padding: 0; + @include rtl-text-align-left(); + } + .product-thumbnail{ + img{ + max-width: 100%; + } + } + .leo-bt-select-attr:after { + position: absolute; + top: 15px; + @include rtl-right(10px); + } + .product_desc{ + display: none; + } + .product-price-and-shipping{ + text-align: center; + } + .product-title { + margin: 0 0 20px; + text-align: center; + a { + font-size: 16px; + color: #000; + &:hover{ + color: $theme-color-default; + } + } + } + .leo-pro-attr-section, + .qty_product { + margin: 1px 0; + text-align: center; + } + } +} +.leo-wishlist-product .thumbnail-container { + max-width: 100%; +} +.list-wishlist{ + overflow-x: auto; +} +.leo-wishlist-product { + display: block !important; + .leo-wishlistproduct-item { + padding: 0 $grid-gutter-width-base/2; + width: 25%; + @include rtl-float-left(); + .delete-wishlist-product { + position: absolute; + top: 0; + z-index: 1; + right: 15px; + left: 15px; + .btn{ + padding: 10px 15px; + background: none; + color: #999; + &:hover{ + color: #000; + } + } + } + .form-group label { + text-align: center; + display: block; + color: #999; + } + .product-description{ + margin-top: 10px; + } + .form-control { + text-align: center; + border: 1px solid #eee; + outline: 0; + &:focus, + &:hover{ + border-color: #666; + } + } + @media (min-width: 992px) { + &:nth-child(4n+1){ + clear: both; + } + } + @media (max-width: 991px) and (min-width: 768px){ + width: 33.33%; + &:nth-child(3n+1){ + clear: both; + } + } + @media (max-width: 767px) and (min-width: 481px){ + width: 50%; + &:nth-child(2n+1){ + clear: both; + } + } + @media (max-width: 480px){ + width: 100%; + } + } +} +.plist-center{ + .thumbnail-container{ + text-align: center; + transition: all .3s; + .cancel, .star { + font-size: 11px; + line-height: 16px; + } + div.star.star_on:before, + div.star.star_hover:before { + color: #000; + } + .color{ + vertical-align: top; + border-radius: 50%; + margin: 0 5px; + position: relative; + overflow: hidden; + border: 0; + /* &:before { + content: ""; + top: 0; + left: 0; + right: 0; + bottom: 0; + position: absolute; + background-image: radial-gradient(circle,#ffffff,transparent,transparent); + } */ + } + .nb-revews{ + display: none; + } + .variant-links { + padding-top: 0; + min-height: 16px; + } + .leo-list-product-reviews { + margin-top: 0; + margin-bottom: 0; + } + .product-flags{ + @include rtl-text-align-left(); + width: calc(100% - 20px); + .discount-percentage { + top: 0px; + color: #d31d52; + @include rtl-right(0px); + } + } + .product-image{ + .quick-view{ + position: absolute; + bottom: 0; + @include rtl-right(0); + width: 30px; + height: 30px; + text-align: center; + line-height: 30px; + overflow: hidden; + transition: all .4s; + padding: 0; + border-radius: 0; + background: none; + color: #000; + background: #fff; + border-top-left-radius: 50%; + @media (min-width: 992px) { + transform: scale(0) translateY(-40px); + backface-visibility: hidden; + } + i{ + display: inline-block; + font-size: 16px; + } + span span{ + display: none; + } + } + } + .pro-info { + text-align: center; + padding: 20px 0 15px; + } + .product-meta { + padding: 0 0 10px; + background: #fff; + transition: all .4s; + transform: translateY(0%); + @media (max-width: 991px) { + padding: 0; + } + } + .product-title { + margin: 0 0 15px; + font-size: 13px; + text-transform: uppercase; + a{ + color: #000; + &:hover{ + color: $theme-color-default; + } + } + } + .product-price-and-shipping{ + margin: 0 0 15px; + .discount-percentage{ + display: none; + } + } + .pro-btn{ + @media (min-width: 992px) { + position: absolute; + left: 0; + right: 0; + bottom: 0; + opacity: 0; + visibility: hidden; + transition: all .4s; + transform: translateY(100%); + } + &:after { + content: ""; + display: block; + clear: both; + } + &>div{ + width: 40px; + @include rtl-float-left(); + @include rtl-margin(0,0,0,1px); + &.button-container{ + width: calc(100% - 82px); + margin: 0 !important; + } + } + .btn-product{ + width: 100%; + height: 40px; + line-height: 40px; + border: 0; + padding: 0; + border-radius: 0; + background: #2a363b; + @media (max-width: 991px) { + font-size: 10px; + letter-spacing: 0; + } + .cssload-speeding-wheel{ + background: none; + border: 1px solid #fff; + border-left-color: transparent; + border-right-color: transparent; + } + &:hover{ + background: $theme-color-default; + color: #fff; + border-color: $theme-color-default; + } + &.add-to-cart{ + @media (max-width: 400px) { + span span{ + display: none; + } + i{ + display: inline-block; + margin: 0; + } + } + } + } + .leo-wishlist-button-dropdown .leo-list-wishlist { + left: auto; + @include rtl-right(0); + @include margin(0, 0, 10px, 0); + } + .btn-product:not(.add-to-cart){ + span span{ + position: absolute; + bottom: 100%; + @include rtl-right(0px); + margin-bottom: 7px; + color: #fff; + background: #000; + font-size: 8px; + padding: 2px 10px; + line-height: 16px; + transition: all .4s; + opacity: 0; + visibility: hidden; + &:before{ + content: ""; + border: 5px solid transparent; + border-top-color: #000; + position: absolute; + top: 100%; + @include rtl-right(15px); + } + } + &:hover{ + span span{ + opacity: 1; + visibility: visible; + } + } + i{ + display: inline-block; + margin: 0; + } + } + } + &:hover{ + box-shadow: 0 0 26px 0 rgba(0,0,0,.15); + .pro-btn{ + opacity: 1; + visibility: visible; + } + .product-meta { + @media (min-width: 992px) { + transform: translateY(-40px); + } + } + .product-image{ + .quick-view{ + transform: scale(1) translateY(-40px); + } + } + } + } +} +.plist-dsimple{ + .thumbnail-container{ + &:hover{ + .pro3-btn{ + opacity: 1; + visibility: visible; + } + } + .product-flags{ + li.product-flag{ + span{ + display: inline-block; + padding-bottom: 2px; + border-bottom: 1px solid; + margin-bottom: 5px; + color: #000; + font-weight: 600; + } + } + .discount-percentage { + display: none; + } + } + .pro3-btn{ + position: absolute; + bottom: 15px; + left: 15px; + right: 15px; + @include rtl-text-align-left(); + font-size: 0; + transition: all .4s; + pointer-events: none; + @media (min-width: 992px) { + opacity: 0; + visibility: hidden; + } + @media (max-width: 480px) { + left: 10px; + right: 10px; + bottom: 10px; + } + &>div{ + display: inline-block; + vertical-align: top; + font-size: 14px; + pointer-events: auto; + } + .btn-product, + .quick-view{ + pointer-events: auto; + width: 40px; + height: 40px; + box-shadow: 1px 1px 1px rgba(0,0,0,0.1); + border: 0; + line-height: 40px; + text-align: center; + padding: 0; + background: rgba(255, 255, 255, 0.95); + border-radius: 50%; + @include rtl-margin(0, 10px, 0, 0); + display: block; + color: #000; + transition: all .4s; + position: relative; + @media (max-width: 1199px) and (min-width: 480px) { + @include rtl-margin(0, 5px, 0, 0); + } + &.added{ + color: $theme-color-default; + } + &:hover{ + background: #999; + color: #fff; + transform: translateY(-3px); + } + i{ + display: inline-block; + vertical-align: middle; + margin: auto; + font-size: 14px; + } + .leo-wishlist-bt-content, + .leo-bt-cart-content, + .leo-quickview-bt-content{ + @include display(flex); + @include align-items(center); + margin: auto; + height: 100%; + } + span span{ + position: absolute; + bottom: 100%; + left: 50%; + transform: translateX(-50%); + margin-bottom: 7px; + color: #fff; + background: rgba(0, 0, 0, 0.55); + font-size: 10px; + padding: 3px 10px; + transition: all .4s; + opacity: 0; + visibility: hidden; + line-height: 15px; + white-space: nowrap; + text-transform: uppercase; + letter-spacing: 1px; + font-weight: 300; + border-radius: 11px; + pointer-events: none; + &:before{ + content: ""; + border: 5px solid transparent; + border-top-color: rgba(0, 0, 0, 0.55); + position: absolute; + top: 100%; + left: 50%; + margin-left: -5px; + } + } + &:hover{ + span span{ + opacity: 1; + visibility: visible; + } + } + } + } + .cssload-speeding-wheel{ + background: none; + border: 2px solid $theme-color-default; + border-left-color: transparent; + border-right-color: transparent; + } + .product-title { + margin: 0 0 5px; + } + .leo-list-product-reviews { + @include rtl-text-align-left(); + margin: 0 0 10px; + .nb-revews{ + display: none; + } + .cancel, .star { + font-size: 11px; + } + div.star:before { + color: #ccc; + } + div.star.star_on:before, + div.star.star_hover:before { + color: #FFD314; + } + } + .product-meta { + padding-bottom: 1px; + } + .product-price-and-shipping { + margin: 0 0 15px; + } + } +} +@media (max-width: 480px) { + .product_list.plist-dsimple.list{ + .thumbnail-container { + .product-image { + width: 100%; + margin-bottom: 10px; + } + .product-meta { + width: 100%; + } + + } + } +} +.plist-image{ + .thumbnail-container { + margin: 0 0 30px; + overflow: hidden; + box-shadow: 0 0 0 1px #e5e5e5; + &:hover{ + box-shadow: 0 0 0 1px #999; + } + .leo-wishlist-button-dropdown .leo-list-wishlist { + left: auto; + @include rtl-right(0); + } + .functional-buttons { + bottom: 50%; + left: auto; + @include rtl-right(10px); + padding: 0; + transform: translateY(50%); + z-index: 9; + &>div{ + width: auto; + float: none; + padding: 0; + } + .btn-product, + .quick-view{ + width: 44px; + text-align: center; + padding: 0; + height: 44px; + line-height: 44px; + position: relative; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2); + border-radius: 50%; + background: #fff; + @media (max-width: 991px) { + width: 35px; + height: 35px; + line-height: 35px; + } + &.added{ + &:before{ + display: none; + } + } + @media (min-width: 992px) { + transform: translateX(100%); + } + &.leo-wishlist-button{ + transition-delay: 0.1s; + } + &.leo-compare-button{ + transition-delay: 0.2s; + } + &.add-to-cart{ + transition-delay: 0.3s; + } + i{ + display: inline-block; + margin: 0 !important; + } + span span{ + position: absolute; + top: 10px; + @include rtl-right(100%); + @include rtl-margin(0,10px,0,0); + white-space: nowrap; + font-size: 9px; + line-height: 20px; + border-radius: 2px; + background: #333; + color: #fff; + text-transform: capitalize; + padding: 0 5px; + transition: all .4s; + opacity: 0; + transform: translateX(-10px); + visibility: hidden; + &:before{ + content: ""; + position: absolute; + top: 5px; + @include rtl-left(100%); + border: 5px solid transparent; + @include rtl-border-left(5px solid #333); + } + } + &:hover{ + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); + span span{ + transform: translateX(0px); + visibility: visible; + opacity: 1; + } + } + } + } + .product-meta { + padding: 15px; + background: rgba(255,255,255,0); + background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); + background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1))); + background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); + background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); + background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); + background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 ); + position: absolute; + left: 0; + right: 0; + bottom: 0; + transition: all .4s ease; + @media (min-width: 992px) { + transform: translateY(100%); + } + } + .product-title{ + margin: 0 0 15px; + } + .product-additional{ + transition: all .4s; + transform: scale3d(0,1,0); + } + &:hover{ + .product-additional{ + transform: scale3d(1,1,1); + } + .product-meta { + @media (min-width: 992px) { + transform: translateY(0%); + } + } + .functional-buttons { + .btn-product, + .quick-view{ + transform: translateX(0%); + margin: 10px 0; + } + } + } + } +} +.plist-modern{ + .thumbnail-container { + margin-bottom: 30px; + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); + transition: all .4s; + &:hover{ + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); + } + @media (max-width: 991px) { + margin-bottom: 20px; + } + .product-image{ + //overflow: hidden; + } + .quick-view { + width: 30px; + height: 30px; + line-height: 30px; + text-align: center; + padding: 0; + position: relative; + background: none; + color: #2a363b; + display: block; + i{ + display: inline-block; + font-size: 22px; + } + span span{ + display: block; + position: absolute; + bottom: 100%; + right: 0; + margin-bottom: 10px; + padding: 0 10px; + border-radius: 7px; + line-height: 25px; + font-size: 10px; + text-transform: capitalize; + transition: all .4s; + background: #333; + color: #fff; + transform: translateY(10px); + opacity: 0; + visibility: hidden; + white-space: nowrap; + &:before { + content: ""; + border: 5px solid transparent; + border-top-color: #333; + position: absolute; + top: 100%; + right: 10px; + } + } + &:hover{ + span span{ + transform: translateY(0px); + opacity: 1; + visibility: visible; + } + } + } + .product-price-and-shipping { + margin: 0 0 5px; + } + .product-meta { + padding: 25px; + } + .leo-list-product-reviews { + margin: 0; + min-width: 100px + } + .leo-list-product-reviews-wraper { + display: block; + } + .pro-info{ + margin: 0 0 5px; + .leo-list-product-reviews { + padding: 7px 0; + @include rtl-float-left(); + } + &>div:not(.leo-list-product-reviews){ + @include rtl-float-right(); + } + &:after { + content: ""; + display: block; + clear: both; + } + .btn{ + width: 30px; + height: 30px; + line-height: 30px; + text-align: center; + padding: 0; + position: relative; + background: none; + color: #2a363b; + i{ + display: block; + margin: auto; + line-height: 30px; + height: 30px; + width: 30px; + font-size: 16px; + } + span span{ + display: block; + position: absolute; + bottom: 100%; + @include rtl-right(0); + margin-bottom: 10px; + padding: 0 10px; + border-radius: 7px; + line-height: 25px; + font-size: 10px; + text-transform: capitalize; + transition: all .4s; + background: #333; + color: #fff; + transform: translateY(10px); + opacity: 0; + visibility: hidden; + &:before{ + content: ""; + border: 5px solid transparent; + border-top-color: #333; + position: absolute; + top: 100%; + @include rtl-right(10px); + } + } + &:hover, + &:active, + &:focus{ + background: none; + color: $theme-color-default; + span span{ + transform: translateY(0px); + opacity: 1; + visibility: visible; + } + } + } + } + } +} +.plist-simple{ + .thumbnail-container{ + margin: 0 0 20px; + &:after { + content: ""; + display: block; + clear: both; + } + .product-image { + position: relative; + width: 100px; + @include rtl-float-left(); + border: 1px solid #efefef; + @include rtl-margin(0, 20px, 0 ,0); + } + .product-meta { + padding: 0; + @include rtl-margin(0, 0, 0, 120px); + } + .discount-percentage { + position: static; + color: #fff; + background: $theme-color-default; + font-size: 11px; + letter-spacing: 1px; + right: 10px; + line-height: 15px; + padding: 0 7px; + text-transform: uppercase; + border-radius: 0; + } + } +} +.product_list.plist-simple.list{ + .thumbnail-container { + border-bottom: 1px solid #e9e9e9; + padding-bottom: 20px; + .product-image { + margin: 0; + border: 0; + } + .product-meta{ + margin: 0; + padding: 0 10px; + } + } +} +.plist-default{ + .thumbnail-container{ + .product-image{ + //overflow: hidden; + } + .product-flags { + width: calc(100% - 20px); + .discount-percentage { + top: 0; + color: #d31d52; + font-size: 10px; + right: 0; + } + } + } +} +.plist-noe{ + .thumbnail-container{ + .product-flags { + display: flex; + top: 20px; + left: 20px; + li.product-flag { + font-weight: 600; + background: #000; + color: #fff; + &.online-only { + background: #0791d6; + } + &.new{ + background: #000; + } + &.on-sale{ + background: #ccc; + } + } + } + .product-image{ + overflow: hidden; + &>.quick-view{ + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%) scale(0); + width: 50px; + height: 50px; + text-align: center; + line-height: 50px; + background: rgba(255 ,255, 255 , 1); + transition: all .4s; + opacity: 0; + border-radius: 50%; + &:hover{ + background: rgba(255 ,255, 255 , 0.8); + } + i{ + display: inline-block; + margin: 0; + font-size: 0; + color: transparent; + width: 30px; + height: 30px; + line-height: 30px; + &:before{ + font-family: 'themify'; + content: "\e63d"; + color: #000; + font-size: 16px; + } + } + span span{ + display: none; + } + } + .wishlist { + position: absolute; + top: 7px; + right: 7px; + } + .leo-wishlist-button{ + width: 40px; + height: 40px; + padding: 0; + border: 0; + line-height: 40px; + text-align: center; + background: none !important; + color: #999; + opacity: 0; + &.added{ + color: #000; + opacity: 1; + } + .leo-wishlist-bt-content{ + span{ + display: none; + } + i{ + display: inline-block; + margin: 0; + } + } + } + .leo-list-wishlist{ + top: 100%; + bottom: auto; + left: auto; + right: 0; + } + } + .functional-buttons{ + padding: 0 41px; + @media (min-width: 992px){ + opacity: 0; + visibility: hidden; + } + @media (max-width: 991px){ + position: relative; + padding: 0 33px; + } + @media (max-width: 767px){ + padding: 0; + } + .add-to-cart{ + background: #ddd; + color: #000; + font-size: 13px; + font-weight: 500; + transition: all .3s; + height: 40px; + line-height: 40px; + margin: 0; + @media (max-width: 991px){ + height: 32px; + line-height: 32px; + font-size: 11px; + } + &:hover{ + background: #eee; + color: #000; + } + } + .quick-view, + .leo-compare-button{ + width: 40px; + height: 40px; + line-height: 40px; + text-align: center; + padding: 0; + position: absolute; + top: 0; + left: 0; + background: #ddd; + color: #000; + margin: 0; + transition-delay: 0s; + @media (max-width: 991px){ + height: 32px; + line-height: 32px; + width: 32px; + } + span span{ + position: absolute; + white-space: nowrap; + background: #ddd; + color: #000; + right: 0; + bottom: 100%; + padding: 5px 10px; + line-height: 1; + margin: 0 0 5px; + font-size: 10px; + font-weight: normal; + text-transform: uppercase; + transition: all .3s; + opacity: 0; + visibility: hidden; + &:before { + content: ""; + border: 5px solid transparent; + border-top-color: #ddd; + position: absolute; + top: 100%; + right: 15px; + } + } + &:hover{ + background: #eee; + color: #000; + span span{ + opacity: 1; + visibility: visible; + } + } + } + .quick-view{ + left: auto; + right: 0; + i{ + display: inline-block; + margin: 0; + font-size: 0; + color: transparent; + width: 30px; + height: 30px; + line-height: 30px; + vertical-align: middle; + &:before{ + font-family: 'themify'; + content: "\e63d"; + color: #000; + font-size: 16px; + } + } + } + .leo-compare-button{ + @media (max-width: 767px){ + display: none; + } + i{ + display: inline-block; + margin: 0; + font-size: 0; + color: transparent; + width: 30px; + height: 30px; + line-height: 30px; + vertical-align: middle; + &:before{ + color: #000; + font-size: 16px; + } + } + span span{ + left: 0; + right: auto; + &:before{ + right: auto; + left: 15px; + } + } + } + } + .product-meta { + text-align: center; + } + .product-title { + margin: 0 0 5px; + font-size: 14px; + a { + display: block; + color: #000; + &:hover{ + color: #666; + } + } + } + .product-price-and-shipping{ + .discount-product, + .discount-percentage{ + display: none; + } + .regular-price, + .price { + font-weight: 600; + } + } + &:hover{ + .product-image{ + .leo-wishlist-button { + opacity: 1; + } + &>.quick-view{ + opacity: 1; + transform: translate(-50%, -50%) scale(1); + } + } + .functional-buttons{ + opacity: 1; + visibility: visible; + } + } + } +} +@media (min-width: 992px) { + .ajax_block_product.last-in-line{ + .leo-more-info { + right: auto; + left: 0; + } + .thumbnail-container:hover .leo-more-info { + left: -90px; + right: auto; + } + } +} +@media (min-width: 992px) { + .leo-more-info + .product-thumbnail .product-additional{ + display: none; + } +} + +.leo-more-cdown{ + .deal-clock{ + li{ + display: inline-block; + vertical-align: top; + padding: 10px 0; + background: #eee; + @include rtl-margin(0, 10px, 10px, 0); + min-width: 70px; + border-radius: 4px; + line-height: 20px; + text-align: center; + @media (max-width: 1199px) { + @include rtl-margin(0, 5px, 5px, 0); + min-width: 60px; + } + @media (max-width: 991px) { + min-width: 50px; + } + b { + display: block; + line-height: 30px; + color: #272727; + font-size: 23px; + border-bottom: 1px solid #ddd; + @media (max-width: 1199px) { + font-size: 20px; + } + @media (max-width: 991px) { + font-size: 18px; + line-height: 20px; + } + } + span{ + display: block; + border-top: 1px solid #f9f9f9; + padding: 4px 0 0; + text-transform: capitalize; + } + } + } +} +.thumbnail-container{ + a.product-thumbnail{ + overflow: hidden; + position: relative; + padding-bottom: 125%; + display: block; + img{ + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + object-fit: cover; + width: 100%; + height: 100%; + backface-visibility: visible; + } + } +} +.sidebar .block .products .thumbnail-container{ + .product-additional { + right: 0; + left: 0; + } + .leo-more-info { + display: none; + } +} +.product_list.list .thumbnail-container { + .product-title { + margin: 10px 0; + font-size: 18px; + a{ + color: #444; + &:hover{ + color: #000; + } + } + } + .product-price-and-shipping { + .price { + font-size: 16px; + } + .regular-price { + font-size: 16px; + } + span.aeuc_from_label, span.aeuc_tax_label, div.aeuc_tax_label, div.aeuc_weight_label { + font-size: 13px; + } + } +} +.category-default { + margin: 0 0 10px; + a { + color: #bfbfbf; + text-transform: capitalize; + font-size: 0.8em; + letter-spacing: 1px; + font-weight: 600; + transition: all .4s; + &:hover{ + color: #000; + } + } +} +.pro-stock { + span{ + position: absolute; + top: 15px; + left: 15px; + font-size: 0.8em; + text-transform: uppercase; + font-weight: 600; + letter-spacing: 0.5px; + line-height: 1; + padding: 5px 10px; + background: #000; + color: #fff; + &.product-unavailable, + &.product-last-items{ + background: #ccc; + color: #000; + } + } +} +.sidebar .pro-stock { + @media (max-width: 991px){ + display: none; + } +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/app/index.php b/themes/at_movic/_dev/css/app/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/_dev/css/app/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/_dev/css/app/vars/_block.vars.scss b/themes/at_movic/_dev/css/app/vars/_block.vars.scss new file mode 100644 index 00000000..14dbe8e1 --- /dev/null +++ b/themes/at_movic/_dev/css/app/vars/_block.vars.scss @@ -0,0 +1,33 @@ +// Block Modules +// ======================================================================== + +$block-margin-bottom: $grid-gutter-width-base !default; + +// Heading Block +$block-heading-bg: none !default; +$block-heading-color: $black !default; +$block-heading-font-family: $headings-font-family !default; +$block-heading-font-size: 18px !default; +$block-heading-font-weight: 700 !default; +$block-heading-padding: $medium-space !default; +$block-heading-margin: 0px !default; +$block-heading-transform: uppercase !default; +$block-heading-line-height: normal !default; +$block-heading-letter-spacing: 0px !default; +$block-heading-radius: 0px; +$block-heading-border: none !default; + +// Heading Content +$block-content-bg: $white !default; +$block-content-border: none !default; +$block-content-padding: $medium-space 0px !default; +$block-content-margin: 10px !default; +$block-content-radius: 0px !default; + +// get content icon from link http://fortawesome.github.io/Font-Awesome/icons/ or img icon from theme folder +$block-icon-content: "\f0c9" !default; + +// Block Highlighted +$block-highlighted-bg: $theme-color-default !default; +$block-highlighted-border: $theme-color-default !default; +$block-highlighted-text: $white !default; \ No newline at end of file diff --git a/themes/at_movic/_dev/css/app/vars/_menu.vars.scss b/themes/at_movic/_dev/css/app/vars/_menu.vars.scss new file mode 100644 index 00000000..f8d03172 --- /dev/null +++ b/themes/at_movic/_dev/css/app/vars/_menu.vars.scss @@ -0,0 +1,90 @@ + +// Mega Menu Module +// ======================================================================== +$megamenu-bg: $nocolor!default; +$megamenu-color: $black !default; +$megamenu-font-family: $font-family-tertiary !default; +$megamenu-link-color: $black !default; +$megamenu-link-hover-color: $theme-color-default !default; +$megamenu-link-bg-hover-color: transparent !default; +$megamenu-link-font-family: $font-family-base !default; +$megamenu-font-weight: normal; +$megamenu-caret: $megamenu-link-color !default; + +$megamenu-text-align: left !default; + + +$megamenu-parent-font-size: 15px !default; +$megamenu-parent-padding: 20px 25px !default; +$megamenu-parent-text-transform: uppercase !default; + +$megamenu-sub-bg-color: $white !default; +$megamenu-sub-radius: 0px !default; +$megamenu-sub-text-color: $black !default; +$megamenu-sub-link-color: $body-color !default; +$megamenu-sub-link-hover-color: $theme-color-default !default; +$megamenu-sub-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.24) !default; +$megamenu-sub-padding: 20px !default; +$megamenu-sub-min-width: 185px !default; +$megamenu-sub-border: 0 !default; +$megamenu-sub-font-size: 13px !default; +$megamenu-sub-caret-color: $megamenu-sub-text-color !default; + +$megamenu-heading-letter: 3px !default; +$megamenu-heading-title-font-family: $headings-font-family !default; +$megamenu-heading-color: $white !default; +$megamenu-line-border: 1px solid #646464 !default; +$megamenu-arrow-bg: darken($megamenu-sub-bg-color, 20%) !default; + +// Vertical Menu Module +// ======================================================================== +$vertical-menu-font-family: $font-family-tertiary !default; +$vertical-menu-content-bg: #5d4e57 !default; +$vertical-menu-content-height: 320px !default; +$vertical-menu-content-padding: 0 !default; +$vertical-menu-content-margin: 0 !default; +$vertical-menu-content-border: 2px solid $theme-color-default !default; +$vertical-menu-font-size: $base-font-size !default; +$vertical-menu-color: $body-color !default; +$vertical-menu-font-weight: 600 !default; +$vertical-menu-link-padding: 13px $large-space 13px !default; +$vertical-menu-link-hover-color: $white !default; +$vertical-menu-link: $white !default; +$vertical-menu-line-height: normal !default; +$vertical-border-color: #595959 !default; +$vertical-caret-border: $body-color !default; + +$vertical-description-font-size: 11px !default; +$vertical-description-font-style: italic !default; +$vertical-description-color: red !default; +$vertical-description-font-weight: 300 !default; + +$vertical-sub-menu-padding: $medium-space 28px !default; +$vertical-sub-menu-width: 215px !default; +$vertical-sub-menu-link-color: $body-color !default; +$vertical-sub-menu-link-font-size: 12px !default; +$vertical-sub-menu-link-font-family: $font-family-base !default; +$vertical-sub-menu-heading-color: $black !default; +$vertical-sub-menu-bg: $white !default; +$vertical-sub-product-link: $black !default; +$vertical-sub-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35) !default; + + + +// OffCanvas Menu +// ======================================================================== +$offcanvas-menu-bg: $silver !default; +$offcanvas-menu-padding: 12px 15px !default; +$offcanvas-menu-link-color: $white !default; +$offcanvas-menu-font-size: $base-font-size !default; +$offcanvas-menu-transform: uppercase !default; +$offcanvas-menu-font-family: $font-family-tertiary !default; +$offcanvas-menu-border: 1px solid lighten($offcanvas-menu-bg, 10%) !default; +$offcanvas-menu-icon-color: $white !default; +$offcanvas-menu-icon-font-size: 16px !default; +$offcanvas-menu-icon-padding: 8px 15px !default; +$offcanvas-menu-border-caret: 1px solid $white !default; +$offcanvas-menu-caret-color: $white !default; +$offcanvas-menu-text-color: $body-color !default; +$offcanvas-menu-text-fs: $base-font-size !default; + \ No newline at end of file diff --git a/themes/at_movic/_dev/css/app/vars/_modules.vars.scss b/themes/at_movic/_dev/css/app/vars/_modules.vars.scss new file mode 100644 index 00000000..04110743 --- /dev/null +++ b/themes/at_movic/_dev/css/app/vars/_modules.vars.scss @@ -0,0 +1,14 @@ +// Mini basket and shopping cart +// ======================================================================== + +// get content icon from img icon from theme folder +$cart-product-font-size: $font-size-base - 2 !default; +$cart-align-right: 17px !default; +$cart-content-width: 400px !default; + + // Search +// ======================================================================== +// Contact page +// ======================================================================== +// Htab module +// ======================================================================== \ No newline at end of file diff --git a/themes/at_movic/_dev/css/app/vars/_product-item.vars.scss b/themes/at_movic/_dev/css/app/vars/_product-item.vars.scss new file mode 100644 index 00000000..ea1fd42c --- /dev/null +++ b/themes/at_movic/_dev/css/app/vars/_product-item.vars.scss @@ -0,0 +1,27 @@ +// Product List +// ======================================================================== +// name +$product-name-color: $body-color !default; +$product-name-hover-color: $link-hover-color !default; +$product-name-font-family: $font-family-base !default; +$product-name-font-size: $base-font-size !default; +$product-name-font-weight: 300 !default; + +//price +$product-price-color: $black !default; +$product-price-font-family: $font-family-base !default; +$product-price-font-size: $base-font-size !default; +$product-price-font-weight: 700 !default; +$product-price-regular-color: $gray-darker !default; +$product-price-discount-bg: $brand-secondary !default; +$product-price-discount-color: white !default; + +// image +$product-image-border: $main-border !default; +$product-image-radius: 0px !default; + +// Product Flats +$product-flags-new-bg: $brand-primary !default; +$product-flags-sale-bg: $brand-info !default; +$product-flags-discount-bg: none !default; +$product-flags-online-only-bg: $brand-warning !default; \ No newline at end of file diff --git a/themes/at_movic/_dev/css/app/vars/index.php b/themes/at_movic/_dev/css/app/vars/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/_dev/css/app/vars/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/_dev/css/components/alert.scss b/themes/at_movic/_dev/css/components/alert.scss new file mode 100644 index 00000000..db9017f0 --- /dev/null +++ b/themes/at_movic/_dev/css/components/alert.scss @@ -0,0 +1,51 @@ +@import "theme_variables"; + +.ps-alert-error { + margin-bottom: 0; +} + +.ps-alert-error, +.ps-alert-success { + .item { + @include align-items(center); + border: 2px $brand-danger solid; + @include display(flex); + background-color: $brand-danger; + margin-bottom: 1rem; + + i { + border: 15px $brand-danger solid; + @include display(flex); + + svg { + background-color: $brand-danger; + width: 24px; + height: 24px; + } + } + + p { + background-color: $body-bg; + margin: 0; + padding: 18px 20px 18px 20px; + width: 100%; + } + } +} + +.ps-alert-success { + padding: 0.25rem 0.25rem 2.75rem 0.25rem; + + .item { + border-color: $brand-success; + background-color: $brand-success; + + i { + border-color: $brand-success; + + svg { + background-color: $brand-success; + } + } + } +} diff --git a/themes/at_movic/_dev/css/components/block-reassurance.scss b/themes/at_movic/_dev/css/components/block-reassurance.scss new file mode 100644 index 00000000..d907108b --- /dev/null +++ b/themes/at_movic/_dev/css/components/block-reassurance.scss @@ -0,0 +1,19 @@ +#block-reassurance{ + margin-top: 16px; + img{ + width: 25px; + @include opacity(0.7); + @include rtl-margin-right(10px); + } + li{ + } + li .block-reassurance-item{ + @include rtl-padding(0.5rem, 1.5rem, 0.5rem, 0rem); + span{ + font-weight: 400; + margin: 0px; + color: $theme-color-senary; + font-size: 14px; + } + } +} diff --git a/themes/at_movic/_dev/css/components/cart.scss b/themes/at_movic/_dev/css/components/cart.scss new file mode 100644 index 00000000..df201793 --- /dev/null +++ b/themes/at_movic/_dev/css/components/cart.scss @@ -0,0 +1,295 @@ +.cart-grid { + margin-bottom: 16px; +} +.cart-items { + margin-bottom: 0; +} +.cart-item { + padding: 16px 0; +} +.cart-summary-line { + @include clearfix; + margin-bottom: 10px; + clear: both; + .label { + @include rtl-padding-left(0); + font-weight: normal; + white-space: inherit; + } + .value { + color: $gray-darker; + @include rtl-float-right(); + font-size: 15px; + font-weight: 600; + font-family: $headings-font-family; + } + &.cart-summary-subtotals { + .label, + .value { + font-weight: normal; + } + } +} +/** CART BODY **/ +.cart-grid-body { + a.label { + &:hover { + color: $brand-primary; + } + } + .card-block { + padding: 16px; + h1 { + margin-bottom: 0; + } + } + hr { + margin: 0; + } + .cart-overview { + padding: 16px; + } + margin-bottom: 12px; +} +/** CART RIGHT **/ +.cart-grid-right { + hr { + margin: 0; + } + .promo-discounts { + margin-bottom: 0; + .cart-summary-line { + .label { + color: $gray-dark; + .code { + text-decoration: underline; + cursor: pointer; + } + } + } + } +} +.cart-detailed-totals > .card-block { + border-bottom: 1px solid #ddd; +} +.block-promo { + .promo-code { + padding: 1.60rem; + background: #f2f2f4; + form { + display: flex; + } + .alert-danger { + position: relative; + margin-top: 20px; + background: $brand-danger; + color: white; + display: none; + &::after { + bottom: 100%; + left: 10%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; + border-bottom-color: $brand-danger; + border-width: 10px; + margin-left: -10px; + } + } + } + .promo-input { + height: 40px; + padding: 15px; + flex: 1; + border: 1px solid #000; + outline: none; + margin: 0 10px 0 0; + &:focus{ + border-color: #999; + } + + button { + margin-top: 0; + text-transform: capitalize; + vertical-align: top; + } + } + .cart-summary-line .label, + .promo-name { + color: $brand-warning; + font-weight: 400; + a { + font-weight: normal; + color: $gray-darker; + display: inline-block; + } + } + .promo-code-button { + margin: 10px 0 0; + display: inline-block; + vertical-align: top; + &:hover{ + color: #000; + } + } + &.promo-highlighted { + padding: 20px; + padding-bottom: 0; + margin-bottom: 0; + } +} +.promo-code .alert-danger:before { + display: none; +} + +.promo-code .alert-danger { + padding: 10px; +} + +.promo-code .alert-danger span { + margin: 0 5px !important; +} +.promo-code-button a.collapse-button { + padding: 0 20px; + margin: 10px 0; + display: inline-block; +} +/** CONTENT LEFT **/ +.product-line-grid-left { + img { + max-width: 100%; + } +} +p.promo-code-button { + width: 100%; +} +.block-promo { + min-height: 50px; +} +/** CONTENT BODY **/ +.product-line-grid-body { + > .product-line-info { + margin-bottom: $small-space; + &.product-price{ + display: block; + } + &:first-child{ + a.label{ + font-size: 14px; + font-weight: 500; + color: #333; + &:hover{ + color: #888; + } + } + } + .product-discount { + margin-bottom: 5px; + } + > .label { + padding: 0; + line-height: inherit; + white-space: inherit; + font-weight: 400; + @include rtl-text-align-left(); + color: #999; + } + > a.label{ + font-size: $font-size-h6; + } + > .out-of-stock { + color: red; + } + > .available { + color: $brand-success; + } + > .unit-price-cart { + @include rtl-padding-left(0.3125rem); + font-size: 0.875rem; + color: $gray-dark; + } + } +} +/** CONTENT LEFT **/ +.product-line-grid-right { + .bootstrap-touchspin { + width: 68px; + @include box-shadow(2px 2px 3px 0px rgba(0, 0, 0, 0.15)); + > .form-control, + > .input-group { + color: $gray-darker; + background-color: white; + height: $input-height; + padding: 0.175rem 0.5rem; + width: 48px; + } + > .input-group-btn-vertical { + width: auto; + right: -1px; + } + } + .cart-line-product-actions, + .product-price { + color: $gray-darker; + line-height: 36px; + .remove-from-cart { + color: #ccc; + display: inline-block; + &:hover{ + color: #000; + } + } + } +} + +/*** Responsive part ***/ +@include media-breakpoint-down(sm) { + .product-line-grid-body { + margin-bottom: 16px; + } +} + +@include media-breakpoint-down(xs) { + .cart-items { + padding: 16px 0; + } + .cart-item { + border-bottom: $main-border; + .product-line-grid{ + margin: 0; + } + &:last-child { + border-bottom: 0; + } + } + .cart-grid-body { + .cart-overview { + padding: 0; + } + .no-items { + padding: 16px; + display: inline-block; + } + } + .product-line-grid-left { + padding-right: 0 !important; + } +} + +@media (max-width: 360px) { + .product-line-grid-right { + .qty { + width: 100%; + } + .price { + width: 100%; + } + } +} +.cart-detailed-actions{ + .text-sm-center{ + text-align: center; + } +} diff --git a/themes/at_movic/_dev/css/components/categories.scss b/themes/at_movic/_dev/css/components/categories.scss new file mode 100644 index 00000000..fadc461e --- /dev/null +++ b/themes/at_movic/_dev/css/components/categories.scss @@ -0,0 +1,611 @@ +@import "theme_variables"; + +#products { + .products-select { + } + .up { + .btn-secondary { + color: $gray; + text-transform: inherit; + margin-bottom: 16px; + @include rtl-margin-right($small-space); + .material-icons { + @include rtl-margin-right(0); + } + } + } +} +.block-category { + //margin-bottom: 25px; + &>h1{ + @media (max-width: 767px){ + margin: 1em 0; + } + } + .category-cover { + margin: 0 auto 0 0; + max-width: 200px; + } + #category-description + .category-cover{ + width: 20%; + min-width: 80px; + margin: 0 20px 10px 0; + float: left; + } + #category-description { + padding: 15px 0; + @media (max-width: 991px){ + padding: 0; + } + p, + strong { + font-weight: 400; + color:#545454; + } + p { + color: #888; + margin-bottom: 0; + line-height: 20px; + &:first-child { + margin-bottom: 0; + } + } + } + .category-cover { + + } +} +.products-selection { + .sort-by-row { + @include display(flex); + @include align-items(center); + } + .sort-by { + white-space: normal; + word-break: break-word; + @include rtl-text-align-right(); + } + .total-products { + padding-top: 6px; + p{ + margin: 0; + line-height: 25px; + display: none; + } + } + .showing{ + padding-top: $small-space; + } + h1 { + padding-top: $small-space; + } + .products-counter{ + @include rtl-float-right(); + color: #545454; + margin: 3px 0px 0px; + } + .display{ + > div{ + @include rtl-float-left(); + @include rtl-margin-right(5px); + a { + cursor: pointer; + text-align: center; + color: #999; + line-height: 25px; + display: inline-block; + @include size(25px,25px); + font-size: 14px; + &:hover{ + color: $theme-color-default; + } + } + &.selected{ + a{ + color: #333; + } + } + } + } +} +.products-sort-order { + color: $theme-color-secondary; + .select-title { + display: inline-block; + vertical-align: top; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + width: 100%; + background: #f5f5f5; + cursor: pointer; + height: 35px; + line-height: 27px; + position: relative; + border: 0; + outline: 0; + color: #888; + border-radius: 20px; + @include rtl-padding(5px,35px,5px,15px); + @include rtl-text-align-left(); + &:hover{ + color: #000; + } + i{ + width: 35px; + height: 35px; + text-align: center; + line-height: 35px; + position: absolute; + top: 0; + @include rtl-right(0); + } + } + &.open{ + .select-title { + color: #000; + } + } + .select-list { + display: block; + color: #666; + padding: 5px 15px; + font-size: 13px; + &:hover { + background: #f5f5f5; + color: #000; + } + } + .dropdown-menu { + left: auto; + width: calc(100% - 30px); + min-width: 200px; + background: #FFFFFF; + border: none; + border-radius: 5px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); + } +} +body #search_filters { + .facet { + padding: 10px 0; + margin: 0 0 10px; + @media (max-width: 991px) { + margin-bottom: 0; + padding-bottom: 0; + } + .collapse { + display: block; + max-height: 210px; + overflow: auto; + } + .facet-title { + font-weight: 500; + margin: 0 0 10px; + text-transform: capitalize; + font-size: 13px; + line-height: 1.5; + } + .facet-label, .custom-checkbox{ + margin-bottom: 0; + a { + display: inline-block; + @include rtl-text-align-left; + vertical-align: top; + } + } + .facet-label{ + display: block; + @include rtl-text-align-left; + @include rtl-padding(7px ,20px,7px,0); + line-height: 20px; + cursor: pointer; + position: relative; + .magnitude{ + position: absolute; + top: 5px; + height: 20px; + min-width: 20px; + display: inline-block; + @include rtl-right(5px); + color: #999; + font-size: 12px; + font-family: "Lato", +sans-serif; + } + .custom-checkbox, + .custom-radio { + top: 0; + margin-right: 0; + } + } + } + .clear-all-wrapper{ + margin: $small-space 0; + } +} + +/* Pagination */ +.pagination { + display: block !important; + width: 100%; + background: #fff; + min-height: 50px; + padding: 20px 0; + border-top: 1px solid #eee; + text-align: center; + &:after { + content: ""; + display: block; + clear: both; + } + > div{ + width: 100%; + text-align: center !important; + } + .page-list { + padding: 20px 0; + margin-bottom: 0; + text-align: center !important; + li { + display: inline; + a{ + padding: 0 8px; + } + span{ + display: none; + &.spacer{ + display: inline-block; + } + } + } + } + a { + color: $black; + font-weight: 400; + display: inline-block; + &:hover, + &:focus{ + color: $theme-color-default; + text-decoration: none; + } + } + .disabled { + color: $body-color; + cursor: no-drop; + &:hover{ + color: $body-color; + } + } + .current a { + color: $theme-color-default; + text-decoration: none; + } + @media (min-width: 992px) { + display: flex !important; + @include align-items(center); + &>div{ + width: auto !important; + padding: 0; + &:last-child{ + margin-left: auto; + } + } + } +} +/* Filter */ +.active_filters { + background: #f9f9f9; + padding: $small-space $large-space 0; + margin-bottom: $medium-space; + .active-filter-title { + display: inline; + font-weight: 400; + margin: 0 10px 0 0; + font-size: 13px; + color: #666; + } + ul { + display: inline; + } + .filter-block { + @include box-shadow(2px 2px 11px 0px rgba(0, 0, 0, 0.1));; + color: $gray-darker; + margin-bottom: $small-space; + background: white; + padding: 10px; + display: inline-block; + font-size: 12px; + @include rtl-margin-right($small-space); + .close { + color: $gray-darker; + font-size: $font-size-lg; + margin-top: 3px; + @include opacity(1); + @include rtl-margin-left($extra-small-space); + } + } +} +/* Block Category */ +.block-categories { + .category-top-menu{ + margin: 0px; + } + .category-sub-menu { + margin: 0px; + li{ + position: relative; + @include rtl-padding(0, 0, 0, 20px); + &:after { + content: ""; + width: 6px; + height: 6px; + border-radius: 100%; + background-color: #e5e5e5; + position: absolute; + display: block; + top: 16px; + @include rtl-left(0); + } + .navbar-toggler[aria-expanded="true"]+:after{ + background-color: $theme-color-default; + } + &:hover{ + &:after{ + background-color: $theme-color-default; + } + } + > a { + width: 100%; + display: block; + margin: 0; + line-height: 20px; + padding: 10px 0; + text-transform: capitalize; + &:hover{ + color: $theme-color-default; + } + } + } + li[data-depth="0"] { + ul.category-sub-menu{ + padding-top: $small-space; + } + } + } + .collapse-icons { + position: absolute; + top: 0; + text-align: center; + line-height: 40px; + padding: 0; + cursor: pointer; + font-size: 0.9375rem; + border: 0; + @include size(40px,40px); + @include rtl-right(-16px); + @include border-radius(20px); + @include transition(all .4s); + &:hover { + color: $theme-color-default; + } + .remove { + display: none; + } + i{ + opacity: 0; + visibility: hidden; + } + &:before { + font-family: $font-icon-2; + content: "add"; + font-size: 15px; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + text-align: center; + } + &[aria-expanded="true"] { + .add { + display: none; + } + .remove { + display: inline-block; + } + &:before{ + content: "remove"; + } + } + + } + .arrows { + position: absolute; + top: 0px; + text-align: center; + line-height: 40px; + border: 0; + padding: 0; + cursor: pointer; + @include size(40px,40px); + @include rtl-right(-16px); + @include border-radius(20px); + @include transition(all .4s); + .arrow-right, + .arrow-down { + font-size: $font-size-sm; + cursor: pointer; + @include rtl-margin-left(2px); + } + &:hover { + color: $theme-color-default; + } + .arrow-down { + display: none; + } + i{ + opacity: 0; + visibility: hidden; + } + &:before { + font-family: $font-icon-2; + content: "add"; + font-size: 15px; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + text-align: center; + } + &[aria-expanded="true"] { + .arrow-right { + display: none; + } + .arrow-down { + display: inline-block; + } + &:before{ + content: "remove"; + } + } + } +} +.facets-title { + color: $theme-color-secondary; +} +.products-selection { + .filter-button { + .btn-primary { + padding: 7px 8px 6px; + } + } +} + +/*** Responsive part ***/ +@include media-breakpoint-up(sm){ + .pagination{ + @include display(flex); + } +} +@include media-breakpoint-down(sm) { + #category { + .sidebar { + .block{ + display: none; + } + #search_filters_wrapper { + margin-left: -10px; + margin-right: -10px; + position: relative; + z-index: 99; + background: #fff; + } + #search_filter_controls { + text-align: center; + button { + margin: 5px 10px; + font-size: 14px; + width: calc(100% - 20px); + padding: 8px; + border-radius: 20px; + .material-icons { + font-size: 14px; + vertical-align: -2px; + } + } + margin: 5px 0; + } + #search_filters { + margin-bottom: 0; + @include box-shadow(none); + padding: 0 0 50px; + border-top: $main-border; + display: block; + .facet { + .title { + cursor: pointer; + &:after { + content: ""; + display: block; + clear: both; + } + .collapse-icons .remove { + display: none; + } + } + .title[aria-expanded="true"] { + .collapse-icons { + .add { + display: none; + } + .remove { + display: inline-block; + } + } + } + border-bottom: $main-border; + .facet-title { + color: $gray-darker; + text-transform: uppercase; + } + .h6 { + margin-bottom: 0; + padding: 10px; + display: inline-block; + } + .navbar-toggler { + display: inline-block; + cursor: pointer; + text-align: center; + width: 30px; + height: 30px; + padding: 0; + border: 0; + line-height: 30px; + } + .collapse { + display: none; + &.in { + display: block; + } + } + .facet-label { + a { + margin-top: 0; + } + } + ul { + margin-bottom: 0; + li { + border-top: $main-border; + padding: 10px; + } + } + } + } + } + #search_filter_toggler { + width: 100%; + padding: 8px; + border-radius: 20px; + } + } + .products-sort-order { + .select-title { + @include rtl-margin-left(0); + } + } + .products-selection { + h1 { + padding-top: 0; + text-align: center; + margin-bottom: 16px; + } + .showing { + padding-top: 16px; + text-align: center; + } + } +} diff --git a/themes/at_movic/_dev/css/components/checkout.scss b/themes/at_movic/_dev/css/components/checkout.scss new file mode 100644 index 00000000..5a240838 --- /dev/null +++ b/themes/at_movic/_dev/css/components/checkout.scss @@ -0,0 +1,506 @@ +body#checkout { + [data-action="show-password"]{ + background: $gray-dark; + } + .custom-checkbox { + @include display(flex); + span { + @include flex(0 0 15px); + margin-top: 2px; + } + em{ + width: 500px; + display: block; + @media (max-width: 1199px){ + width: 300px; + } + @media (max-width: 780px){ + width: 240px; + } + } + } + section#content { + margin-bottom: 25px; + } + section.checkout-step { + @include box-shadow(2px 2px 11px 0px rgba(0, 0, 0, 0.1)); + background-color: white; + border: $main-border; + padding: 15px; + .step-title { + text-transform: uppercase; + cursor: pointer; + margin-bottom: 0; + } + .content { + padding: 0 37px; + } + .step-edit { + text-transform: lowercase; + font-weight: normal; + .edit { + font-size: $base-font-size; + } + } + .not-allowed { + cursor: not-allowed; + @include opacity(0.5); + } + .content, + .done, + .step-edit { + display: none; + } + &.-current { + .content { + display: block; + } + } + &.-current.-reachable.-complete { + .done, + .step-edit { + display: none; + } + .step-number { + display: inline-block; + } + .content { + display: block; + } + } + &.-reachable.-complete { + h1 { + .done { + display: inline-block; + } + .step-number { + display: none; + } + .step-edit { + cursor: pointer; + display: block; + @include rtl-float-right(); + @include rtl-margin-right(2px); + color: $gray; + } + } + .content { + display: none; + } + } + small { + color: $gray; + } + .default-input { + min-width: 40%; + &[name=address1], + &[name=address2] { + min-width: 60%; + } + } + .radio-field { + margin-top: 30px; + label { + display: inline; + } + } + .checkbox-field div { + margin-top: 60px; + } + .checkbox-field + .checkbox-field div { + margin-top: 0; + } + .select-field div { + background: $gray-lighter; + padding: 10px 50px; + } + .form-footer { + text-align: center; + } + #conditions-to-approve { + padding-top: 16px; + } + .payment-options { + label { + display: table-cell; + } + .custom-radio { + @include rtl-margin-right($medium-space); + } + .payment-option { + margin-bottom: 8px; + } + } + .step-number { + display: inline-block; + padding: 10px; + } + .address-selector { + @include display(flex); + @include justify-content(space-between); + @include align-items(flex-start); + @include flex-wrap(wrap); + } + .address-item { + background: $gray-lighter; + @include flex(0 0 49%); + margin-bottom: $small-space; + &.selected { + background: white; + border: $brand-primary 3px solid; + } + } + .address-alias { + display: inline-block; + font-weight: 400; + margin-bottom: 10px; + } + .address { + @include rtl-margin-left(25px); + font-weight: normal; + } + .radio-block { + padding: 15px; + @include rtl-text-align-left(); + } + .custom-radio { + @include rtl-margin-right(0); + input[type="radio"] { + @include size(20px,20px); + } + } + .delete-address, + .edit-address { + color: $gray; + display: inline-block; + margin: 0 5px; + .delete, + .edit { + font-size: $base-font-size; + } + } + hr { + margin: 0; + } + .address-footer { + text-align: center; + padding: 10px; + } + #delivery-addresses, + #invoice-addresses { + margin-top: 20px; + } + .add-address { + margin-top: 20px; + a { + color: $gray-darker; + i { + font-size: $font-size-lg; + } + } + } + .delivery-option { + background: $gray-lighter; + padding: 15px 0; + margin: 0 0 25px; + label { + text-align: inherit; + } + } + .carrier-delay, + .carrier-name { + display: inline-block; + word-break: break-word; + @include rtl-text-align-left(); + } + #customer-form, + #delivery-address, + #invoice-address, + #login-form { + margin-left: 5px; + margin-top: 25px; + .form-control-label { + @include rtl-text-align-left(); + } + .radio-inline { + padding: 0; + } + } + .sign-in { + font-size: $font-size-sm; + } + .forgot-password { + margin-left: 230px; + } + } + .additional-information { + font-size: $font-size-sm; + margin-top: 20px; + } + .condition-label { + margin-left: 40px; + margin-top: 10px; + label { + text-align: inherit; + display: block; + clear: none; + } + } + .cancel-address { + margin: 10px; + display: block; + color: $gray-dark; + text-decoration: underline; + } + #cart-summary-product-list { + img { + border: $gray-light 1px solid; + width: 50px; + } + .media-body { + vertical-align: middle; + } + } + #order-summary-content { + padding-top: 15px; + h4.h4 { + margin-top: 10px; + margin-bottom: 20px; + font-size: 13px; + text-transform: uppercase; + } + h4.black { + color: #000000; + } + h4.addresshead { + margin-top: 3px; + } + .noshadow { + box-shadow: none; + } + #order-items { + @include rtl-border-right(0); + h3.h3 { + color: $gray-darker; + margin-top: 20px; + } + table { + tr { + &:first-child { + td { + border-top: 0; + } + } + } + } + } + .order-confirmation-table { + padding: 1rem; + margin-bottom: 2rem; + background-color: #fff; + border: 3px solid #e5e5e5; + border-radius: 0; + } + .summary-selected-carrier { + margin-bottom: 0.75rem; + background-color: #fff; + border: 1px solid #e5e5e5; + border-radius: 0; + padding: 1rem; + } + .step-edit { + display: inline; + color: $gray; + font-size: 0; + i{ + font-size: 14px; + vertical-align: -2px; + } + } + .step-edit:hover { + cursor: pointer; + } + a { + .step-edit { + color: $gray; + } + } + } + #gift_message{ + max-width: 100%; + border-color: $gray-darker; + } +} +/**** ORDER CONFIRMATION *****/ +#order-details { + padding-left: $large-space; + > .card-title { + margin-bottom: $large-space; + } + ul { + margin-bottom: $medium-space; + li { + margin-bottom: $small-space; + } + } +} +#order-items { + @include rtl-border-right($gray-light 1px solid); + hr { + border-top-color: $gray-darker; + } + table { + width: 100%; + tr { + height: $large-space; + td { + &:last-child { + @include rtl-text-align-right(); + } + } + } + } + .order-line { + margin-top: 16px; + } + .image { + img { + width: 100%; + border: 1px solid gray-lighter; + margin-bottom: 16px; + } + } + .details { + margin-bottom: 16px; + .customizations { + margin-top: 10px; + } + } + .qty { + margin-bottom: 16px; + } +} +#order-confirmation { + #registration-form { + width: 50%; + margin: 0 auto 16px; + } +} +@include media-breakpoint-down(md) { + .done { + margin: 0; + padding: 0; + } + body#checkout section.checkout-step .address-item { + @include flex-grow(1); + } + body#checkout section.checkout-step .delivery-option-2 { + @include flex-direction(column); + } + .delivery-option { + @include display(flex); + margin: auto; + .custom-radio { + @include flex(0 0 auto); + } + } + .condition-label { + label[for="conditions_to_approve[terms-and-conditions]"] { + @include rtl-text-align-left(); + } + } + #order-confirmation { + #registration-form { + width: 100%; + } + } +} + +@include media-breakpoint-down(sm) { + body#checkout section.checkout-step.-reachable.-complete h1 .step-edit { + float: none; + margin-top: 4px; + margin-left: $medium-space; + } + body#checkout { + #header .header-nav { + max-height: none; + padding: 0; + } + section.checkout-step { + .content { + padding: 15px; + } + } + .form-group { + margin-bottom: 8px; + } + } + #order-items { + @include rtl-border-right(0); + margin-bottom: 40px; + .card-title { + border-bottom: $main-border; + margin-bottom: 16px; + padding-bottom: 16px; + } + hr { + border-top-color: $gray-light; + } + } + #order-details { + padding-left: 15px; + .card-title { + border-bottom: $main-border; + margin-bottom: 16px; + padding-bottom: 16px; + } + } + +} + +@include media-breakpoint-down(xs) { + body#checkout { + section.checkout-step { + .content { + padding: 15px 0; + } + } + } + #payment-confirmation { + button { + font-size: 12px; + &.btn { + white-space: normal; + } + } + } +} + + +.cart-empty { + .cart-summary { + } +} +.js-payment-binary { + display: none; + .accept-cgv { + display: none; + } + &.disabled { + opacity: 0.6; + cursor: not-allowed; + &::before { + content: ""; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + pointer-events: none; + } + .accept-cgv { + display: block; + } + } +} diff --git a/themes/at_movic/_dev/css/components/contact.scss b/themes/at_movic/_dev/css/components/contact.scss new file mode 100644 index 00000000..f479aeb2 --- /dev/null +++ b/themes/at_movic/_dev/css/components/contact.scss @@ -0,0 +1,38 @@ +.contact-rich { + color: $gray-dark; + margin-bottom: 32px; + h4 { + text-transform: uppercase; + color: $gray-darker; + margin-bottom: 32px; + } + .block { + height: auto; + overflow: hidden; + .icon { + @include rtl-float-left(); + width: 56px; + i { + font-size: 32px; + } + } + .data { + color: $gray-darker; + font-size: $font-size-sm; + width: auto; + overflow: hidden; + &.email{ + padding-top: 6px; + } + } + } +} +.contact-form { + padding: 16px; + color: $gray-dark; + width: 100%; + h3 { + text-transform: uppercase; + color: $gray-darker; + } +} diff --git a/themes/at_movic/_dev/css/components/custom-text.css b/themes/at_movic/_dev/css/components/custom-text.css new file mode 100644 index 00000000..7586a663 --- /dev/null +++ b/themes/at_movic/_dev/css/components/custom-text.css @@ -0,0 +1 @@ +/*# sourceMappingURL=custom-text.css.map */ \ No newline at end of file diff --git a/themes/at_movic/_dev/css/components/custom-text.css.map b/themes/at_movic/_dev/css/components/custom-text.css.map new file mode 100644 index 00000000..b8ef161f --- /dev/null +++ b/themes/at_movic/_dev/css/components/custom-text.css.map @@ -0,0 +1 @@ +{"version":3,"sources":[],"names":[],"mappings":"","file":"custom-text.css"} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/components/custom-text.scss b/themes/at_movic/_dev/css/components/custom-text.scss new file mode 100644 index 00000000..e69de29b diff --git a/themes/at_movic/_dev/css/components/customer.scss b/themes/at_movic/_dev/css/components/customer.scss new file mode 100644 index 00000000..937ff111 --- /dev/null +++ b/themes/at_movic/_dev/css/components/customer.scss @@ -0,0 +1,375 @@ +/*** SOME GENERIC STYLES ***/ +@mixin customer-area-base-box { + @include box-shadow(none); + background: white; + padding: 16px; + border: 0; +} +@mixin customer-area-box { + @include customer-area-base-box; + font-size: $font-size-sm; + color: $gray-dark; +} +.table-labeled { + th { + vertical-align: middle; + } + td { + vertical-align: middle; + } + .label { + font-weight: 400; + border-radius: 3px; + font-size: inherit; + padding: 4px 6px; + margin: 2px; + color: white; + white-space: nowrap; + } +} +.page-order { + .table { + margin-bottom: 0; + } + table { + th { + padding: 8px; + } + td { + padding: 8px; + } + thead { + th { + text-align: center; + } + } + } +} + +#authentication { + .tooltip.tooltip-bottom { + padding: 0; + margin: 0; + } + .custom-checkbox { + span { + @include rtl-float-left(); + } + label { + @include rtl-padding(0,0,0,30px); + } + } + [data-action="show-password"]{ + background: $gray-dark; + border-radius: 0; + &:hover{ + background: #333; + } + } +} +#identity, +#authentication { + .radio-inline { + padding: 0; + .custom-radio { + margin-right: 0; + vertical-align: 0px; + } + } +} +/*** Most of the customer accpunt pages ***/ +.page-customer-account { + #content { + @include customer-area-box; + .order-actions { + a { + padding: 0 2px; + } + } + .forgot-password { + text-align: center; + font-size: $font-size-sm; + margin-top: 16px; + padding-bottom: 15px; + } + .no-account { + text-align: center; + font-size: $base-font-size; + } + } +} +/*** Login page ***/ +.page-authentication { + #content { + @include customer-area-base-box; + max-width: 640px; + margin: 0 auto; + } +} +/*** Addresses page ***/ +.page-addresses { + .address { + @include box-shadow(2px 2px 11px 0px rgba(0, 0, 0, 0.1)); + background: white; + margin-bottom: 30px; + font-size: $font-size-sm; + color: $gray-darker; + .address-body { + padding: 16px; + h4 { + font-size: $base-font-size; + } + address { + min-height: 144px; + } + } + .address-footer { + border-top: 1px solid #efefef; + padding: 8px 16px; + a { + color: $gray-dark; + margin-right: 8px; + &:hover { + color: $gray-darker; + } + i { + font-size: $base-font-size; + } + span { + font-size: $font-size-lg; + vertical-align: middle; + } + } + } + } + .addresses-footer { + margin: 0 15px; + a { + color: $gray-darker; + &:hover { + color: $gray-darker; + } + i { + font-size: $base-font-size; + } + span { + font-size: $base-font-size; + vertical-align: middle; + margin-top: $small-space; + } + } + } +} +/*** Order details page ***/ +.page-order-detail { + font-size: 13px; + color: $gray-dark; + .box { + @include customer-area-base-box; + margin-bottom: 16px; + } + h3 { + font-size: $base-font-size; + text-transform: uppercase; + color: $gray-darker; + margin-bottom: 16px; + } + #order-infos { + ul { + margin: 0; + } + } + #order-history { + .history-lines { + .history-line { + padding: 8px 0; + border-bottom: 1px solid $gray-lighter; + &:last-child { + border-bottom: 0; + } + .label { + display: inline-block; + margin: 4px 0; + padding: 4px 6px; + color: white; + border-radius: 3px; + } + } + } + } + .addresses { + margin: 0 -15px; + h4 { + font-size: $base-font-size; + } + } + #order-products { + &.return { + margin-bottom: 16px; + th { + &.head-checkbox { + width: 30px; + } + } + td { + padding: 1.375rem 0.75rem; + &.qty { + min-width: 125px; + .current { + width: 30%; + float: left; + text-align: right; + padding-right: 0.5rem; + } + .select { + width: 70%; + float: left; + margin: -0.625rem 0; + padding-left: 0.25rem; + select { + text-align: center; + } + } + } + } + } + } + .order-items { + padding: 0 !important; + .order-item { + padding: 16px 16px 0; + border-bottom: 1px solid $gray-lighter; + .checkbox { + width: 30px; + float: left; + padding: 0 15px; + } + .content { + width: calc(100% - 30px); + float: left; + padding: 0 15px; + } + .desc { + .name { + } + margin-bottom: 16px; + } + .qty { + margin-bottom: 16px; + .q { + margin-bottom: 4px; + } + .s { + margin-bottom: 4px; + } + } + } + } + .messages { + .message { + margin-top: 8px; + border-bottom: 1px solid $gray-lighter; + &:last-child { + border-bottom: 0; + } + > div { + margin-bottom: 8px; + } + } + } + .customization { + margin-top: 12px; + } +} +/*** Order return page ***/ +#order-return-infos { + .thead-default th { + color: $gray-darker; + } + .customization { + margin-top: 12px; + } +} +/*** My account landing page ***/ +.page-my-account { + #content { + .links { + &:after { + content: ""; + display: block; + clear: both; + } + a { + text-align: center; + display: inline-block; + font-size: $base-font-size; + text-transform: uppercase; + color: $gray-dark; + padding: 0 10px; + margin: 15px 0; + span.link-item { + display: block; + height: 100%; + @include customer-area-base-box; + box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2); + } + i { + display: block; + font-size: 2.6rem; + width: 100%; + color: $gray-darker; + padding-bottom: 3.4rem; + } + &:hover { + color: $gray-darker; + i { + color: $brand-primary; + } + } + } + } + } +} +.page-footer { + .text-sm-center{ + text-align: center; + } +} +/*** History page ***/ +#history { + .orders { + margin: 0 -16px; + .order { + a { + h3 { + color: $gray-dark; + } + } + padding: 12px 16px; + border-bottom: 1px solid $gray-lighter; + .label { + display: inline-block; + margin: 4px 0; + padding: 4px 6px; + color: white; + border-radius: 3px; + } + &:last-child { + border-bottom: 0; + } + } + } +} + +/*** FOOTER ***/ +.page-footer { + .account-link { + margin-right: 16px; + i { + font-size: $base-font-size; + } + span { + vertical-align: middle; + } + } +} diff --git a/themes/at_movic/_dev/css/components/customization-modal.scss b/themes/at_movic/_dev/css/components/customization-modal.scss new file mode 100644 index 00000000..569162bb --- /dev/null +++ b/themes/at_movic/_dev/css/components/customization-modal.scss @@ -0,0 +1,22 @@ +.customization-modal { + .modal-content { + border-radius: 0; + border: 1px solid $gray-lighter; + .modal-body { + padding-top: 0; + .product-customization-line { + .label { + font-weight: 600; + text-align: right; + } + padding-bottom: 15px; + padding-top: 15px; + border-bottom: 1px solid $gray-lighter; + &:last-child { + padding-bottom: 0; + border-bottom: 0; + } + } + } + } +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/components/drop-down.scss b/themes/at_movic/_dev/css/components/drop-down.scss new file mode 100644 index 00000000..2a3c55de --- /dev/null +++ b/themes/at_movic/_dev/css/components/drop-down.scss @@ -0,0 +1,33 @@ +.dropdown{ + color:$gray; + &:hover .expand-more{ + color: $brand-primary; + } + .expand-more{ + color: $gray-darker; + cursor: pointer; + @include user-select(none); + + } + + .active{ + max-height: 200px; + overflow-y: hidden; + //visibility: visible; + } + + select { + -moz-appearance: none; + border: 0 none; + outline: 0 none; + color: $gray-darker; + background: white; + } +} + +.dropdown-item:focus, .dropdown-item:hover { + background: none; + text-decoration: none; + color: $brand-primary; +} + diff --git a/themes/at_movic/_dev/css/components/errors.scss b/themes/at_movic/_dev/css/components/errors.scss new file mode 100644 index 00000000..21897481 --- /dev/null +++ b/themes/at_movic/_dev/css/components/errors.scss @@ -0,0 +1,22 @@ +#products, +#pagenotfound { + #main { + .page-header { + margin: 32px 0 48px; + } + } + .page-not-found { + background: white; + padding: 16px; + font-size: $font-size-sm; + color: $gray-dark; + max-width: 570px; + margin: 0 auto; + .search-widget { + float: none; + input { + width: 100%; + } + } + } +} diff --git a/themes/at_movic/_dev/css/components/featuredproducts.scss b/themes/at_movic/_dev/css/components/featuredproducts.scss new file mode 100644 index 00000000..4bb0c87c --- /dev/null +++ b/themes/at_movic/_dev/css/components/featuredproducts.scss @@ -0,0 +1,174 @@ +#products,.featured-products,.product-accessories { + .products { + @include display(flex); + @include flex-wrap(wrap); + @include justify-content(flex-start); + } + .product-thumbnail { + display: block; + } + .product-title a { + color: $gray; + font-size: $font-size-sm; + text-decoration: none; + text-align: center; + font-weight: 400; + } + .thumbnail-container { + position: relative; + margin-bottom: em(25px); + height: 318px; + width: 257px; + background: white; + box-shadow: 0 0 5px 3px rgba(0,0,0,0.05); + &:hover { + @include box-shadow(2px 2px 11px 0px rgba(0, 0, 0, 0.1)); + .highlighted-informations { + bottom: 90px; + &::after { + opacity: 1; + } + &.no-variants{ + bottom: 70px; + } + } + .product-description{ + box-shadow: 0 -5px 10px -5px rgba(0, 0, 0, 0.2); + } + } + } + .products-section-title { + text-align: center; + margin-bottom: 24px; + } + .product-title { + text-align: center; + text-transform: capitalize; + margin-top: 16px; + } + .product-price-and-shipping { + color: $gray-darker; + font-weight: 700; + text-align: center; + } + .variant-links { + background: $gray-light; + position: relative; + text-align: center; + width: 100%; + top: 0.25em; + padding-top: 3px; + min-height: 40px; + } + .highlighted-informations { + position: absolute; + bottom: 20px; + z-index: 0; + background: white; + text-align: center; + width: 257px; + height: 50px; + padding-top: 5px; + box-shadow: 0 -5px 10px -5px rgba(0, 0, 0, 0.2); + transition: bottom .3s; + .quick-view { + color: $gray-dark; + font-size: $base-font-size; + &:hover { + color: $brand-primary; + } + } + } + + .product-description { + position: absolute; + z-index: 1; + background: white; + width: 257px; + bottom: 0; + height: 70px; + } + img { + margin-left: 4px; + } + + .product-miniature { + margin: 0 10px; + .discount { + display: none; + } + .product-flags .new, + .online-only, + .on-sale, + .discount-percentage { + display: block; + position: absolute; + left: -7px; + top:7px; + padding: 5px 7px; + color: white; + background: $brand-primary; + text-transform: uppercase; + min-width: 50px; + min-height: 30px; + font-size: $base-font-size; + font-weight: 400; + @include box-shadow(2px 2px 11px 0px rgba(0, 0, 0, 0.1)); + &.discount-percentage { + z-index: 2; + background: $brand-secondary; + } + &.on-sale{ + background: $brand-secondary; + width: 100%; + text-align: center; + left:0; + top:0; + } + &.online-only { + font-size: $font-size-xs; + margin-top: 208px; + margin-left: 139px; + &::before{ + content:"\E30A"; + font-family: 'Material Icons'; + vertical-align: middle; + margin: 5px; + } + } + } + } + .comments_note { + text-align: center; + color: $gray; + } + .regular-price { + color: $gray; + text-decoration: line-through; + font-size: $font-size-sm; + } + .count { + color: $gray-dark; + font-weight: 700; + position: relative; + bottom: 8px; + } + .all-product-link { + clear: both; + color: $gray-dark; + font-weight: 700; + margin-top: 24px; + margin-bottom: 24px; + } +} + +@include media-breakpoint-down(sm) { + #products,.featured-products,.product-accessories { + .thumbnail-container { + @include box-shadow(2px 2px 11px 0px rgba(0, 0, 0, 0.1)); + .product-description{ + box-shadow: 0 -5px 10px -5px rgba(0, 0, 0, 0.2); + } + } + } +} diff --git a/themes/at_movic/_dev/css/components/footer.scss b/themes/at_movic/_dev/css/components/footer.scss new file mode 100644 index 00000000..e67d0ab2 --- /dev/null +++ b/themes/at_movic/_dev/css/components/footer.scss @@ -0,0 +1,175 @@ +// Module Footer +.block_newsletter { + p { + padding-top: 14px; + } + .input-wrapper { + @include display(flex); + @include align-items(center); + position: relative; + input{ + height: 50px; + padding: 10px 10px; + height: 50px; + border: 1px solid #f8f8f8; + background: #f8f8f8; + @include rtl-border-right(0px); + width: 100%; + outline: 0; + &:focus, + &:hover{ + border-color: #f8f8f8; + } + } + button{ + height: 50px; + line-height: 50px; + padding: 0 18px; + text-transform: uppercase; + font-size: 12px; + letter-spacing: 1px; + border: 1px solid #000; + background: #000; + @include border-radius(0); + @include transition(all .4s); + &:hover{ + background: #666; + border-color: #666; + color: #fff; + } + } + } + .col-notice{ + color: #a9a9a9; + font-size: 13px; + span{ + color: #f00; + @include rtl-padding(0,5px,0,0); + } + } +} +// Block Contact Info +.block-contact{ + ul{ + li{ + @include display(flex); + line-height: 1.625rem; + } + } + .fa{ + color: white; + font-size: 16px; + width: 2.5rem; + margin-top: 4px; + } +} +// Block CMS + +// Block Social +.block-social { + padding: 10px 0px; + ul{ + margin-bottom: 0px; + @media (max-width: 1199px) { + clear: both; + } + } + li { + display: inline-block; + cursor: pointer; + text-align: center; + line-height: 30px; + @include size(30px,30px); + &:hover { + color: #000; + } + a { + white-space: nowrap; + text-indent: 100%; + overflow: hidden; + display: none; + &:hover { + color: #000; + } + } + &:before{ + content: ""; + font-family: $font-icon; + font-size: 14px; + } + &.facebook{ + &:before{ + content: "\f09a"; + } + } + &.twitter{ + &:before{ + content: "\f099"; + } + } + &.rss{ + &:before{ + content: "\f09e"; + } + } + &.youtube{ + &:before{ + content: "\f16a"; + } + } + &.googleplus{ + &:before{ + content: "\f0d5"; + } + } + &.pinterest{ + &:before{ + content: "\f0d2"; + } + } + &.vimeo{ + &:before{ + content: "\f27d"; + } + } + &.instagram{ + &:before{ + content: "\f16d"; + } + } + } +} +// Responsive Footer +#index{ + .footer-container{ + border: 0; + } +} +.footer-container{ + position: relative; + .ApColumn .title_block { + margin: 0 0 20px; + font-size: 13px; + @media (max-width: 767px) { + margin: 0; + line-height: 30px; + } + } + .ApLink{ + li{ + a{ + display: inline-block; + line-height: 20px; + padding: 8px 0; + vertical-align: top; + transition: all .4s; + &:hover{ + transform: translateX(5px); + } + } + } + } +} + + + diff --git a/themes/at_movic/_dev/css/components/forgotten-password.scss b/themes/at_movic/_dev/css/components/forgotten-password.scss new file mode 100644 index 00000000..79465afe --- /dev/null +++ b/themes/at_movic/_dev/css/components/forgotten-password.scss @@ -0,0 +1,51 @@ +@import "theme_variables"; + +.forgotten-password { + padding: 4px; + + .form-fields { + + .center-email-fields { + @include display(flex); + @include justify-content(center); + + @media (max-width: 767px) { + flex-direction: column; + + button { + margin: 10px; + width: calc(100% - 20px); + } + } + + button { + height: 38px; + } + } + + .email { + padding-left: 0; + padding-right: 0; + width: 430px; + + @media (max-width: 767px) { + padding-left: 10px; + padding-right: 10px; + width: 100%; + } + + input { + height: 38px; + } + } + + label.required { + width: 130px; + } + } +} + +.send-renew-password-link { + padding-left: 10px; + padding-right: 10px; +} diff --git a/themes/at_movic/_dev/css/components/imageslider.scss b/themes/at_movic/_dev/css/components/imageslider.scss new file mode 100644 index 00000000..aea1e9ea --- /dev/null +++ b/themes/at_movic/_dev/css/components/imageslider.scss @@ -0,0 +1,58 @@ +.homeslider{ + .carousel { + @include box-shadow(1px 1px 7px 0 rgba(0, 0, 0, 0.15)); + margin-bottom: 24px; + .direction { + z-index: auto; + } + .carousel-inner { + height: 340px; + } + .carousel-item { + height: 100%; + img { + width: 100%; + margin-left: 0; + } + .caption { + position: absolute; + bottom: 28px; + left: 90px; + color: white; + max-width: 340px; + .caption-description p { + color: white; + } + } + } + .carousel-control { + opacity: 1; + .icon-next, + .icon-prev { + &::before { + content: ""; + } + i { + font-size: 50px; + color: white; + } + &:hover { + i { + color: $brand-primary; + } + } + } + .icon-prev { + left: 16px; + } + .icon-next { + right: 32px; + } + &.left, + &.right { + background: none; + } + } + } + +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/components/index.php b/themes/at_movic/_dev/css/components/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/_dev/css/components/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/_dev/css/components/mainmenu.scss b/themes/at_movic/_dev/css/components/mainmenu.scss new file mode 100644 index 00000000..406b91bc --- /dev/null +++ b/themes/at_movic/_dev/css/components/mainmenu.scss @@ -0,0 +1,170 @@ +.top-menu { + &[data-depth="1"] { + margin: 10px; + } + a:not([data-depth="0"]) { + display: block; + padding: 10px; + color: $gray; + font-weight: 400; + } + a.dropdown-submenu { + color: $gray-darker; + text-transform: uppercase; + font-weight: 400; + } + a[data-depth="0"] { + font-weight: 400; + padding: 3px $small-space 6px; + &:hover { + #header & { + color: $brand-primary; + text-decoration: none; + } + } + } + a[data-depth="1"], + a[data-depth="2"] { + padding: 0 10px 10px 0; + } + .collapse { + display: inherit; + } + .sub-menu { + &.collapse { + display: none; + } + box-shadow: 2px 1px 11px 2px rgba(0, 0, 0, 0.1); + border: none; + margin-left: 15px; + width: calc(100% - 30px); + min-width: calc(100% - 30px); + z-index: 18; + display: none; + ul[data-depth="1"] > li { + float: left; + margin: 0 20px; + } + a:hover { + color: $brand-primary; + } + } + .popover { + max-width: inherit; + } +} +.popover.bs-tether-element-attached-top { + margin-top: 0; +} + +#mobile_top_menu_wrapper { + margin-top: 10px; + padding-bottom: 10px; + background: white; + #top-menu { + margin-bottom: 10px; + } + .top-menu { + color: $gray-darker; + .collapse-icons[aria-expanded="true"] { + .add { + display: none; + } + .remove { + display: block; + } + } + .collapse-icons .remove { + display: none; + } + .navbar-toggler { + display: inline-block; + padding: 0; + } + a[data-depth="0"] { + padding: 10px; + border-bottom: 1px solid $gray-lighter; + } + .collapse { + display: none; + &.in { + display: block; + } + } + .sub-menu { + &.collapse { + display: none; + &.in { + display: block; + } + } + box-shadow: none; + z-index: inherit; + display: block; + position: static; + overflow: hidden; + margin-left: 0; + width: 100%; + min-width: 100%; + background: $gray-lighter; + ul[data-depth="0"] > li { + border-bottom: 1px solid $gray; + } + ul[data-depth="1"] { + margin: 0; + > li { + float: none; + margin: 0; + a { + text-transform: none; + } + } + } + ul { + padding: 0; + } + li > a { + padding: 10px; + border-bottom: 1px solid white; + font-weight: 600; + } + ul[data-depth="2"] li a { + padding-left: 20px; + } + ul[data-depth="3"] li a { + padding-left: 40px; + } + ul[data-depth="4"] li a { + padding-left: 60px; + } + } + .popover { + border-radius: 0; + } + } + .js-top-menu-bottom { + a { + color: $gray; + } + .language-selector-wrapper { + padding: 10px; + .language-selector { + display: inline; + } + } + .currency-selector { + padding: 10px; + } + #contact-link { + padding: 10px; + } + .user-info { + padding: 0 10px; + a { + padding: 10px 0; + display: block; + width: 100%; + } + } + } +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/components/products.scss b/themes/at_movic/_dev/css/components/products.scss new file mode 100644 index 00000000..08a298ac --- /dev/null +++ b/themes/at_movic/_dev/css/components/products.scss @@ -0,0 +1,2263 @@ +@import "theme_variables"; + +#product { + #content { + position: relative; + margin-bottom: 30px; + + .mask { + width: 554px; + max-width: 100%; + margin: 10px auto; + height: 124px; + + img { + max-width: 100%; + width: 100px; + @include rtl-margin(0, 10px, 0, 0); + border: 0; + transition: all .4s; + opacity: 0.5; + + &:hover, + &.selected { + opacity: 1; + } + } + + @media (max-width: 1199px) { + width: 430px; + } + + @media (max-width: 991px) { + width: 320px; + } + + @media (max-width: 767px) { + width: 320px; + } + + @media (max-width: 480px) { + width: 210px; + } + + li { + display: inline; + } + } + } +} + +.product-detail-name { + margin: 0 0 15px; + font-size: 24px; + line-height: 1.5; + letter-spacing: 0; + text-transform: capitalize; +} + +.product-price { + color: #000; + display: inline-block; + font-family: "Lato", sans-serif; +} + +.product-information div[itemprop="description"] { + line-height: 2; + text-align: justify; + margin: 0 0 15px; +} + +.product-description { + line-height: 2; +} + +.product-information { + margin: 35px 0; + padding: 30px 0 0; + border-top: 1px solid #efefef; +} + +.p-desception { + color: #67747c; + line-height: 30px; +} + +.product-manufacturer { + margin-bottom: $small-space; + + .manufacturer-logo { + max-height: 115px; + } +} + +.input-color { + position: absolute; + cursor: pointer; + height: 20px; + width: 20px; + @include opacity(0); +} + +.input-container { + position: relative; +} + +.input-radio { + position: absolute; + top: 0; + cursor: pointer; + width: 100%; + height: 100%; + @include opacity(0); +} + +.input-color, +.input-radio { + + &:checked+span, + &:hover+span { + border: 2px solid $gray-darker; + } +} + +.radio-label { + @include box-shadow(2px 2px 11px 0px rgba(0, 0, 0, 0.1)); + background: white; + display: inline-block; + padding: 5px 14px; + font-weight: 400; + border: 2px solid white; +} + +.product-actions { + .control-label { + display: block; + font-size: 12px; + text-transform: uppercase; + font-weight: 400; + margin: auto 10px auto 0; + min-width: 70px; + color: #000; + letter-spacing: 1px; + } + + .add-to-cart { + height: 64px; + line-height: 64px; + padding: 0 20px; + text-transform: uppercase; + letter-spacing: 1px; + margin: 0 15px 0 0; + max-width: 240px; + min-width: 200px; + overflow: hidden; + text-overflow: ellipsis; + @include rtl-margin(0, 15px, 0, 0); + + i { + display: none; + } + } +} + +.product-quantity { + .qty { + //width: 100px; + } + + .add { + white-space: nowrap; + position: relative; + } + + .input-group { + border: 2px solid #ddd; + height: 64px; + padding: 0 30px; + position: relative; + + .input-group-btn-vertical { + width: auto; + height: auto; + position: static; + display: block; + } + } + + #quantity_wanted { + color: #444; + background: none; + height: 60px; + padding: 0; + width: 100%; + text-align: center; + border: 0; + box-shadow: none; + font-weight: 500; + } + + .input-group-btn-vertical { + width: 25px; + height: 50px; + position: absolute; + top: 0; + bottom: 0; + @include rtl-right(0); + } + + .input-group-btn-vertical { + .btn { + padding: 8px; + width: 30px; + height: 64px; + min-width: 30px; + padding: 0; + color: #888; + transform: none; + border: 0; + background: none; + line-height: 64px; + position: absolute; + top: -2px; + + &.bootstrap-touchspin-up { + right: 0; + } + + &.bootstrap-touchspin-down { + left: 0; + } + + &:hover { + background: none; + color: #000; + } + + i { + font-size: 15px; + position: static; + + &.touchspin-up { + &:after { + content: "add"; + } + } + + &.touchspin-down { + &:after { + content: "remove"; + } + } + } + } + } + + .btn-touchspin { + height: 23px; + } +} + +.product-discounts { + + //margin-bottom: 24px; + >.product-discounts-title { + font-weight: normal; + font-size: $font-size-sm; + } + + >.table-product-discounts { + thead tr th { + width: 33%; + padding: $small-space $medium-space; + background: white; + border: 5px $gray-light solid; + text-align: center; + } + + tbody tr { + background: $gray-lighter; + + &:nth-of-type(even) { + background: white; + } + + td { + padding: $small-space $medium-space; + text-align: center; + border: 5px $gray-light solid; + } + } + } +} + +.product-prices { + margin: 10px 0 20px; + + .current-price { + font-size: 26px; + color: #000; + + span[itemprop="price"] { + display: inline-block; + @include rtl-margin(0, 13px, 0, 0); + } + } + + .tax-shipping-delivery-label { + font-size: 13px; + color: $gray-dark; + } + + .product-discount { + display: inline-block; + font-size: 16px; + } +} + +.product-discount { + color: $gray; + + .regular-price { + text-decoration: line-through; + font-weight: normal; + @include rtl-margin(0, 13px, 0, 0); + } +} + +.has-discount { + + &.product-price, + p { + color: $brand-secondary; + } + + .discount { + background: #f39d72; + color: white; + font-weight: 500; + padding: 6px 10px 4px; + font-size: 10px; + @include rtl-margin(0, 13px, 0, 0); + text-transform: uppercase; + display: inline-block; + vertical-align: 5px; + border-radius: 2px; + } +} + +.product-unit-price { + font-size: $font-size-xs; + margin-bottom: 0; +} + +.product-tabs { + &.tabs { + margin-bottom: 20px; + margin-top: 30px; + background: white; + + .tab-content { + padding: 10px 30px; + + @media (max-width: 767px) { + padding: 10px; + } + } + + .nav-tabs { + border: none; + border: 0; + padding: 0px; + text-align: center; + position: relative; + margin-bottom: 30px; + + .nav-link { + border: 0; + text-transform: uppercase; + padding: 5px 0; + font-size: 13px; + position: relative; + margin: 0 40px; + font-weight: 600; + color: #888; + letter-spacing: 1px; + + @media (max-width: 767px) { + font-weight: 500; + margin: 0 15px; + } + + @media (max-width: 480px) { + font-size: 12px; + margin: 0 10px; + } + + &:before { + content: ""; + left: 0; + height: 2px; + position: absolute; + bottom: -5px; + right: 0; + background: $theme-color-default; + display: none; + } + + &.active { + border: none; + color: $theme-color-default; + + &:before { + display: block; + } + } + + &:hover { + border: none; + color: $theme-color-default; + } + } + + .nav-item { + float: none; + display: inline-block; + vertical-align: top; + margin: auto; + } + } + } +} + +.product-cover { + margin-bottom: 10px; + position: relative; + + img {} + + .layer { + width: 100%; + height: 100%; + left: 0; + top: 0; + position: absolute; + text-align: center; + cursor: pointer; + display: none; + + .zoom-in { + font-size: 30px; + color: $theme-color-default; + position: absolute; + bottom: 0; + @include rtl-right(0); + @include opacity(0); + transform: scale(0); + backface-visibility: hidden; + transition: all .4s; + transition-delay: 0.2s; + } + + &:hover .zoom-in { + @include opacity(1); + transform: scale(1); + } + } +} + +#product-modal { + .modal-content { + border: none; + padding: 0; + + .modal-body { + &>.row { + @media (min-width: 992px) { + display: flex; + } + } + + .product-cover-modal { + background: white; + width: 100%; + max-width: 100%; + } + + .image-caption { + padding: 10px 20px; + + p { + margin-bottom: 0; + } + } + + .thumbnails { + position: absolute; + top: 10px; + @include rtl-right(10px); + } + + .mask { + position: relative; + overflow: hidden; + height: 475px; + z-index: 1; + + &.nomargin { + margin-top: 0; + } + } + + .product-images { + img { + width: 150px; + cursor: pointer; + background: white; + border: 2px solid transparent; + + &:hover, + &.selected { + border: 2px solid #e5e5e5; + } + } + } + + .arrows { + width: 100%; + text-align: center; + position: absolute; + top: 100%; + right: 0; + z-index: 0; + display: none; + opacity: 1 !important; + + &.scroll { + display: block; + } + + .arrow-up { + position: absolute; + top: 20px; + right: 55%; + } + + .arrow-down { + position: absolute; + top: 20px; + left: 55%; + } + + i { + font-size: 24px; + @include transition(all .4s); + color: #999; + + &:hover { + color: #000; + } + } + + cursor: pointer; + } + } + } +} + +#blockcart-modal { + color: $theme-color-secondary; + + .modal-header { + background: #eee; + border: 0; + } + + .modal-body { + background: $white; + padding: 30px; + + @media (min-width: 768px) { + &>.row { + margin: 0 -20px; + + &>div { + width: 50%; + padding: 0 20px; + } + } + } + + .divide-right { + span { + display: inline-block; + margin-bottom: 10px; + } + + p { + color: $black; + } + } + } + + .cart-content-btn { + margin-top: 30px; + text-align: right; + + @media (min-width: 768px) { + width: 200%; + float: right; + } + } + + .modal-dialog { + max-width: 900px; + width: 100%; + } + + .product-image { + width: 210px; + max-width: 100%; + } + + .modal-title { + font-size: 13px; + font-weight: 500; + + i.material-icons { + @include rtl-margin(0, 10px, 0, 0); + vertical-align: -2px; + } + } + + .product-name { + font-size: 14px; + margin-bottom: 10px; + font-weight: 500; + } + + .cart-products-count { + font-weight: 500; + } + + .cart-content { + padding-left: 10px; + + button { + margin-right: 5px; + } + } + + .divide-right { + @include rtl-border-right(1px solid #e5e5e5); + } +} + +.product-images { + >li.thumb-container { + >.thumb { + cursor: pointer; + margin: 0 0 10px; + border: 2px solid $nocolor; + + &.selected, + &:hover { + border-color: #e5e5e5; + } + } + } +} + +#main { + .images-container { + .js-qv-mask { + white-space: nowrap; + overflow: hidden; + + &.scroll { + width: calc(100% - 60px); + margin: 0 auto; + } + } + } +} + +.scroll-box-arrows { + display: none; + position: absolute; + width: 100%; + bottom: 60px; + left: 0; + + &.scroll { + display: block; + } + + i { + position: absolute; + top: -20px; + bottom: 0; + width: 40px; + text-align: center; + height: 40px; + line-height: 40px; + cursor: pointer; + border: 1px solid #e5e5e5; + font-size: 14px; + color: #222; + background: #fff; + border-radius: 20px; + @include transition(all .4s); + + &:hover { + background: $theme-color-default; + border-color: $theme-color-default; + color: #fff; + } + } + + .right { + right: 0; + } + + .left { + left: 0; + } +} + +#product-availability { + display: inline-block; + font-weight: 400; + color: #59c379; + text-transform: uppercase; + font-size: 12px; + letter-spacing: 1px; + padding: 0 5px; + + .material-icons { + display: none; + } + + .product-available { + color: $brand-success; + } + + .product-unavailable { + color: $brand-warning; + } + + .product-last-items { + color: $brand-warning; + } +} + +#product-details { + .label { + font-size: $font-size-base; + color: $theme-color-secondary; + font-weight: 400; + } +} + +.product-features { + margin-top: $medium-space; + + >dl.data-sheet { + @include display(flex); + @include flex-wrap(wrap); + @include align-items(flex-start); + + dd.value, + dt.name { + @include flex(1 0 40%); + font-weight: normal; + background: $gray-light; + padding: $small-space; + margin-right: $small-space; + min-height: 40px; + word-break: break-all; + + &:nth-of-type(even) { + background: $gray-lighter; + } + } + + dt.name { + text-transform: capitalize; + } + } +} + +.product-variants { + >.product-variants-item { + margin: 20px 0; + @include display(flex); + @include align-items(center); + + select { + min-height: 40px; + + &:active { + color: #000; + } + } + + ul li { + @include rtl-margin(0, 10px, 0, 0); + + label { + margin: 5px 0; + } + } + + .color, + .input-color { + width: 28px; + height: 28px; + border-radius: 50%; + border-width: 1px; + vertical-align: top; + } + } +} + +.product-customization { + margin: $extra-large-space 0; + + .product-customization-item { + margin: $medium-space 0; + } + + .product-message { + background: #f8f8f8; + border: none; + width: 100%; + height: 50px; + resize: none; + padding: 10px; + + @include placeholder { + color: $gray; + } + } + + .file-input { + width: 100%; + left: 0; + z-index: 1; + cursor: pointer; + height: 42px; + overflow: hidden; + position: absolute; + @include opacity(0); + } + + .custom-file { + position: relative; + background: $gray-light; + width: 100%; + height: 42px; + line-height: 42px; + text-indent: 10px; + display: block; + color: $gray; + margin-top: $medium-space; + + button { + z-index: 0; + position: absolute; + right: 0; + top: 0; + } + } + + small { + color: $gray; + } +} + +.product-pack { + margin-top: $extra-large-space; + + .pack-product-container { + @include display(flex); + @include justify-content(space-around); + + .pack-product-name { + @include flex(0 0 50%); + font-size: 14px; + color: $gray; + } + + .pack-product-quantity { + border-left: $gray-light 2px solid; + padding-left: $small-space; + } + + .pack-product-name, + .pack-product-price, + .pack-product-quantity { + @include display(flex); + @include align-items(center); + } + } +} + +.product-refresh { + margin-top: $medium-space; +} + +.social-sharing { + width: 100%; + margin-bottom: 10px; + + span { + display: none; + } + + ul { + margin-bottom: 0; + } + + li { + cursor: pointer; + display: inline-block; + @include rtl-margin-right(5px); + @include transition(all .2s ease-in); + position: relative; + color: #888; + width: 30px; + + a { + position: absolute; + top: 0; + left: 0; + display: block; + width: 100%; + height: 100%; + white-space: nowrap; + text-indent: 100%; + overflow: hidden; + + &:hover { + color: transparent; + } + } + + &:before { + content: ""; + font-family: $font-icon; + font-size: 14px; + backface-visibility: hidden; + } + + &:hover { + color: #000; + } + + &.facebook { + &:before { + content: "\f09a"; + } + } + + &.twitter { + &:before { + content: "\f099"; + } + } + + &.rss { + &:before { + content: "\f09e"; + } + } + + &.youtube { + &:before { + content: "\f16a"; + } + } + + &.googleplus { + &:before { + content: "\f0d5"; + } + } + + &.pinterest { + &:before { + content: "\f0d2"; + } + } + + &.vimeo { + &:before { + content: "\f27d"; + } + } + + &.instagram { + &:before { + content: "\f16d"; + } + } + } +} + +.products-selection { + margin-bottom: 30px; + padding: 18px 0px; + border-bottom: 1px solid #eee; + + .title { + color: $gray-dark; + } +} + +#blockcart-modal .cart-content { + .btn { + margin-top: 10px; + padding: 10px 20px; + background: #ccc; + color: #fff; + + i { + vertical-align: -3px; + } + + &:hover { + background: #333; + color: #fff; + } + } + + button.btn { + background: #f3f3f3; + color: #444; + + &:hover { + background: #eee; + color: #000; + } + } +} + +/* PS Category Product */ +.category-products, +.product-accessories, +.viewed-products { + background: $white; + padding: 30px 0 0; + clear: both; +} + +.products-section-title { + margin: 10px 0 45px; + text-align: center; + font-weight: 600; + font-size: 24px; + text-transform: uppercase; + + @media (max-width: 991px) { + font-size: 18px; + } + + span { + font-size: 13px; + color: #999; + font-weight: normal; + text-transform: none; + display: block; + padding: 10px 0 0; + letter-spacing: 0; + } +} + +/* Product Tab */ +.more-info-product { + margin-top: 2rem; + background: $white; + padding: 1.25rem 1.875rem; + + .title-info-product { + color: $black; + text-transform: uppercase; + padding: 0.9375rem 0rem; + margin-bottom: 0.9375rem; + font-size: 1rem; + position: relative; + @include rtl-margin-right(2.1875rem); + + &:before { + content: ""; + background: $theme-color-default; + bottom: 0px; + position: absolute; + display: inline-block; + @include size(30px, 2px); + } + } +} + +/* Product Accordion */ +.products-accordion { + margin-top: 2rem; + + .card { + margin: 0px; + border: $main-border; + border-bottom: none; + @include rounded-corners(0px); + + &:last-child { + border-bottom: $main-border; + } + } + + .card-header { + background: none; + padding: $medium-space; + border-bottom: none; + @include rounded-corners(0px); + + h5 { + margin: 0px; + } + + a { + text-transform: uppercase; + position: relative; + width: 100%; + display: inline-block; + + &:after { + content: "\f068"; + font-size: $font-size-h5; + font-family: $font-icon; + position: absolute; + font-weight: normal; + top: 0px; + color: $black; + @include rtl-right(10px); + } + + &.collapsed { + &:after { + content: "\f067"; + } + } + + &:hover { + &:after { + color: $theme-color-default; + } + } + } + } +} + +/* Responsive */ +@include media-breakpoint-down(md) { + .product-cover { + img { + width: 100%; + } + } + + #product-modal .modal-content .modal-body { + @include flex-direction(column); + margin-left: 0; + + img.product-cover-modal { + width: 100%; + } + + .arrows { + display: none; + } + } + + #product-modal .modal-content .modal-body .image-caption { + width: 100%; + } + + #blockcart-modal { + .modal-dialog { + width: calc(100% - 20px); + } + + .modal-body { + padding: 30px; + } + } +} + +@include media-breakpoint-down(sm) { + #blockcart-modal { + .divide-right { + @include rtl-border-right(none); + } + + .modal-body { + padding: 16px; + } + } +} + +.scroll-box-arrows i::selection, +.arrows i::selection { + background: none; + color: inherit; +} + +#product-modal { + .modal-dialog { + max-width: 700px; + margin: 30px auto; + } + + .modal-body { + @include rtl-padding(10px, 170px, 10px, 10px); + background: #fff; + } +} + +.product-infor { + clear: both; + padding-top: 40px; +} + +.leo-compare-wishlist-button { + display: flex; + align-items: center; + + .btn-product { + padding: 0; + width: 40px; + height: 64px; + line-height: 64px; + position: relative; + text-align: center; + border: 0; + background: none !important; + color: #888 !important; + + i { + margin: 0; + font-size: 16px; + vertical-align: middle; + + &.material-icons { + font-size: 20px; + } + } + + span span { + position: absolute; + bottom: 100%; + margin-bottom: 6px; + height: 20px; + line-height: 20px; + padding: 0 8px; + left: 50%; + transform: translateX(-50%); + background: #000; + color: #fff; + letter-spacing: 1px; + text-transform: uppercase; + font-weight: 500; + border-radius: 4px; + transition: all .2s; + white-space: nowrap; + font-size: 10px; + opacity: 0; + visibility: hidden; + + &:before { + content: ""; + border: 5px solid transparent; + border-top-color: #000; + position: absolute; + top: 100%; + left: 50%; + margin-left: -5px; + } + } + + &:hover { + color: #000 !important; + + span span { + opacity: 1; + visibility: visible; + } + } + } +} + +.product-quantity .add { + .btn:not(.add-to-cart) { + position: relative; + background: none; + color: #888; + padding: 0; + @include rtl-margin(0, 10px, 0, 0); + font-weight: 600; + height: 40px; + line-height: 40px; + min-width: 110px; + + &:hover, + &:active, + &:focus { + color: $theme-color-default; + border-color: $theme-color-default; + } + + .cssload-speeding-wheel { + border: 2px solid $theme-color-default; + border-left-color: transparent; + border-right-color: transparent; + } + + &.add-to-cart { + &:hover { + background: #dc5e56; + } + } + + @media (max-width: 1199px) and (min-width: 992px) { + &:not(.add-to-cart) { + font-size: 9px; + } + } + + i { + display: none; + } + } +} + +.product-actions { + .product-variants { + margin: 0 0 30px; + } +} + +.product-add-to-cart { + padding-bottom: 25px; + + .control-label { + @include rtl-margin(16px, 10px, 10px, 0); + @include rtl-float-left(); + } + + .product-quantity { + position: relative; + + .qty { + @include rtl-margin(0, 15px, 10px, 0); + width: 100px; + + .control-label { + display: none; + } + } + } +} + +.ps-hidden-by-js { + display: none; +} + +.product-infor { + #block-reassurance { + background-color: #fff; + box-shadow: none; + border: 1px solid #e5e5e5; + border-top: 2px solid #000; + margin: 50px 0; + + @media (min-width: 768px) { + ul { + @include display(flex); + + li { + border: 0; + @include rtl-border-right(1px solid #e5e5e5); + width: 33.33%; + + .block-reassurance-item { + padding: 12px 20px; + } + + &:last-child { + border: 0; + } + } + } + } + } +} + +.quickview { + h1.h1 { + margin: 0 0 15px; + font-size: 24px; + line-height: 1.5; + letter-spacing: 0; + text-transform: capitalize; + } +} + +#product { + #content-wrapper { + padding-bottom: 20px; + } +} + +.product-additional-info { + .social-sharing { + padding: 10px 0; + margin-bottom: 10px; + } +} + +.page-product { + &>.col-md-6 { + @media (min-width: 1200px) { + &:nth-child(1) { + @include rtl-padding(0, 40px, 0, 15px); + } + + &:nth-child(2) { + @include rtl-padding(0, 15px, 0, 40px); + } + } + } +} + +#leo_product_reviews_block_extra { + line-height: 20px; + color: #5a5050; + margin: 0 0 20px; + display: flex; + align-items: center; + flex-wrap: wrap; + + a { + color: #5a5050; + + &:hover { + color: $theme-color-default; + } + } + + &:after { + content: ""; + display: block; + clear: both; + } + + .reviews_note { + @include rtl-float-left(); + @include rtl-margin(0, 15px, 0, 0); + @include rtl-padding(0, 15px, 0, 0); + position: relative; + height: 20px; + + &:before { + content: ""; + width: 2px; + height: 12px; + background: #5a5050; + position: absolute; + top: 4px; + @include rtl-right(0); + } + + &>span { + display: none; + } + } + + .reviews_advices { + @include rtl-float-left(); + margin: 0; + display: flex; + align-items: center; + flex-wrap: wrap; + + li { + line-height: 20px; + margin: 10px 10px 10px 0; + } + + li.last { + border: 0; + padding: 0; + } + + i { + display: none; + } + } +} + +@media (min-width: 768px) { + .product-tabs.tabs { + border: 1px solid #efefef; + @include display(flex); + + .nav-tabs { + width: 270px; + min-width: 270px; + margin: 0; + @include rtl-float-left(); + @include rtl-text-align-left(); + @include rtl-border-right(1px solid #efefef); + + .nav-item { + display: block; + @include rtl-margin(0, -1px, 0, 0); + border-bottom: 1px solid #efefef; + overflow: hidden; + + .nav-link { + padding: 13px 30px; + border: 0; + margin: 0; + border-radius: 0; + + &:before { + display: none; + } + + &:after { + content: ""; + position: absolute; + top: -1px; + bottom: -1px; + @include rtl-left(-1px); + width: 0; + transition: all .4s; + } + + &.active { + &:after { + background: $theme-color-default; + width: 6px; + } + } + } + } + } + + .tab-content { + padding: 50px; + width: calc(100% - 270px); + } + } +} + + +/* Style for Product Image */ +.product-thumb-images { + display: none; + + .thumb { + max-width: 100%; + cursor: pointer; + border: 0; + + &.selected, + &:hover { + border: 0; + } + } +} + + +.product-detail { + .arrows-product-fake { + display: none; + + .slick-arrow { + width: 40px; + ; + height: 40px; + line-height: 40px; + text-align: center; + color: #666; + z-index: 999; + overflow: hidden; + background: none; + + &:hover { + color: #000; + background: none; + } + + &.slick-next { + right: -20px; + } + + &.slick-prev { + left: -20px; + } + } + } + + // product bottom + &.product-thumbs-bottom { + .product-thumb-images { + padding-left: 20px; + padding-right: 20px; + + .slick-list { + margin-left: -5px; + margin-right: -5px; + + .slick-slide { + padding-right: 5px; + padding-left: 5px; + } + } + + .slick-arrow { + &.slick-next { + right: -5px + } + + &.slick-prev { + left: -5px; + } + } + } + } + + // thumbs left,right + &.product-thumbs-left, + &.product-thumbs-right { + .images-container { + position: relative; + + .product-cover { + .product-flags { + @include rtl-left(10px); + } + } + + .product-thumb-images { + position: absolute; + top: 30px; + z-index: 9; + width: 80px; + } + } + + .product-thumb-images { + .slick-list { + margin-top: -5px; + margin-bottom: -5px; + margin-left: 0px; + margin-right: 0px; + + .slick-slide { + padding-top: 5px; + padding-bottom: 5px; + padding-right: 0px; + padding-left: 0px; + } + } + + .slick-arrow { + left: 0; + right: 0; + width: 100%; + margin: auto; + + &:before { + opacity: 1; + } + + &.slick-prev { + top: -20px; + bottom: auto; + + &:before { + content: "\f106"; + font-family: $font-icon; + } + } + + &.slick-next { + top: auto; + bottom: -60px; + + &:before { + content: "\f107"; + font-family: $font-icon; + } + } + } + } + } + + &.product-thumbs-left { + .images-container { + position: relative; + + .product-cover { + @include rtl-margin(0, 0, 0, 90px); + } + + .product-cover { + .product-flags { + @include rtl-right(10px); + } + } + + .product-thumb-images { + @include rtl-left(0); + } + } + } + + &.product-thumbs-right { + .images-container { + position: relative; + + .product-cover { + @include rtl-margin(0, 90px, 0, 0); + + .layer { + left: 20px; + right: auto; + } + } + + .product-thumb-images { + @include rtl-right(0); + } + } + } + + //no thumbs + &.no-thumbs { + .images-container { + position: relative; + } + + .product-thumb-images { + + .slick-arrows, + .slick-list { + display: none; + } + } + + .arrows-product-fake { + display: block; + } + } + + //gallery + &.product-image-gallery { + .product-cover { + display: none; + } + + .product-thumb-images { + display: block; + @include clearfix(); + margin-left: -$grid-gutter-width-base/2; + margin-right: -$grid-gutter-width-base/2; + + .thumb-container { + display: block; + text-align: center; + padding-left: $grid-gutter-width-base/2; + padding-right: $grid-gutter-width-base/2; + margin-bottom: $grid-gutter-width-base; + @include rtl-float-left(); + + @media (min-width: 576px) { + width: 50%; + } + + @media (max-width: 575px) { + width: 100%; + } + + &:nth-child(2n + 1) { + @media (min-width: 576px) { + clear: both; + } + } + } + } + } +} + +.zoomContainer { + z-index: 9; +} + +#product #content[data-templateview="right"] .product-flags { + right: auto; + @include rtl-left(25px); +} + +.review_details { + p[itemprop="name"] { + color: #333; + + &:first-letter { + text-transform: uppercase; + } + + strong { + display: block; + } + } + + strong { + font-weight: 600; + } +} + +.review-info { + .review_author { + .star_content { + margin: 5px 0; + } + + .review_author_infos { + strong { + color: #333; + text-transform: capitalize; + @include rtl-margin(0, 5px, 0, 0); + } + } + } +} + +.product-detail { + @media (min-width: 768px) { + &>.row { + margin: 0 -20px; + + &>div[class^="col-"] { + padding-left: 20px; + padding-right: 20px; + } + + &>.col-md-12 { + padding-top: 20px; + } + } + } + + @media (min-width: 1200px) { + padding-top: 20px; + + &>.row { + margin: 0 -30px; + + &>div[class^="col-"] { + padding-left: 30px; + padding-right: 30px; + } + + &>.col-md-12 { + padding-top: 20px; + } + } + } +} + +.leo-modal-review { + input.form-control { + height: 40px; + } + + .cssload-speeding-wheel { + border: 2px solid #fff; + border-left-color: transparent; + border-right-color: transparent; + } + + .form-control { + padding: 10px; + } + + sup { + color: #e34747; + } + + .product-info { + width: 40%; + } + + .new_review_form_content { + width: 60%; + } +} + +.product-image-no-thumbs { + @media (min-width: 768px) { + .product-tabs.tabs { + border: 0; + display: block; + + .tab-content { + padding: 50px 0; + border-top: 2px solid #333; + z-index: 2; + position: relative; + } + + .nav-tabs { + width: auto; + min-width: 0; + float: none; + text-align: center; + border: 0; + + .nav-item { + display: inline-block; + vertical-align: top; + margin: 0 2px -3px 2px; + border: 0; + overflow: hidden; + + .nav-link { + border: 2px solid #e5e5e5; + border-bottom: 0; + color: #ccc; + border-radius: 0; + margin: 0; + + @media (max-width: 767px) { + padding: 10px; + font-size: 13px; + } + + @media (max-width: 480px) { + padding: 10px 5px; + font-size: 10px; + } + + &:after { + display: none; + } + + &:hover { + color: #333; + } + + &.active { + border: 2px solid #333; + border-bottom: 0; + color: #333; + background: #fff; + position: relative; + z-index: 3; + } + } + } + } + } + } + + /*end min 768*/ +} + +.product-image-thumbs-left { + .product-tabs.tabs { + border: 0; + display: block; + + .nav-tabs { + width: 100%; + text-align: center; + min-width: 0; + border: 1px solid #eee; + border-width: 1px 0; + + .nav-item { + display: inline-block; + margin: 0; + border: 0; + overflow: visible; + vertical-align: top; + + @media (max-width: 480px) { + display: block; + } + + .nav-link { + padding: 0 30px; + height: 70px; + line-height: 70px; + + @media (max-width: 480px) { + height: 50px; + line-height: 50px; + padding: 0; + } + + border: 0; + margin: 0 0 -1px; + border-radius: 0; + color: #ccc; + background: none; + position: relative; + + &:after { + content: ""; + background: #222; + position: absolute; + bottom: 0px; + left: 30px; + right: 30px; + height: 2px; + transition: all .8s; + transform: scale(0); + top: auto; + width: auto; + } + + &:before { + display: none; + opacity: 0; + } + + &:hover { + color: #222; + background: none; + } + + &.active { + color: #222; + background: none; + + &:after { + transform: scale(1); + opacity: 1; + visibility: visible; + } + } + } + } + } + + .tab-content { + clear: both; + padding: 50px 0; + width: 100%; + } + } +} + +.product-image-no-thumbs-center { + .product-tabs.tabs { + display: block; + border: 0; + float: none; + + #product_reviews_block_tab { + @include rtl-text-align-left(); + } + + .tab-content { + padding: 30px 0; + } + + .nav-tabs { + width: 100%; + border: 0; + border-bottom: 2px solid #000; + text-align: center; + float: none; + + .nav-item { + display: inline-block; + margin: 0; + border: 0; + + .nav-link { + background: none; + + &:after { + width: 0px; + border: 8px solid transparent; + border-bottom-color: #000; + height: 0; + top: auto; + left: 50%; + margin-left: -8px; + background: none; + transition: all 1s; + @include transform(scale(1, 0)); + transform-origin: bottom; + } + + &.active { + &:after { + background: none; + width: 0px; + @include transform(scale(1, 1)); + } + } + } + } + } + } +} + +.product-image-no-thumbs-fullwidth { + .product-cover { + text-align: center; + } + + .offset-lg-2 { + text-align: center; + } + + #leo_product_reviews_block_extra { + display: flex; + justify-content: center; + } + + .product-add-to-cart .control-label { + margin: 0 0 15px 0; + float: none !important; + display: inline-block; + } + + .product-variants>.product-variants-item { + justify-content: center; + } + + .product-add-to-cart .product-quantity .qty { + margin: 0 auto 30px; + } + + .leo-compare-wishlist-button .wishlist, + .leo-compare-wishlist-button .compare { + display: inline-block; + float: none !important; + vertical-align: top; + } + + .product-quantity .add .btn:not(.add-to-cart) { + margin: 0 10px; + } + + .product-tabs.tabs { + display: block; + border: 0; + float: none; + + #product_reviews_block_tab { + @include rtl-text-align-left(); + } + + .tab-content { + padding: 30px 0; + } + + .nav-tabs { + width: 100%; + border: 0; + border-bottom: 2px solid #000; + text-align: center; + float: none; + + .nav-item { + display: inline-block; + margin: 0; + border: 0; + + .nav-link { + &:after { + width: 0px; + border: 8px solid transparent; + border-bottom-color: #000; + height: 0; + top: auto; + left: 50%; + margin-left: -8px; + background: none; + transition: all 1s; + @include transform(scale(1, 0)); + transform-origin: bottom; + } + + &.active { + &:after { + background: none; + width: 0px; + @include transform(scale(1, 1)); + } + } + } + } + } + } +} + +@media (max-width: 400px) { + .product-tabs.tabs .nav-tabs .nav-item { + display: block; + } + + .product-tabs.tabs .nav-tabs .nav-link { + font-size: 14px; + margin: 0 0 10px; + background: #f9f9f9; + color: #888; + padding: 10px 0; + + &:before { + display: block; + bottom: 0; + @include transition(all .4s); + @include transform(scale(0, 1)); + } + + &.active { + color: #000; + + &:before { + @include transform(scale(1, 1)); + } + } + } +} + +.p-cartwapper { + margin: 30px 0; + padding: 15px 0 0; + border: 1px solid #ddd; + border-width: 1px 0; + + &>div { + display: inline-flex; + vertical-align: top; + margin-bottom: 15px; + } +} + +.form-new-review .form-group { + margin-bottom: 5px; +} + +.modal-header { + padding: 15px; + background: #eee; + border: 0; +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/components/quickview.scss b/themes/at_movic/_dev/css/components/quickview.scss new file mode 100644 index 00000000..5417123f --- /dev/null +++ b/themes/at_movic/_dev/css/components/quickview.scss @@ -0,0 +1,73 @@ +@import "theme_variables"; + +.quickview { + .modal-dialog { + width: calc(100% - 40px); + max-width: 64rem; + } + .modal-content { + min-height: 31.25rem; + } + .modal-header { + border: none; + padding: 10px; + background: none; + } + .modal-body { + min-height: 28.88rem; + } + .modal-footer { + border-top: 1px solid rgba($gray,.3); + } + .layer { + display: none; + } + .product-cover img { + width: 95%; + } + .arrows-product-fake{ + display: none; + } + .images-container { + position: relative; + z-index: 1; + text-align: center; + .product-cover{ + @include rtl-padding-right(90px); + } + .product-thumb-images{ + position: absolute; + top: 20px; + right: 0px; + width: 80px; + z-index: 9; + } + } + .product-thumb-images { + position: relative; + .slick-list{ + margin-left: 0px; + margin-right: 0px; + .slick-slide{ + padding-left: 0px; + padding-right: 0px; + } + } + } + .social-sharing { + margin: 0; + } + .product-flags{ + @include rtl-text-align-left(); + li.product-flag span{ + margin: 2px 5px; + padding: 0; + border-radius: 0; + display: inline-block; + padding-bottom: 2px; + border-bottom: 1px solid; + margin-bottom: 5px; + font-weight: 600; + } + } +} diff --git a/themes/at_movic/_dev/css/components/renew-password.scss b/themes/at_movic/_dev/css/components/renew-password.scss new file mode 100644 index 00000000..4dead918 --- /dev/null +++ b/themes/at_movic/_dev/css/components/renew-password.scss @@ -0,0 +1,13 @@ +@import "theme_variables"; + +.renew-password { + margin-left: 10px; + + .email { + padding-bottom: 30px; + } + + [type=submit] { + margin-left: 50px; + } +} diff --git a/themes/at_movic/_dev/css/components/search-widget.scss b/themes/at_movic/_dev/css/components/search-widget.scss new file mode 100644 index 00000000..55422a40 --- /dev/null +++ b/themes/at_movic/_dev/css/components/search-widget.scss @@ -0,0 +1,118 @@ +@import "theme_variables"; + +#search_widget { + &.open{ + a.popup-title i:before{ + content: "\e646"; + } + } + .popup-content{ + padding: 15px; + } + .search-inner{ + position: relative; + input[type="text"]{ + height: 40px; + line-height: 40px; + padding: 0; + min-width: 220px; + border: 0; + outline: none; + border-bottom: 1px solid #ccc; + color: #000; + @include rtl-padding(0,40px,0,0); + &:focus{ + border-color: #000; + &+button[type="submit"]{ + i:before{ + content: "\e628"; + } + } + } + } + button[type="submit"]{ + position: absolute; + top: 0; + right: 0; + border: 0; + padding: 0; + width: 40px; + height: 40px; + background: none; + outline: none; + line-height: 40px; + text-align: center; + cursor: pointer; + i{ + vertical-align: middle; + font-size: 21px; + color: #000; + } + &:hover{ + i:before{ + content: "\e628"; + } + } + } + } +} +#checkout { + #search_widget { + display: none; /* Not ideal solution by allows to reuse same hooks/templates */ + } +} + +#pagenotfound { + .page-content { + #search_widget { + width: 100%; + .popup-content{ + position: relative; + } + } + } +} +#main{ + #search_widget{ + a.popup-title{ + display: none; + } + .popup-content{ + position: static; + display: block !important; + @include opacity(1); + width: 100%; + float: none; + @include box-shadow(none); + z-index: 1; + } + .search-inner{ + position: relative; + } + input[type=text]{ + @include rtl-padding(0,50px,0,0); + height: 40px; + line-height: 1; + outline: 0; + &:focus{ + border-color: $theme-color-default; + } + } + button[type=submit]{ + width: 40px; + height: 40px; + bottom: 0; + top: auto; + @include rtl-right(0); + background: none; + color: #333; + i{ + font-size: 14px; + } + &:hover{ + background: $theme-color-default; + color: #fff; + } + } + } +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/components/sitemap.scss b/themes/at_movic/_dev/css/components/sitemap.scss new file mode 100644 index 00000000..6f986b8b --- /dev/null +++ b/themes/at_movic/_dev/css/components/sitemap.scss @@ -0,0 +1,40 @@ +@import "theme_variables"; + +.sitemap-title { + text-transform: capitalize; +} + +.sitemap { + margin-top: 0.9375rem; + + h2 { + color: #414141; + text-transform: uppercase; + font-size: 1.1rem; + font-weight: 600; + border-bottom: 1px solid #acaaa6; + margin-left: -15px; + width: 100%; + height: 35px; + } + + ul { + margin-left: -15px; + margin-top: 20px; + + &.nested { + margin-left: 20px; + } + + li { + font-size: 0.9rem; + margin-bottom: 1rem; + } + } +} + +@include media-breakpoint-down(xs) { + .sitemap { + margin-top: 0; + } +} diff --git a/themes/at_movic/_dev/css/components/stores.scss b/themes/at_movic/_dev/css/components/stores.scss new file mode 100644 index 00000000..7a8c2f10 --- /dev/null +++ b/themes/at_movic/_dev/css/components/stores.scss @@ -0,0 +1,104 @@ +#stores { + .page-stores { + .store-item { + padding-left: 12px; + padding-right: 12px; + } + width: 85%; + margin: 0 auto; + .store-picture { + img { + max-width: 100%; + } + } + .store-item-container { + @include display(flex); + @include justify-content(space-around); + @include align-items(center); + padding: $large-space 0; + ul { + margin-bottom: 0; + font-size: $font-size-lg; + } + .divide-left { + @include rtl-border-left($gray-light 1px solid); + tr { + height: 25px; + } + td { + padding-left: 6px; + } + th { + text-align: right; + } + } + .store-description{ + font-size: $base-font-size; + } + } + .store-item-footer { + margin-top: 8px; + padding-top: 8px; + @include display(flex); + @include justify-content(space-around); + &.divide-top { + border-top: $gray-light 1px solid; + } + div:first-child { + @include flex(0 0 65%); + } + i.material-icons{ + margin-right: $small-space; + color: $gray; + font-size: $base-font-size; + } + li{ + margin-bottom: $small-space; + } + } + } +} + +/*** Responsive part ***/ +@include media-breakpoint-down(sm) { + #stores { + .page-stores { + width: 100%; + .store-item-container { + padding: 16px 0; + } + } + } +} +@include media-breakpoint-down(xs) { + #stores { + .page-stores { + .store-item-container { + display: block; + .divide-left { + @include rtl-border-left(none); + } + .store-description { + a { + margin-bottom: 8px; + } + address { + margin-bottom: 8px; + } + } + } + .store-item-footer { + display: block; + &.divide-top { + border-top: $gray-light 1px solid; + } + li{ + margin-bottom: $small-space; + } + .card-block { + padding: 12px 12px 0; + } + } + } + } +} diff --git a/themes/at_movic/_dev/css/index.php b/themes/at_movic/_dev/css/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/_dev/css/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/_dev/css/partials/_bootstrap-flex.scss b/themes/at_movic/_dev/css/partials/_bootstrap-flex.scss new file mode 100644 index 00000000..4759f801 --- /dev/null +++ b/themes/at_movic/_dev/css/partials/_bootstrap-flex.scss @@ -0,0 +1,8 @@ +// Bootstrap with Flexbox enabled +// +// Includes all the imports from the standard Bootstrap project, but enables +// the flexbox variable. + +$enable-flex: false; + +@import "bootstrap"; diff --git a/themes/at_movic/_dev/css/partials/_bootstrap-grid.scss b/themes/at_movic/_dev/css/partials/_bootstrap-grid.scss new file mode 100644 index 00000000..919a9db6 --- /dev/null +++ b/themes/at_movic/_dev/css/partials/_bootstrap-grid.scss @@ -0,0 +1,22 @@ +// Bootstrap Grid only +// +// Includes relevant variables and mixins for the regular (non-flexbox) grid +// system, as well as the generated predefined classes (e.g., `.col-4-sm`). + + +// +// Variables +// + +@import "_variables"; + +// +// Grid mixins +// + +@import "../bootstrap/mixins/clearfix"; +@import "../bootstrap/mixins/breakpoints"; +@import "../bootstrap/mixins/grid-framework"; +@import "../bootstrap/mixins/grid"; + +@import "../bootstrap/grid"; diff --git a/themes/at_movic/_dev/css/partials/_bootstrap-reboot.scss b/themes/at_movic/_dev/css/partials/_bootstrap-reboot.scss new file mode 100644 index 00000000..49b3bcb1 --- /dev/null +++ b/themes/at_movic/_dev/css/partials/_bootstrap-reboot.scss @@ -0,0 +1,10 @@ +// Bootstrap Reboot only +// +// Includes only Normalize and our custom Reboot reset. + +@import "_variables"; +@import "../bootstrap/mixins/hover"; +@import "../bootstrap/mixins/tab-focus"; + +@import "../bootstrap/normalize"; +@import "../bootstrap/reboot"; diff --git a/themes/at_movic/_dev/css/partials/_bootstrap.scss b/themes/at_movic/_dev/css/partials/_bootstrap.scss new file mode 100644 index 00000000..4c66d536 --- /dev/null +++ b/themes/at_movic/_dev/css/partials/_bootstrap.scss @@ -0,0 +1,54 @@ +/*! + * Bootstrap v4.0.0-alpha.5 (https://getbootstrap.com) + * Copyright 2011-2016 The Bootstrap Authors + * Copyright 2011-2016 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +// Core variables and mixins +@import "../bootstrap/custom"; +@import "_variables"; +@import "../bootstrap/mixins"; + +// Reset and dependencies +//@import "../bootstrap/normalize"; +@import "../bootstrap/print"; + +// Core CSS +//@import "../bootstrap/reboot"; +@import "../bootstrap/type"; +@import "../bootstrap/images"; +@import "../bootstrap/code"; +//@import "../bootstrap/grid"; +@import "../bootstrap/tables"; +@import "../bootstrap/forms"; +@import "../bootstrap/buttons"; + +// Components +@import "../bootstrap/animation"; +@import "../bootstrap/dropdown"; +@import "../bootstrap/button-group"; +@import "../bootstrap/input-group"; +@import "../bootstrap/custom-forms"; +@import "../bootstrap/nav"; +@import "../bootstrap/navbar"; +@import "../bootstrap/card"; +@import "../bootstrap/breadcrumb"; +@import "../bootstrap/pagination"; +@import "../bootstrap/tags"; +@import "../bootstrap/jumbotron"; +@import "../bootstrap/alert"; +@import "../bootstrap/progress"; +@import "../bootstrap/media"; +@import "../bootstrap/list-group"; +@import "../bootstrap/responsive-embed"; +@import "../bootstrap/close"; + +// Components w/ JavaScript +@import "../bootstrap/modal"; +@import "../bootstrap/tooltip"; +@import "../bootstrap/popover"; +@import "../bootstrap/carousel"; + +// Utility classes +@import "../bootstrap/utilities"; diff --git a/themes/at_movic/_dev/css/partials/_commons.scss b/themes/at_movic/_dev/css/partials/_commons.scss new file mode 100644 index 00000000..4b19d1ad --- /dev/null +++ b/themes/at_movic/_dev/css/partials/_commons.scss @@ -0,0 +1,452 @@ +.rtl { + * { + direction: rtl !important; + } + main { + text-align: right !important; + } +} +body { + direction: ltr; + font-family: $font-family-base; + font-size: 13px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + color: #666; + line-height: 1.55; + //overflow-x: hidden; +} +ul { + list-style: none; + padding: 0; + margin: 0; +} +a{ + &:hover { + color: $link-hover-color; + text-decoration: none; + } + &:focus{ + outline: none; + text-decoration: none; + } +} + +p { +} +.dropdown-item:focus, +.dropdown-item:hover { + background: none; +} +.color, +.custom-checkbox input[type="checkbox"] + span.color { + display: inline-block; + //border: 1px solid rgba(0,0,0,0.2); + cursor: pointer; + background-size: contain; + @include size(16px, 16px); + @include box-shadow(0 0 3px 0 rgba(0, 0, 0, 0.15)); + position: relative; + border: 0; + /* &:before { + content: ""; + top: 0; + left: 0; + right: 0; + bottom: 0; + position: absolute; + background-image: radial-gradient(circle, #ffffff, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)); + } */ + &.active, + &:hover { + border: 2px solid $gray-darker; + } +} +.facet-label { + &.active, + &:hover { + .custom-checkbox span.color { + border: 2px solid $gray-darker; + } + } +} +.h1, +.h2, +.h3 { + text-transform: uppercase; + color: #000; +} +.h4 { + font-weight: $headings-font-weight; + color: #000; +} +.btn-primary, +.btn-secondary { + text-transform: uppercase; + font-weight: normal; + padding: 10px 15px; + font-size: 12px; + letter-spacing: 1px; + line-height: 18px; + @include border-radius(0); + @include box-shadow(none); + .material-icons { + margin-right: $small-space; + } +} +.btn-tertiary { + @extend .btn-secondary; + text-transform: uppercase; + color: $gray; + padding: 8px; + margin: 4px 0; + font-weight: 400; + font-size: $base-font-size; + @include box-shadow(none); + .material-icons { + font-size: 14px; + vertical-align: -2px; + } +} +label ,.label { + color: $gray-darker; + @include rtl-text-align-right(); + font-size: $base-font-size; +} +small.label, small.value { + font-size: $font-size-sm; +} +.form-control-label { + padding-top: 10px; +} +.form-control { + background: #fff; + color: $gray; + border: none; + padding: 8px 16px; +} + +textarea.form-control { + height: 145px; +} +input.form-control{ + border: 1px solid #e5e5e5; + box-shadow: none; + height: 40px; +} +.input-group { + &.focus { + outline: $main-border; + } + .form-control:focus { + outline: none; + } + .input-group-btn > .btn { + border: 0; + color: #ffffff; + font-size: 11px; + font-weight: normal; + padding: 9px 15px; + text-transform: uppercase; + height: 40px; + @include rtl-margin-left(0px); + @include box-shadow(none); + &:hover, + &:focus, + &:active{ + background: $theme-color-default; + color: #fff; + } + } +} +.form-control-select { + height: 42px; + -moz-appearance: none; + -webkit-appearance: none; + background: $gray-light url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAQAAAD9CzEMAAAAPklEQVR4Ae3TwREAEBQD0V/6do4SXPZg7EsBhsQ8IEmSMOsiuEfg3gL3oXC7wK0bd1G4o8X9F4yIkyQfSrIByQBjp7QuND8AAAAASUVORK5CYII="); + background-repeat: no-repeat; + background-attachment: scroll; + background-position: right center; + background-position-x: 99%; + background-size: 20px 20px; + @include rtl-padding-right(32px); + &::-ms-expand { + display: none; + } +} +.form-control-valign { + //padding-top: 8px; +} +.form-control-comment { + font-size: $base-font-size; + padding-top: 8px; + color: $gray-dark; + display: inline-block; +} +.form-control-submit { + &.disabled { + background: $brand-info; + color: white; + } +} +.form-group { + &.has-error { + input, + select { + outline: 3px solid $brand-danger; + } + .help-block { + color: $brand-danger; + } + } +} +.group-span-filestyle { + label { + margin: 0; + } + .btn-default { + background: $theme-color-default; + color: white; + text-transform: uppercase; + font-size: $base-font-size; + padding: 8px 16px; + @include rounded-corners(0px); + } +} +.bootstrap-touchspin { + input { + &:focus { + outline: none; + } + &.form-control { + border: $input-btn-border-width solid $input-border-color; + } + } + .btn-touchspin { + @extend .btn-default; + border: $input-btn-border-width solid $input-border-color; + height: 21px; + &:hover { + background-color: $gray-light; + color: #000; + } + } + .input-group-btn-vertical { + color: $gray-darker; + .bootstrap-touchspin-up { + @include rounded-corners(0px); + } + .bootstrap-touchspin-down { + @include rounded-corners(0px); + } + .touchspin-up { + &:after { + content: "\E5CE"; + } + } + .touchspin-down { + &:after { + content: "\E5CF"; + } + } + i { + top: 1px; + left: 3px; + font-size: 15px; + } + } +} +.custom-radio { + display: inline-block; + position: relative; + vertical-align: middle; + cursor: pointer; + border: #ccc 1px solid; + background: $white; + @include size(16px,16px); + @include rounded-corners(50%); + @include rtl-margin-right(10px); + input[type="radio"] { + cursor: pointer; + @include opacity(0); + } + input[type="radio"]:checked + span { + display: block; + background-color: $theme-color-default; + position: absolute; + left: 2px; + top: 2px; + @include size(10px,10px); + @include rounded-corners(50%); + } +} +.custom-checkbox { + position: relative; + input[type="checkbox"], + input[type="radio"] { + margin-top: 0px; + cursor: pointer; + position: absolute; + top: 0px; + @include opacity(0); + @include rtl-left(0); + width: 16px; + height: 16px; + z-index: 1; + + span { + @include rtl-margin-right(10px); + display: inline-block; + vertical-align: -3px; + cursor: pointer; + border: 1px #666 solid; + @include size(16px,16px); + .checkbox-checked { + display: none; + font-size: 14px; + } + } + &:checked + span { + .checkbox-checked { + display: block; + } + } + } + input[type="radio"] + span{ + @include rounded-corners(50%); + } + label { + @include rtl-text-align-left(); + } +} +.text-muted { + font-size: $base-font-size; +} +.done { + color: $brand-success; + display: inline-block; + padding: 0 13px; + @include rtl-margin-right(25px); +} +.thumb-mask { + > .mask { + position: relative; + overflow: hidden; + border: $gray-light 1px solid; + margin: $small-space 0; + @include size(55px,55px); + img { + @include size(55px,55px); + } + } +} +.definition-list { + dl { + &:after { + content: ""; + display: block; + clear: both; + } + dt { + font-weight: normal; + } + dd, + dt { + background: $gray-light; + padding: 10px; + margin: 5px 0.5%; + width: 48%; + @include rtl-float-left(); + &:nth-of-type(even) { + background: $gray-lighter; + } + } + } +} +.help-block { + margin-top: $small-space; +} +.btn.disabled, +.btn.disabled:hover { + background: $gray; +} +.alert-warning { + .material-icons { + color: $warning; + font-size: 32px; + @include rtl-margin-right($small-space); + padding-top: $extra-small-space; + } + .alert-text { + font-size: 15px; + padding-top: $small-space; + } + .alert-link { + border-width: 2px; + @include rtl-margin-left($small-space); + padding: $extra-small-space $medium-space; + font-weight: 400; + font-size: $font-size-sm; + color: $btn-tertiary-color; + @include rounded-corners(2px); + } + ul li:last-child .alert-link { + color: white; + } + .warning-buttons { + margin-top: $extra-small-space; + } +} +.btn-warning { + @include transition(all .4s ease-in-out); +} +.btn-tertiary-outline { + color: $btn-tertiary-color; + background-image: none; + background-color: transparent; + border-color: $btn-tertiary-color; + border: 0.15rem solid $btn-tertiary-color; + @include transition(all .4s ease-in-out); + &:hover { + border-color: $btn-tertiary-hover; + color: $btn-tertiary-hover; + } +} +.alert { + font-size: $font-size-sm; +} +/* Add new grid */ +.col-sp{ + @if $enable-flex { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; + } +} +@media (max-width: 480px) { + .hidden-sp { + display: none !important; + } + .col-sp-1 {@include make-col(1);} + .col-sp-2 {@include make-col(2);} + .col-sp-3 {@include make-col(3);} + .col-sp-4 {@include make-col(4);} + .col-sp-5 {@include make-col(5);} + .col-sp-6 {@include make-col(6);} + .col-sp-7 {@include make-col(7);} + .col-sp-8 {@include make-col(8);} + .col-sp-9 {@include make-col(9);} + .col-sp-10 {@include make-col(10);} + .col-sp-11 {@include make-col(11);} + .col-sp-12 {@include make-col(12);} + .col-sp-2-4 {@include make-col(2.4);} + .col-sp-4-8 {@include make-col(4.8);} + .col-sp-7-2 {@include make-col(7.2);} + .col-sp-9-6 {@include make-col(9.6);} +} +/*** Responsive part ***/ +@include media-breakpoint-down(md) { + .form-control-label, + .control-label,label, .label { + @include rtl-text-align-left(); + } +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/partials/_font-awesome.min.scss b/themes/at_movic/_dev/css/partials/_font-awesome.min.scss new file mode 100644 index 00000000..eec18480 --- /dev/null +++ b/themes/at_movic/_dev/css/partials/_font-awesome.min.scss @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-600:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/themes/at_movic/_dev/css/partials/_fonts.scss b/themes/at_movic/_dev/css/partials/_fonts.scss new file mode 100644 index 00000000..eb91d510 --- /dev/null +++ b/themes/at_movic/_dev/css/partials/_fonts.scss @@ -0,0 +1,37 @@ +@font-face { + font-family: 'Material Icons'; + font-style: normal; + font-weight: 400; + src: local('Material Icons'), + local('MaterialIcons-Regular'), + url(../fonts/MaterialIcons-Regular.woff2) format('woff2'), + url(../fonts/MaterialIcons-Regular.woff) format('woff'); +} + +.material-icons { + font-family: 'Material Icons'; + font-weight: normal; + font-style: normal; + font-size: 16px; /* Preferred icon size */ + display: inline-block; + vertical-align: middle; + width: 1em; + height: 1em; + line-height: 1; + text-transform: none; + letter-spacing: normal; + word-wrap: normal; + white-space: nowrap; + direction: ltr; + + /* Support for all WebKit browsers. */ + -webkit-font-smoothing: antialiased; + /* Support for Safari and Chrome. */ + text-rendering: optimizeLegibility; + + /* Support for Firefox. */ + -moz-osx-font-smoothing: grayscale; + + /* Support for IE. */ + font-feature-settings: 'liga'; +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/partials/_jquery.bootstrap-touchspin.min.scss b/themes/at_movic/_dev/css/partials/_jquery.bootstrap-touchspin.min.scss new file mode 100644 index 00000000..d99911ed --- /dev/null +++ b/themes/at_movic/_dev/css/partials/_jquery.bootstrap-touchspin.min.scss @@ -0,0 +1,10 @@ +/* + * Bootstrap TouchSpin - v3.1.1 + * A mobile and touch friendly input spinner component for Bootstrap 3. + * http://www.virtuosoft.eu/code/bootstrap-touchspin/ + * + * Made by István Ujj-Mészáros + * Under Apache License v2.0 License + */ + +.bootstrap-touchspin .input-group-btn-vertical{position:relative;white-space:nowrap;width:1%;vertical-align:middle;display:table-cell}.bootstrap-touchspin .input-group-btn-vertical>.btn{display:block;float:none;width:100%;max-width:100%;padding:8px 10px;margin-left:-1px;position:relative}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-radius:0;border-top-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{margin-top:-2px;border-radius:0;border-bottom-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical i{position:absolute;top:3px;left:5px;font-size:9px;font-weight:400} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/partials/_mixins.scss b/themes/at_movic/_dev/css/partials/_mixins.scss new file mode 100644 index 00000000..e28bab08 --- /dev/null +++ b/themes/at_movic/_dev/css/partials/_mixins.scss @@ -0,0 +1,511 @@ +@mixin search-box { + form { + input[type=text] { + border: 0; + border-bottom: 2px solid #333; + padding: 10px; + max-width: 600px; + width: 100%; + background: white; + color: $gray-darker; + font-weight: 400; + @include rounded-corners(0); + @include placeholder { + color: rgba($gray-darker, 0.5); + } + } + button[type=submit] { + position: absolute; + background: #333b48; + border: none; + bottom: 3px; + color: white; + padding: 0px; + font-size: 19px; + @include size(39px,39px); + @include rtl-right(3px); + @include rounded-corners(2px); + &:hover { + background: $brand-primary; + } + } + } +} + +/*************************************************** + Mixins Themes +/***************************************************/ +/* Mixin Normal*/ +@mixin rounded-corners($radius) { + -webkit-border-radius: $radius; + -moz-border-radius: $radius; + -ms-border-radius: $radius; + -o-border-radius: $radius; + border-radius: $radius; +} + +@mixin box-shadow($shadow) { + -moz-box-shadow: $shadow; + -webkit-box-shadow: $shadow;// iOS <4.3 & Android <4.1 + -o-box-shadow: $shadow; + -ms-box-shadow: $shadow; + box-shadow: $shadow; +} + +@mixin opacity($opacity) { + opacity: $opacity; + // IE8 filter + $opacity-ie: ($opacity * 100); + filter: #{alpha(opacity=$opacity-ie)}; +} + +@mixin ellipsis-text($value){ + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-line-clamp: $value; + -webkit-box-orient: vertical; +} +@mixin box-sizing($boxmodel) { + -webkit-box-sizing: $boxmodel; + -moz-box-sizing: $boxmodel; + box-sizing: $boxmodel; +} +/* Mixin Clear */ +@mixin clearboxstyle(){ + background: none; + border:none; +} + +@mixin clearfloat(){ + float: none; + width: 100%; +} + +/* Mixin Border */ +@mixin border-exclude-top($border-deep, $border-type, $border-color ){ + border-bottom: $border-deep $border-type $border-color; + border-left: $border-deep $border-type $border-color; + border-right: $border-deep $border-type $border-color; +} + +@mixin border-exclude-bottom($border-deep, $border-type, $border-color ){ + border-top: $border-deep $border-type $border-color; + border-left: $border-deep $border-type $border-color; + border-right: $border-deep $border-type $border-color; +} + +@mixin border-exclude-left($border-deep, $border-type, $border-color ){ + border-top: $border-deep $border-type $border-color; + border-bottom: $border-deep $border-type $border-color; + border-right: $border-deep $border-type $border-color; +} + +@mixin border-exclude-right($border-deep, $border-type, $border-color ){ + border-top: $border-deep $border-type $border-color; + border-bottom: $border-deep $border-type $border-color; + border-left: $border-deep $border-type $border-color; +} + +// Transitions + +@mixin transition($transition...) { + -webkit-transition: $transition; + -o-transition: $transition; + transition: $transition; +} + +// Transformations +@mixin rotate($degrees) { + -webkit-transform: rotate($degrees); + -ms-transform: rotate($degrees); // IE9 only + transform: rotate($degrees); +} +@mixin scale($scale-args...) { + -webkit-transform: scale($scale-args); + -ms-transform: scale($scale-args); // IE9 only + transform: scale($scale-args); +} +@mixin translate($x, $y) { + -webkit-transform: translate($x, $y); + -ms-transform: translate($x, $y); // IE9 only + transform: translate($x, $y); +} +@mixin skew($x, $y) { + -webkit-transform: skew($x, $y); + -ms-transform: skewX($x) skewY($y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+ + transform: skew($x, $y); +} +@mixin translate3d($x, $y, $z) { + -webkit-transform: translate3d($x, $y, $z); + transform: translate3d($x, $y, $z); +} + +@mixin rotateX($degrees) { + -webkit-transform: rotateX($degrees); + -ms-transform: rotateX($degrees); // IE9 only + transform: rotateX($degrees); +} +@mixin rotateY($degrees) { + -webkit-transform: rotateY($degrees); + -ms-transform: rotateY($degrees); // IE9 only + transform: rotateY($degrees); +} + +/*background RGBA +============================================*/ +@mixin rgba($colour, $alpha) +{ + $alphaColour: hsla(hue($colour), saturation($colour), lightness($colour), $alpha); + $ieAlphaColour: argb($alphaColour); + background-color: $colour; + background-color: $alphaColour; + zoom: 1; + background-color: transparent\9; +} +@mixin border-rgba($colour, $alpha) +{ + $alphaColour: hsla(hue($colour), saturation($colour), lightness($colour), $alpha); + $ieAlphaColour: argb($alphaColour); + border-color: $colour; + border-color: $alphaColour; + zoom: 1; + border-color: transparent\9; +} +@mixin background-hover { + color: $text-color; + background: rgba(228, 50, 40, 0.3); +} + +// Background Gradient: Left to Right +@mixin bg-gradient-l2r($start-colour, $end-colour) { + background-color: $start-colour; + background-image: -webkit-gradient(linear, left top, right top, from($start-colour), to($end-colour)); + background-image: -webkit-linear-gradient(left, $start-colour, $end-colour); + background-image: -moz-linear-gradient(left, $start-colour, $end-colour); + background-image: -ms-linear-gradient(left, $start-colour, $end-colour); + background-image: -o-linear-gradient(left, $start-colour, $end-colour); + background-image: linear-gradient(left, $start-colour, $end-colour); + filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr='#{$start-colour}', end-colourStr='#{$end-colour}', gradientType='1'); +} +/// button variant outline +@mixin button-variant-outline($color, $background, $border, $colorhover, $bghover, $borderhover ) { + color: $color; + background-color: $background; + border-color: $border; + + &:hover, + &:focus, + &:active, + &.active { + color: $colorhover; + background-color: $bghover; + border-color: $borderhover ; + } + .open & { &.dropdown-toggle { + color: $colorhover; + background-color: $bghover; + border-color: $borderhover ; + } } + &:active, + &.active { + background-image: none; + } + .open & { &.dropdown-toggle { + background-image: none; + } } + &.disabled, + &[disabled], + fieldset[disabled] & { + &, + &:hover, + &:focus, + &:active, + &.active { + background-color: $background; + border-color: $border; + } + } + .badge { + color: $background; + background-color: $color; + } +} + + +// Block +// ------------------------- +@mixin block-variant($border, $heading-text-color, $heading-bg-color, $heading-border) { + border-color: $border; + + & .#{$block-heading-selector} { + color: $heading-text-color; + a{ + color: $heading-text-color; + } + background-color: $heading-bg-color; + border-color: $heading-border; + + .#{$block-prefix}-collapse .#{$block-content-selector} { + border-top-color: $border; + } + } + & > .#{$block-prefix}-footer { + + .#{$block-prefix}-collapse .#{$block-prefix}-body { + border-bottom-color: $border; + } + } +} +@mixin container-layout-variant($color, $background){ + background: $background; + color: $color; +} + +/*************************************************** + Mixins RTL Themes +/***************************************************/ + +// BASIC CONVERTER (ignore these) + +@mixin rtl-base-simple ($property, $direction) { + #{$property}:$direction; + .rtl & { + @if $direction == $rtl-right { + #{$property}:$rtl-left; + } + @else { + #{$property}:$rtl-right; + } + } +} +@mixin rtl-base-inherit ($property, $direction, $value, $inherit : inherit) { + #{$property}-#{$direction}: $value; + .rtl & { + @if $direction == $rtl-right { + #{$property}-#{$rtl-left}: $value; + } + @else { + #{$property}-#{$rtl-right}: $value; + } + #{$property}-#{$direction}: $inherit; + } +} + +@mixin rtl-base-toprightbottomleft ($property, $t, $r, $b, $l) { + #{$property}: $t $r $b $l; + .rtl & { + #{$property}: $t $l $b $r; + } +} + +// BODY STYLES + +@mixin rtl-direction ($forBody : true) { + direction: ltr; + @if $forBody { + &.rtl { + direction: rtl; + } + } + @else { + .rtl & { + direction: rtl; + } + } +} +@mixin rtl-font-family ($ltr, $rtl, $forBody : false) { + font-family: $ltr; + @if $forBody { + &.rtl, &.non-latin { + font-family:$rtl; + } + } + @else { + .rtl &, .non-latin & { + font-family:$rtl; + } + } +} + +// MARGIN + +@mixin rtl-margin ($t, $r, $b, $l) { + @include rtl-base-toprightbottomleft(margin,$t, $r, $b, $l); +} +@mixin rtl-margin-left ($value) { + @include rtl-base-inherit(margin,$rtl-left,$value); +} +@mixin rtl-margin-right ($value) { + @include rtl-base-inherit(margin,$rtl-right,$value); +} + +// PADDING + +@mixin rtl-padding ($t, $r, $b, $l) { + @include rtl-base-toprightbottomleft(padding,$t, $r, $b, $l); +} +@mixin rtl-padding-left ($value) { + @include rtl-base-inherit(padding,$rtl-left,$value); +} +@mixin rtl-padding-right ($value) { + @include rtl-base-inherit(padding,$rtl-right,$value); +} + +// BORDER + +@mixin rtl-border-width ($t,$r,$b,$l) { + @include rtl-base-toprightbottomleft(border-width,$t,$r,$b,$l); +} +@mixin rtl-border-style ($t,$r,$b,$l) { + @include rtl-base-toprightbottomleft(border-style,$t,$r,$b,$l); +} +@mixin rtl-border-left ($value) { + @include rtl-base-inherit(border,$rtl-left,$value); +} +@mixin rtl-border-right ($value) { + @include rtl-base-inherit(border,$rtl-right,$value); +} + +// POSITION + +@mixin rtl-left ($value) { + #{$rtl-left}: $value; + .rtl & { + #{$rtl-right}: $value; + #{$rtl-left}: auto; + } +} +@mixin rtl-right ($value) { + #{$rtl-right}: $value; + .rtl & { + #{$rtl-left}: $value; + #{$rtl-right}: auto; + } +} + +// TEXT-ALIGN + +@mixin rtl-text-align-left () { + @include rtl-base-simple(text-align, $rtl-left); +} +@mixin rtl-text-align-right () { + @include rtl-base-simple(text-align, $rtl-right); +} + +// FLOAT + +@mixin rtl-float-left () { + @include rtl-base-simple(float, $rtl-left); +} +@mixin rtl-float-right () { + @include rtl-base-simple(float, $rtl-right); +} + +// BACKGROUND-POSITION + +@mixin rtl-background-position-left ($vertical) { + background-position:$rtl-left $vertical !important; + .rtl & { + background-position:$rtl-right $vertical !important; + } +} +@mixin rtl-background-position-right ($vertical) { + background-position:$rtl-right $vertical; + .rtl & { + background-position:$rtl-left $vertical; + } +} + +@mixin rtl-background-position-percent ($vertical, $horPercent) { + background-position:$horPercent $vertical; + .rtl & { + background-position:100% - $horPercent $vertical; + } +} + +// TEXT-SHADOW & BOX-SHADOW + +@mixin rtl-text-shadow ($x, $rest) { + text-shadow: $x $rest; + .rtl & { + text-shadow: -1 * $x $rest; + } +} +@mixin rtl-box-shadow ($x, $rest) { + -moz-box-shadow: $x $rest; + -webkit-box-shadow: $x $rest; + box-shadow: $x $rest; + .rtl & { + -moz-box-shadow: -1 * $x $rest; + -webkit-box-shadow: -1 * $x $rest; + box-shadow: -1 * $x $rest; + } +} + +// BORDER-RADIUS + +@mixin rtl-border-radius($tl, $tr, $br, $bl) { + -moz-border-radius: $tl $tr $br $bl; + -webkit-border-radius: $tl $tr $br $bl; + border-radius: $tl $tr $br $bl; + .rtl & { + -moz-border-radius: $tr $tl $bl $br; + -webkit-border-radius: $tr $tl $bl $br; + border-radius: $tr $tl $bl $br; + } +} + +@mixin rtl-border-radius-topright ($value) { + -moz-border-top-#{$rtl-right}-radius: $value; + -webkit-border-top-#{$rtl-right}-radius: $value; + border-top-#{$rtl-right}-radius: $value; + .rtl & { + -moz-border-top-#{$rtl-left}-radius: $value; + -webkit-border-top-#{$rtl-left}-radius: $value; + border-top-#{$rtl-left}-radius: $value; + -moz-border-top-#{$rtl-right}-radius: inherit; + -webkit-border-top-#{$rtl-right}-radius: inherit; + border-top-#{$rtl-right}-radius: inherit; + } +} + +@mixin rtl-border-radius-bottomright ($value) { + -moz-border-bottom-#{$rtl-right}-radius: $value; + -webkit-border-bottom-#{$rtl-right}-radius: $value; + border-bottom-#{$rtl-right}-radius: $value; + .rtl & { + -moz-border-bottom-#{$rtl-left}-radius: $value; + -webkit-border-bottom-#{$rtl-left}-radius: $value; + border-bottom-#{$rtl-left}-radius: $value; + -moz-border-bottom-#{$rtl-right}-radius: inherit; + -webkit-border-bottom-#{$rtl-right}-radius: inherit; + border-bottom-#{$rtl-right}-radius: inherit; + } +} + +@mixin rtl-border-radius-topleft ($value) { + -moz-border-top-#{$rtl-left}-radius: $value; + -webkit-border-top-#{$rtl-left}-radius: $value; + border-top-#{$rtl-left}-radius: $value; + .rtl & { + -moz-border-top-#{$rtl-right}-radius: $value; + -webkit-border-top-#{$rtl-right}-radius: $value; + border-top-#{$rtl-right}-radius: $value; + -moz-border-top-#{$rtl-left}-radius: inherit; + -webkit-border-top-#{$rtl-left}-radius: inherit; + border-top-#{$rtl-left}-radius: inherit; + } +} + +@mixin rtl-border-radius-bottomleft ($value) { + -moz-border-bottom-#{$rtl-left}-radius: $value; + -webkit-border-bottom-#{$rtl-left}-radius: $value; + border-bottom-#{$rtl-left}-radius: $value; + .rtl & { + -moz-border-bottom-#{$rtl-right}-radius: $value; + -webkit-border-bottom-#{$rtl-right}-radius: $value; + border-bottom-#{$rtl-right}-radius: $value; + -moz-border-bottom-#{$rtl-left}-radius: inherit; + -webkit-border-bottom-#{$rtl-left}-radius: inherit; + border-bottom-#{$rtl-left}-radius: inherit; + } +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/partials/_poppins.scss b/themes/at_movic/_dev/css/partials/_poppins.scss new file mode 100644 index 00000000..5c9086b6 --- /dev/null +++ b/themes/at_movic/_dev/css/partials/_poppins.scss @@ -0,0 +1,43 @@ +/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on July 9, 2019 */ + + +@font-face { + font-family: 'poppins'; + src: url('../fonts/poppins-bold-webfont.woff2') format('woff2'), + url('../fonts/poppins-bold-webfont.woff') format('woff'); + font-weight: 700; + font-style: normal; + +} +@font-face { + font-family: 'poppins'; + src: url('../fonts/poppins-light-webfont.woff2') format('woff2'), + url('../fonts/poppins-light-webfont.woff') format('woff'); + font-weight: 300; + font-style: normal; + +} +@font-face { + font-family: 'poppins'; + src: url('../fonts/poppins-medium-webfont.woff2') format('woff2'), + url('../fonts/poppins-medium-webfont.woff') format('woff'); + font-weight: 500; + font-style: normal; + +} +@font-face { + font-family: 'poppins'; + src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'), + url('../fonts/poppins-regular-webfont.woff') format('woff'); + font-weight: 400; + font-style: normal; + +} +@font-face { + font-family: 'poppins'; + src: url('../fonts/poppins-semibold-webfont.woff2') format('woff2'), + url('../fonts/poppins-semibold-webfont.woff') format('woff'); + font-weight: 600; + font-style: normal; + +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/partials/_themify-icons.scss b/themes/at_movic/_dev/css/partials/_themify-icons.scss new file mode 100644 index 00000000..714021fc --- /dev/null +++ b/themes/at_movic/_dev/css/partials/_themify-icons.scss @@ -0,0 +1,1077 @@ +@font-face { + font-family: 'themify'; + src: url('../fonts/themify.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +[class^="ti-"], [class*=" ti-"] { + font-family: 'themify'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ti-wand:before { + content: "\e600"; +} +.ti-volume:before { + content: "\e601"; +} +.ti-user:before { + content: "\e602"; +} +.ti-unlock:before { + content: "\e603"; +} +.ti-unlink:before { + content: "\e604"; +} +.ti-trash:before { + content: "\e605"; +} +.ti-thought:before { + content: "\e606"; +} +.ti-target:before { + content: "\e607"; +} +.ti-tag:before { + content: "\e608"; +} +.ti-tablet:before { + content: "\e609"; +} +.ti-star:before { + content: "\e60a"; +} +.ti-spray:before { + content: "\e60b"; +} +.ti-signal:before { + content: "\e60c"; +} +.ti-shopping-cart:before { + content: "\e60d"; +} +.ti-shopping-cart-full:before { + content: "\e60e"; +} +.ti-settings:before { + content: "\e60f"; +} +.ti-search:before { + content: "\e610"; +} +.ti-zoom-in:before { + content: "\e611"; +} +.ti-zoom-out:before { + content: "\e612"; +} +.ti-cut:before { + content: "\e613"; +} +.ti-ruler:before { + content: "\e614"; +} +.ti-ruler-pencil:before { + content: "\e615"; +} +.ti-ruler-alt:before { + content: "\e616"; +} +.ti-bookmark:before { + content: "\e617"; +} +.ti-bookmark-alt:before { + content: "\e618"; +} +.ti-reload:before { + content: "\e619"; +} +.ti-plus:before { + content: "\e61a"; +} +.ti-pin:before { + content: "\e61b"; +} +.ti-pencil:before { + content: "\e61c"; +} +.ti-pencil-alt:before { + content: "\e61d"; +} +.ti-paint-roller:before { + content: "\e61e"; +} +.ti-paint-bucket:before { + content: "\e61f"; +} +.ti-na:before { + content: "\e620"; +} +.ti-mobile:before { + content: "\e621"; +} +.ti-minus:before { + content: "\e622"; +} +.ti-medall:before { + content: "\e623"; +} +.ti-medall-alt:before { + content: "\e624"; +} +.ti-marker:before { + content: "\e625"; +} +.ti-marker-alt:before { + content: "\e626"; +} +.ti-arrow-up:before { + content: "\e627"; +} +.ti-arrow-right:before { + content: "\e628"; +} +.ti-arrow-left:before { + content: "\e629"; +} +.ti-arrow-down:before { + content: "\e62a"; +} +.ti-lock:before { + content: "\e62b"; +} +.ti-location-arrow:before { + content: "\e62c"; +} +.ti-link:before { + content: "\e62d"; +} +.ti-layout:before { + content: "\e62e"; +} +.ti-layers:before { + content: "\e62f"; +} +.ti-layers-alt:before { + content: "\e630"; +} +.ti-key:before { + content: "\e631"; +} +.ti-import:before { + content: "\e632"; +} +.ti-image:before { + content: "\e633"; +} +.ti-heart:before { + content: "\e634"; +} +.ti-heart-broken:before { + content: "\e635"; +} +.ti-hand-stop:before { + content: "\e636"; +} +.ti-hand-open:before { + content: "\e637"; +} +.ti-hand-drag:before { + content: "\e638"; +} +.ti-folder:before { + content: "\e639"; +} +.ti-flag:before { + content: "\e63a"; +} +.ti-flag-alt:before { + content: "\e63b"; +} +.ti-flag-alt-2:before { + content: "\e63c"; +} +.ti-eye:before { + content: "\e63d"; +} +.ti-export:before { + content: "\e63e"; +} +.ti-exchange-vertical:before { + content: "\e63f"; +} +.ti-desktop:before { + content: "\e640"; +} +.ti-cup:before { + content: "\e641"; +} +.ti-crown:before { + content: "\e642"; +} +.ti-comments:before { + content: "\e643"; +} +.ti-comment:before { + content: "\e644"; +} +.ti-comment-alt:before { + content: "\e645"; +} +.ti-close:before { + content: "\e646"; +} +.ti-clip:before { + content: "\e647"; +} +.ti-angle-up:before { + content: "\e648"; +} +.ti-angle-right:before { + content: "\e649"; +} +.ti-angle-left:before { + content: "\e64a"; +} +.ti-angle-down:before { + content: "\e64b"; +} +.ti-check:before { + content: "\e64c"; +} +.ti-check-box:before { + content: "\e64d"; +} +.ti-camera:before { + content: "\e64e"; +} +.ti-announcement:before { + content: "\e64f"; +} +.ti-brush:before { + content: "\e650"; +} +.ti-briefcase:before { + content: "\e651"; +} +.ti-bolt:before { + content: "\e652"; +} +.ti-bolt-alt:before { + content: "\e653"; +} +.ti-blackboard:before { + content: "\e654"; +} +.ti-bag:before { + content: "\e655"; +} +.ti-move:before { + content: "\e656"; +} +.ti-arrows-vertical:before { + content: "\e657"; +} +.ti-arrows-horizontal:before { + content: "\e658"; +} +.ti-fullscreen:before { + content: "\e659"; +} +.ti-arrow-top-right:before { + content: "\e65a"; +} +.ti-arrow-top-left:before { + content: "\e65b"; +} +.ti-arrow-circle-up:before { + content: "\e65c"; +} +.ti-arrow-circle-right:before { + content: "\e65d"; +} +.ti-arrow-circle-left:before { + content: "\e65e"; +} +.ti-arrow-circle-down:before { + content: "\e65f"; +} +.ti-angle-double-up:before { + content: "\e660"; +} +.ti-angle-double-right:before { + content: "\e661"; +} +.ti-angle-double-left:before { + content: "\e662"; +} +.ti-angle-double-down:before { + content: "\e663"; +} +.ti-zip:before { + content: "\e664"; +} +.ti-world:before { + content: "\e665"; +} +.ti-wheelchair:before { + content: "\e666"; +} +.ti-view-list:before { + content: "\e667"; +} +.ti-view-list-alt:before { + content: "\e668"; +} +.ti-view-grid:before { + content: "\e669"; +} +.ti-uppercase:before { + content: "\e66a"; +} +.ti-upload:before { + content: "\e66b"; +} +.ti-underline:before { + content: "\e66c"; +} +.ti-truck:before { + content: "\e66d"; +} +.ti-timer:before { + content: "\e66e"; +} +.ti-ticket:before { + content: "\e66f"; +} +.ti-thumb-up:before { + content: "\e670"; +} +.ti-thumb-down:before { + content: "\e671"; +} +.ti-text:before { + content: "\e672"; +} +.ti-stats-up:before { + content: "\e673"; +} +.ti-stats-down:before { + content: "\e674"; +} +.ti-split-v:before { + content: "\e675"; +} +.ti-split-h:before { + content: "\e676"; +} +.ti-smallcap:before { + content: "\e677"; +} +.ti-shine:before { + content: "\e678"; +} +.ti-shift-right:before { + content: "\e679"; +} +.ti-shift-left:before { + content: "\e67a"; +} +.ti-shield:before { + content: "\e67b"; +} +.ti-notepad:before { + content: "\e67c"; +} +.ti-server:before { + content: "\e67d"; +} +.ti-quote-right:before { + content: "\e67e"; +} +.ti-quote-left:before { + content: "\e67f"; +} +.ti-pulse:before { + content: "\e680"; +} +.ti-printer:before { + content: "\e681"; +} +.ti-power-off:before { + content: "\e682"; +} +.ti-plug:before { + content: "\e683"; +} +.ti-pie-chart:before { + content: "\e684"; +} +.ti-paragraph:before { + content: "\e685"; +} +.ti-panel:before { + content: "\e686"; +} +.ti-package:before { + content: "\e687"; +} +.ti-music:before { + content: "\e688"; +} +.ti-music-alt:before { + content: "\e689"; +} +.ti-mouse:before { + content: "\e68a"; +} +.ti-mouse-alt:before { + content: "\e68b"; +} +.ti-money:before { + content: "\e68c"; +} +.ti-microphone:before { + content: "\e68d"; +} +.ti-menu:before { + content: "\e68e"; +} +.ti-menu-alt:before { + content: "\e68f"; +} +.ti-map:before { + content: "\e690"; +} +.ti-map-alt:before { + content: "\e691"; +} +.ti-loop:before { + content: "\e692"; +} +.ti-location-pin:before { + content: "\e693"; +} +.ti-list:before { + content: "\e694"; +} +.ti-light-bulb:before { + content: "\e695"; +} +.ti-Italic:before { + content: "\e696"; +} +.ti-info:before { + content: "\e697"; +} +.ti-infinite:before { + content: "\e698"; +} +.ti-id-badge:before { + content: "\e699"; +} +.ti-hummer:before { + content: "\e69a"; +} +.ti-home:before { + content: "\e69b"; +} +.ti-help:before { + content: "\e69c"; +} +.ti-headphone:before { + content: "\e69d"; +} +.ti-harddrives:before { + content: "\e69e"; +} +.ti-harddrive:before { + content: "\e69f"; +} +.ti-gift:before { + content: "\e6a0"; +} +.ti-game:before { + content: "\e6a1"; +} +.ti-filter:before { + content: "\e6a2"; +} +.ti-files:before { + content: "\e6a3"; +} +.ti-file:before { + content: "\e6a4"; +} +.ti-eraser:before { + content: "\e6a5"; +} +.ti-envelope:before { + content: "\e6a6"; +} +.ti-download:before { + content: "\e6a7"; +} +.ti-direction:before { + content: "\e6a8"; +} +.ti-direction-alt:before { + content: "\e6a9"; +} +.ti-dashboard:before { + content: "\e6aa"; +} +.ti-control-stop:before { + content: "\e6ab"; +} +.ti-control-shuffle:before { + content: "\e6ac"; +} +.ti-control-play:before { + content: "\e6ad"; +} +.ti-control-pause:before { + content: "\e6ae"; +} +.ti-control-forward:before { + content: "\e6af"; +} +.ti-control-backward:before { + content: "\e6b0"; +} +.ti-cloud:before { + content: "\e6b1"; +} +.ti-cloud-up:before { + content: "\e6b2"; +} +.ti-cloud-down:before { + content: "\e6b3"; +} +.ti-clipboard:before { + content: "\e6b4"; +} +.ti-car:before { + content: "\e6b5"; +} +.ti-calendar:before { + content: "\e6b6"; +} +.ti-book:before { + content: "\e6b7"; +} +.ti-bell:before { + content: "\e6b8"; +} +.ti-basketball:before { + content: "\e6b9"; +} +.ti-bar-chart:before { + content: "\e6ba"; +} +.ti-bar-chart-alt:before { + content: "\e6bb"; +} +.ti-back-right:before { + content: "\e6bc"; +} +.ti-back-left:before { + content: "\e6bd"; +} +.ti-arrows-corner:before { + content: "\e6be"; +} +.ti-archive:before { + content: "\e6bf"; +} +.ti-anchor:before { + content: "\e6c0"; +} +.ti-align-right:before { + content: "\e6c1"; +} +.ti-align-left:before { + content: "\e6c2"; +} +.ti-align-justify:before { + content: "\e6c3"; +} +.ti-align-center:before { + content: "\e6c4"; +} +.ti-alert:before { + content: "\e6c5"; +} +.ti-alarm-clock:before { + content: "\e6c6"; +} +.ti-agenda:before { + content: "\e6c7"; +} +.ti-write:before { + content: "\e6c8"; +} +.ti-window:before { + content: "\e6c9"; +} +.ti-widgetized:before { + content: "\e6ca"; +} +.ti-widget:before { + content: "\e6cb"; +} +.ti-widget-alt:before { + content: "\e6cc"; +} +.ti-wallet:before { + content: "\e6cd"; +} +.ti-video-clapper:before { + content: "\e6ce"; +} +.ti-video-camera:before { + content: "\e6cf"; +} +.ti-vector:before { + content: "\e6d0"; +} +.ti-themify-logo:before { + content: "\e6d1"; +} +.ti-themify-favicon:before { + content: "\e6d2"; +} +.ti-themify-favicon-alt:before { + content: "\e6d3"; +} +.ti-support:before { + content: "\e6d4"; +} +.ti-stamp:before { + content: "\e6d5"; +} +.ti-split-v-alt:before { + content: "\e6d6"; +} +.ti-slice:before { + content: "\e6d7"; +} +.ti-shortcode:before { + content: "\e6d8"; +} +.ti-shift-right-alt:before { + content: "\e6d9"; +} +.ti-shift-left-alt:before { + content: "\e6da"; +} +.ti-ruler-alt-2:before { + content: "\e6db"; +} +.ti-receipt:before { + content: "\e6dc"; +} +.ti-pin2:before { + content: "\e6dd"; +} +.ti-pin-alt:before { + content: "\e6de"; +} +.ti-pencil-alt2:before { + content: "\e6df"; +} +.ti-palette:before { + content: "\e6e0"; +} +.ti-more:before { + content: "\e6e1"; +} +.ti-more-alt:before { + content: "\e6e2"; +} +.ti-microphone-alt:before { + content: "\e6e3"; +} +.ti-magnet:before { + content: "\e6e4"; +} +.ti-line-double:before { + content: "\e6e5"; +} +.ti-line-dotted:before { + content: "\e6e6"; +} +.ti-line-dashed:before { + content: "\e6e7"; +} +.ti-layout-width-full:before { + content: "\e6e8"; +} +.ti-layout-width-default:before { + content: "\e6e9"; +} +.ti-layout-width-default-alt:before { + content: "\e6ea"; +} +.ti-layout-tab:before { + content: "\e6eb"; +} +.ti-layout-tab-window:before { + content: "\e6ec"; +} +.ti-layout-tab-v:before { + content: "\e6ed"; +} +.ti-layout-tab-min:before { + content: "\e6ee"; +} +.ti-layout-slider:before { + content: "\e6ef"; +} +.ti-layout-slider-alt:before { + content: "\e6f0"; +} +.ti-layout-sidebar-right:before { + content: "\e6f1"; +} +.ti-layout-sidebar-none:before { + content: "\e6f2"; +} +.ti-layout-sidebar-left:before { + content: "\e6f3"; +} +.ti-layout-placeholder:before { + content: "\e6f4"; +} +.ti-layout-menu:before { + content: "\e6f5"; +} +.ti-layout-menu-v:before { + content: "\e6f6"; +} +.ti-layout-menu-separated:before { + content: "\e6f7"; +} +.ti-layout-menu-full:before { + content: "\e6f8"; +} +.ti-layout-media-right-alt:before { + content: "\e6f9"; +} +.ti-layout-media-right:before { + content: "\e6fa"; +} +.ti-layout-media-overlay:before { + content: "\e6fb"; +} +.ti-layout-media-overlay-alt:before { + content: "\e6fc"; +} +.ti-layout-media-overlay-alt-2:before { + content: "\e6fd"; +} +.ti-layout-media-left-alt:before { + content: "\e6fe"; +} +.ti-layout-media-left:before { + content: "\e6ff"; +} +.ti-layout-media-center-alt:before { + content: "\e700"; +} +.ti-layout-media-center:before { + content: "\e701"; +} +.ti-layout-list-thumb:before { + content: "\e702"; +} +.ti-layout-list-thumb-alt:before { + content: "\e703"; +} +.ti-layout-list-post:before { + content: "\e704"; +} +.ti-layout-list-large-image:before { + content: "\e705"; +} +.ti-layout-line-solid:before { + content: "\e706"; +} +.ti-layout-grid4:before { + content: "\e707"; +} +.ti-layout-grid3:before { + content: "\e708"; +} +.ti-layout-grid2:before { + content: "\e709"; +} +.ti-layout-grid2-thumb:before { + content: "\e70a"; +} +.ti-layout-cta-right:before { + content: "\e70b"; +} +.ti-layout-cta-left:before { + content: "\e70c"; +} +.ti-layout-cta-center:before { + content: "\e70d"; +} +.ti-layout-cta-btn-right:before { + content: "\e70e"; +} +.ti-layout-cta-btn-left:before { + content: "\e70f"; +} +.ti-layout-column4:before { + content: "\e710"; +} +.ti-layout-column3:before { + content: "\e711"; +} +.ti-layout-column2:before { + content: "\e712"; +} +.ti-layout-accordion-separated:before { + content: "\e713"; +} +.ti-layout-accordion-merged:before { + content: "\e714"; +} +.ti-layout-accordion-list:before { + content: "\e715"; +} +.ti-ink-pen:before { + content: "\e716"; +} +.ti-info-alt:before { + content: "\e717"; +} +.ti-help-alt:before { + content: "\e718"; +} +.ti-headphone-alt:before { + content: "\e719"; +} +.ti-hand-point-up:before { + content: "\e71a"; +} +.ti-hand-point-right:before { + content: "\e71b"; +} +.ti-hand-point-left:before { + content: "\e71c"; +} +.ti-hand-point-down:before { + content: "\e71d"; +} +.ti-gallery:before { + content: "\e71e"; +} +.ti-face-smile:before { + content: "\e71f"; +} +.ti-face-sad:before { + content: "\e720"; +} +.ti-credit-card:before { + content: "\e721"; +} +.ti-control-skip-forward:before { + content: "\e722"; +} +.ti-control-skip-backward:before { + content: "\e723"; +} +.ti-control-record:before { + content: "\e724"; +} +.ti-control-eject:before { + content: "\e725"; +} +.ti-comments-smiley:before { + content: "\e726"; +} +.ti-brush-alt:before { + content: "\e727"; +} +.ti-youtube:before { + content: "\e728"; +} +.ti-vimeo:before { + content: "\e729"; +} +.ti-twitter:before { + content: "\e72a"; +} +.ti-time:before { + content: "\e72b"; +} +.ti-tumblr:before { + content: "\e72c"; +} +.ti-skype:before { + content: "\e72d"; +} +.ti-share:before { + content: "\e72e"; +} +.ti-share-alt:before { + content: "\e72f"; +} +.ti-rocket:before { + content: "\e730"; +} +.ti-pinterest:before { + content: "\e731"; +} +.ti-new-window:before { + content: "\e732"; +} +.ti-microsoft:before { + content: "\e733"; +} +.ti-list-ol:before { + content: "\e734"; +} +.ti-linkedin:before { + content: "\e735"; +} +.ti-layout-sidebar-2:before { + content: "\e736"; +} +.ti-layout-grid4-alt:before { + content: "\e737"; +} +.ti-layout-grid3-alt:before { + content: "\e738"; +} +.ti-layout-grid2-alt:before { + content: "\e739"; +} +.ti-layout-column4-alt:before { + content: "\e73a"; +} +.ti-layout-column3-alt:before { + content: "\e73b"; +} +.ti-layout-column2-alt:before { + content: "\e73c"; +} +.ti-instagram:before { + content: "\e73d"; +} +.ti-google:before { + content: "\e73e"; +} +.ti-github:before { + content: "\e73f"; +} +.ti-flickr:before { + content: "\e740"; +} +.ti-facebook:before { + content: "\e741"; +} +.ti-dropbox:before { + content: "\e742"; +} +.ti-dribbble:before { + content: "\e743"; +} +.ti-apple:before { + content: "\e744"; +} +.ti-android:before { + content: "\e745"; +} +.ti-save:before { + content: "\e746"; +} +.ti-save-alt:before { + content: "\e747"; +} +.ti-yahoo:before { + content: "\e748"; +} +.ti-wordpress:before { + content: "\e749"; +} +.ti-vimeo-alt:before { + content: "\e74a"; +} +.ti-twitter-alt:before { + content: "\e74b"; +} +.ti-tumblr-alt:before { + content: "\e74c"; +} +.ti-trello:before { + content: "\e74d"; +} +.ti-stack-overflow:before { + content: "\e74e"; +} +.ti-soundcloud:before { + content: "\e74f"; +} +.ti-sharethis:before { + content: "\e750"; +} +.ti-sharethis-alt:before { + content: "\e751"; +} +.ti-reddit:before { + content: "\e752"; +} +.ti-pinterest-alt:before { + content: "\e753"; +} +.ti-microsoft-alt:before { + content: "\e754"; +} +.ti-linux:before { + content: "\e755"; +} +.ti-jsfiddle:before { + content: "\e756"; +} +.ti-joomla:before { + content: "\e757"; +} +.ti-html5:before { + content: "\e758"; +} +.ti-flickr-alt:before { + content: "\e759"; +} +.ti-email:before { + content: "\e75a"; +} +.ti-drupal:before { + content: "\e75b"; +} +.ti-dropbox-alt:before { + content: "\e75c"; +} +.ti-css3:before { + content: "\e75d"; +} +.ti-rss:before { + content: "\e75e"; +} +.ti-rss-alt:before { + content: "\e75f"; +} diff --git a/themes/at_movic/_dev/css/partials/_variables.scss b/themes/at_movic/_dev/css/partials/_variables.scss new file mode 100644 index 00000000..89644273 --- /dev/null +++ b/themes/at_movic/_dev/css/partials/_variables.scss @@ -0,0 +1,108 @@ +@import "bourbon/_bourbon"; +@import "bootstrap/variables"; +@import "bootstrap/mixins"; +@import "_mixins"; + +/************************************ + Override Bootstrap +*************************************/ + +$base-font-size: 13px; +$font-size-lg: 14px; +$font-size-sm: 14px; +$font-size-xs: 14px; +$font-size-h1: 24px; +$font-size-h2: 22px; +$font-size-h3: 28px; +$font-size-h4: 16px; +$font-size-h5: 14px; +$font-size-h6: 14px; + +$font-family-base: "Lato", +sans-serif; +; + +// Heading +$headings-font-family: "Lato", +sans-serif; +$headings-font-weight: 600; +$headings-color: #000; + +// Color +$gray-darker: #414141; +$gray-dark: #878787; +$gray: #acaaa6; +$gray-light: #ebebeb; +$gray-lighter: #f6f6f6; + +$brand-primary: #f44d51; +$brand-secondary: #f39d72; +$brand-success: #4cbb6c; +$brand-warning: #ff9a52; +$brand-danger: #ff4c4c; + +// Color Body +$body-bg: #fff; +$body-color: #999; +$link-color: #666; +$link-hover-color: #000; + +// Space +$extra-small-space: 5px; +$small-space: 10px; +$medium-space: 20px; +$large-space: 30px; +$extra-large-space: 40px; + +// Warning +$warning: #FF9A52; +$warning-hover: #FDE7BB; +$alert-warning-bg: rgba(255, 154, 82, 0.3); +$alert-warning-border: $warning; +$alert-warning-text: $gray; + +// Button +$btn-primary-color: #fff; +$btn-primary-bg: $brand-primary; +$btn-primary-border: transparent; + +$btn-secondary-color: $gray-darker; +$btn-secondary-bg: $gray-lighter; +$btn-secondary-border: transparent; + +$btn-border-radius: 2px; + +$btn-warning-bg: $warning; +$btn-warning-color: white; +$btn-tertiary-color: #6C868E; +$btn-tertiary-hover: #BBCDD2; + +// Text +$text-muted: $gray; + +// Container +$container-max-widths: (sm: 540px, + md: 720px, + lg: 960px, + xl: 1200px); + +// Breadcrumb +$breadcrumb-bg: #0c0c0e; +$breadcrumb-divider-color: #FFFFFF; +$breadcrumb-active-color: #FFFFFF; +$breadcrumb-divider: "\f0da"; + +// Carousel +$carousel-control-color: #999; +$carousel-control-width: 25px; +$carousel-control-opacity: 1; +$carousel-control-font-size: 16px; +$carousel-text-shadow: none; + +$grid-columns: 12; +$grid-gutter-width-base: 30px; +$grid-gutter-widths: (xs: $grid-gutter-width-base, + sm: $grid-gutter-width-base, + md: $grid-gutter-width-base, + lg: $grid-gutter-width-base, + xl: $grid-gutter-width-base); \ No newline at end of file diff --git a/themes/at_movic/_dev/css/partials/index.php b/themes/at_movic/_dev/css/partials/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/_dev/css/partials/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/_dev/css/rtl.scss b/themes/at_movic/_dev/css/rtl.scss new file mode 100644 index 00000000..054cbba2 --- /dev/null +++ b/themes/at_movic/_dev/css/rtl.scss @@ -0,0 +1,39 @@ +@import "theme_variables"; +@import "bootstrap/rtl/_bootstrap-rtl"; + +// MEGAMENU +.off-canvas-active > #page{ + @include transform(translateX(-234px)); +} +.off-canvas-active > .off-canvas-nav-megamenu.active{ + @include transform(translateX(-234px)); +} +.off-canvas-nav-megamenu { + @include transition(all 450ms ease 0s); +} +.off-canvas-inactive{ + > #page{ + @include transition(none); + } +} +// PRODUCT ITEM +.product_block{ + &.last_item{ + .thumbnail-container{ + .leo-more-info{ + left: auto; + right: 0px; + } + &:hover{ + .leo-more-info{ + left: auto; + right: -90px; + } + } + } + } +} +// Button Select +.form-control-select { + background: $gray-light url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAQAAAD9CzEMAAAAPklEQVR4Ae3TwREAEBQD0V/6do4SXPZg7EsBhsQ8IEmSMOsiuEfg3gL3oXC7wK0bd1G4o8X9F4yIkyQfSrIByQBjp7QuND8AAAAASUVORK5CYII=") no-repeat scroll left 8px center / 20px 20px; +} \ No newline at end of file diff --git a/themes/at_movic/_dev/css/theme.scss b/themes/at_movic/_dev/css/theme.scss new file mode 100644 index 00000000..89c2e2eb --- /dev/null +++ b/themes/at_movic/_dev/css/theme.scss @@ -0,0 +1,2194 @@ + +//@import url('//fonts.googleapis.com/css?family=Poppins:300,400,500,600,700'); +/* +font-family: 'Poppins', sans-serif; + */ + +//@import "bourbon/_bourbon"; +//@import "partials/_bootstrap"; +@import "partials/_bootstrap-flex"; +@import "partials/_bootstrap-grid"; +@import "partials/_bootstrap-reboot"; +@import "partials/_jquery.bootstrap-touchspin.min"; +@import "_theme_variables"; +@import "partials/_mixins"; +@import "partials/_fonts"; +@import "partials/_poppins"; +@import "partials/_themify-icons"; +@import "partials/_font-awesome.min"; +@import "partials/_commons"; +@import "app/animations"; +@import "app/buttons"; +@import "app/block"; +@import "app/menu"; +@import "app/modules"; +@import "app/product-item"; +@import "components/drop-down"; +@import "components/search-widget"; +@import "components/mainmenu"; +@import "components/checkout"; +@import "components/customer"; +@import "components/imageslider"; +//@import "components/featuredproducts"; +@import "components/custom-text"; +@import "components/categories"; +@import "components/products"; +@import "components/cart"; +@import "components/block-reassurance"; +@import "components/quickview"; +@import "components/stores"; +@import "components/footer"; +@import "components/contact"; +@import "components/errors"; +@import "components/customization-modal"; + +/*** LAYOUT MODE ***/ +@font-face { + font-family: 'Auros'; + src: url("../fonts/Auros.eot?7y8ufa"); + src: url("../fonts/Auros.eot?7y8ufa#iefix") format("embedded-opentype"), url("../fonts/Auros.ttf?7y8ufa") format("truetype"), url("../fonts/Auros.woff?7y8ufa") format("woff"), url("../fonts/Auros.svg?7y8ufa#Auros") format("svg"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: 'nova-icons'; + src: url("../fonts/nova-icons.eot?j7twyn"); + src: url("../fonts/nova-icons.eot?j7twyn#iefix") format("embedded-opentype"), url("../fonts/nova-icons.ttf?j7twyn") format("truetype"), url("../fonts/nova-icons.woff?j7twyn") format("woff"), url("../fonts/nova-icons.svg?j7twyn#nova-icons") format("svg"); + font-weight: normal; + font-style: normal; } + +h1, h2, h3, h4, h5, h6 { + +} + +body{ + &.layout-boxed-md{ + background: $white; + #page{ + max-width: 960px; + @include box-shadow(0 0 5px lighten($gray-darker, 50%)); + margin: 0 auto; + background: $white; + .container { + max-width: 940px; + } + } + } + &.layout-boxed-lg{ + background: $white; + #page{ + max-width: 1220px; + @include box-shadow(0 0 5px lighten($gray-darker, 50%)); + margin: 0 auto; + background: $white; + .container { + max-width: 1200px; + } + } + } +} +/*** HEADER ***/ + +.popover { + font-family: inherit; +} +/*** WRAPPER ***/ +#index{ + #wrapper { + padding: 0px; + } +} +#page { + overflow: hidden; +} +.breadcrumb { + padding: 10px 0; + li{ + display: inline-block; + vertical-align: top; + @include rtl-margin(0,20px,0,0); + &:last-child{ + margin: 0; + a{ + padding: 0; + color: #000; + &:after{ + display: none; + } + } + } + a{ + display: block; + @include rtl-padding(0, 10px,0,0); + line-height: 20px; + position: relative; + transition: all .4s; + color: #999; + &:hover{ + color: #000; + } + &:after{ + display: inline-block; + font-style: normal; + font-weight: 400; + content: "/"; + font-size: 8px; + position: absolute; + top: 1px; + color: #888; + @include rtl-right(-10px); + } + } + } +} +#wrapper { + min-height: 500px; + padding-left: 9px; + padding-right: 9px; + padding-bottom: 30px; + @media (max-width: 991px) { + padding-bottom: 10px; + } + .banner { + margin-bottom: 24px; + display: block; + img { + @include box-shadow(1px 1px 7px 0 rgba(0, 0, 0, 0.15)); + } + } + .block-category-full { + position: relative; + text-align: center; + min-height: 150px; + margin: -30px 0 20px; + text-shadow: 0px 1px 0px #fff; + .cate-name{ + position: absolute; + bottom: 50%; + left: 0; + right: 0; + } + .breadcrumb { + position: absolute; + padding: 0; + text-align: center; + border-radius: 0; + top: 50%; + left: 0; + right: 0; + background: none; + margin-top: 10px; + &[data-depth="1"] { + display: none; + } + ol { + display: inline-block; + @include rtl-margin(0,0,0,10px); + } + li { + display: inline; + white-space: nowrap; + z-index: 1; + position: relative; + &::after { + content: "\f105"; + color: #222; + font-family: $font-icon; + margin: em(5px); + } + &:last-child { + content: "/"; + color: #222; + margin: 5px; + a{ + color: #222; + } + &::after { + content: ""; + } + } + a { + color: #000; + &:hover{ + color: $theme-color-default; + text-decoration: underline; + } + } + } + } + } + .bg-wapper .breadcrumb { + position: relative; + padding: 320px 0 0; + margin: -30px 0 30px; + background: url(../img/bg_breadcrumb.jpg) center top no-repeat; + text-align: center; + @include border-radius(0); + &[data-depth="1"] { + display: none; + } + ol { + padding: 22px; + margin-bottom: 0; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%,-50%); + &:before{ + content: ""; + position: absolute; + top: 50%; + left: 0; + right: 0; + @include box-shadow(0 0 50px 10px rgba(0, 0, 0, 0.25)); + } + } + li { + display: inline; + white-space: nowrap; + z-index: 1; + position: relative; + &::after { + content: "\f105"; + color: #ddd; + font-family: $font-icon; + margin: em(5px); + } + &:last-child { + content: "/"; + color: #eee; + margin: 5px; + a{ + color: #eee; + } + &::after { + content: ""; + } + } + a { + color: #ddd; + &:hover{ + color: #fff; + text-decoration: underline; + } + } + } + } +} +/*** MAIN ***/ +#main { + .page-header { + margin-bottom: 25px; + text-align: center; + } + .page-content { + margin-bottom: 25px; + h6 { + margin-bottom: 18px; + } + #notifications { + margin-left: -15px; + margin-right: -15px; + } + } + .page-footer { + } +} +#notifications { + ul { + margin-bottom: 0; + } +} +// Sitemap page +.sitemap{ + ul.tree{ + li{ + line-height: 20px; + padding: $extra-small-space 0; + a{ + &.parent-page{ + text-transform: uppercase; + font-weight: 700; + } + } + ul{ + @include rtl-padding-left(10px); + } + } + } +} +// Manufature page +.list-brands{ + margin: $medium-space 0 $small-space; + background: $white; +} +.brand{ + @include display(flex); + > div{ + display: inline-flex; + @include align-items(center); + @include justify-content(space-between); + } +} + +/* Back to top */ +#back-top{ + bottom: 10px; + display: none; + position: fixed; + @include rtl-right(10px); + z-index: 90; + border-radius: 50%; + background-color: #272727; + cursor: pointer; + a{ + margin: 2px; + width: 36px; + height: 36px; + line-height: 34px; + border: 1px solid #fff; + display: block; + border-radius: 50%; + text-align: center; + color: white; + position: relative; + overflow: hidden; + } +} +/*** Responsive part ***/ +@include media-breakpoint-up(lg){ + .headertop-flex{ + > [class*="col-"]{ + @include display(flex); + @include align-items(center); + } + .center-headertop{ + @include justify-content(center); + } + .right-headertop{ + @include flex-direction(row-reverse); + } + } +} +@include media-breakpoint-down(sm) { + #checkout-cart-summary { + float: none; + width: 100%; + margin-top: 1rem; + } + + section.checkout-step { + width: 100%; + } + .default-input { + min-width: 100%; + } + label { + clear: both; + } +} +@include media-breakpoint-down(md) { + .container { + width: 740px; + max-width: 100%; + } + #blockcart-modal .modal-dialog { + width: calc(100% - 40px); + max-width: 720px; + margin: 20px auto; + } + .sub-menu { + left: 0; + min-width: 100%; + } + #blockcart-modal .product-image { + width: 100%; + display: block; + max-width: 250px; + margin: 0 auto 15px; + } + #blockcart-modal .cart-content { + padding-left: 0; + } + #search_filters .facet .facet-label { + text-align: left; + } + .block-category .category-cover { + position: relative; + text-align: center; + } + .block-category { + padding-bottom: 0; + } +} + +@media (max-width: 767px){ + .container { + width: 540px; + } + #blockcart-modal .modal-dialog { + max-width: 520px; + } +} +@media (max-width: 600px){ + .container { + width: 480px; + } + #blockcart-modal .modal-dialog { + max-width: 460px; + } +} +@media (max-width: 480px){ + .container { + width: 100%; + } + #blockcart-modal .modal-dialog { + max-width: 100%; + } +} + +#page.megamenu-autoheight { + overflow: auto; +} +@media (min-width: 1440px){ + .container { + width: 1440px; + } +} +.icon-font{ + font-size: 18px; +} +ul,ol{ + margin: 0; + padding: 0; + list-style: none; +} +.dropdown-menu { + font-size: 13px; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); +} +.block-social li { + position: relative; +} +.block-social li a { + display: block; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; +} +#index{ + .breadcrumb{ + display: none !important; + } +} +/* +::-webkit-scrollbar { + width: 5px; +} +::-webkit-scrollbar-track { + @include border-radius(5px); + background: #ddd; +} +::-webkit-scrollbar-thumb { + @include border-radius(5px); + background: #666; +} + */ + + +.box-customreview +{ + .owl-theme { + .owl-buttons { + position: static; + width: auto; + div{ + font-size: 0; + color: transparent; + border-radius: 0; + width: 40px; + height: 40px; + border: 0; + background: none; + position: absolute; + top: 50%; + margin-top: -20px; + opacity: 0; + visibility: hidden; + border: 0; + box-shadow: none; + &:hover:after { + border-color: $theme-color-default; + } + &:before{ + display: none; + } + &:after { + content: ""; + width: 30px; + height: 30px; + border: 1px solid #000; + background: none; + border-width: 1px 1px 0 0; + position: absolute; + top: 50%; + margin-top: -15px; + } + &.owl-prev { + left: -40px; + &:after { + transform: rotate(-135deg); + right: 0; + } + } + &.owl-next { + right: -40px; + &:after { + transform: rotate(45deg); + left: 0; + } + } + } + } + } + &:hover .owl-theme .owl-buttons div { + opacity: 1; + visibility: visible; + background: none; + &.owl-prev { + left: -30px; + } + &.owl-next { + right: -30px; + } + } +} +.form-control { + font-size: 13px; + border-radius: 0; +} +.font-weight-600 { + font-weight: normal; +} +.table th, table th { + font-weight: normal; +} +body { + .instagram-block { + .owl-theme .owl-buttons div { + margin-top: -20px; + } + } +} +.img-fluid{ + img{ + max-width: 100%; + } +} +#search { + #main{ + &>h2{ + text-align: center; + } + .page-not-found{ + text-align: center; + } + } +} +#search.layout-full-width{ + .product_list{ + &.grid{ + .ajax_block_product{ + clear: none; + @media (min-width: 1200px) { + width: 25%; + &:nth-child(4n+1){ + clear: both; + } + } + @media (min-width: 992px) and (max-width: 1199px) { + width: 25%; + &:nth-child(4n+1){ + clear: both; + } + } + @media (max-width: 991px) and (min-width: 768px) { + width: 33.333%; + &:nth-child(3n+1){ + clear: both; + } + } + @media (max-width: 767px) and (min-width: 568px) { + width: 33.333%; + &:nth-child(3n+1){ + clear: both; + } + } + @media (max-width: 567px){ + width: 50%; + &:nth-child(2n+1){ + clear: both; + } + } + } + } + } +} +.ui-widget { + font-family: $font-family-base; + font-size: 14px; +} +@media (min-width: 768px) { + .breadcrumb { + width: 100%; + background: none; + margin: 0 0 40px; + font-size: 14px; + position: relative; + text-align: left; + &:before{ + content: ""; + top: 0; + left: 50%; + right: auto; + bottom: 0; + z-index: -1; + margin-left: -50vw; + width: 100vw; + background: #f2f2f4; + position: absolute; + } + ol{ + margin: auto 0 auto auto; + font-size: 12px; + } + h1{ + font-size: 36px; + font-weight: 600; + margin: 0 0 15px; + } + } +} +.group-product_builder{ + .apconfig-product_builder{ + font-size: 0px !important; + color: transparent !important; + display: block; + margin: 0 0 10px; + border: 1px solid #eee; + background-color: #fff; + background-size: contain; + background-repeat: no-repeat; + background-position: center; + height: 180px; + transition: all .4s; + &.active, + &:hover{ + border-color: #888; + } + &:before{ + display: none; + } + &:nth-child(1){ + background-image: url(../img/p/p1.jpg); + } + &:nth-child(2){ + background-image: url(../img/p/p2.jpg); + } + &:nth-child(3){ + background-image: url(../img/p/p3.jpg); + } + &:nth-child(4){ + background-image: url(../img/p/p4.jpg); + } + &:nth-child(5){ + background-image: url(../img/p/p5.jpg); + } + &:nth-child(6){ + background-image: url(../img/p/p6.jpg); + } + } +} +.paneltool{ + .leo-dynamic-theme-skin { + margin: 5px 10px 5px 0; + width: 100%; + min-height: 30px; + line-height: 30px; + cursor: pointer; + border: 0; + padding: 0 15px; + color: #000; + &:nth-child(4n){ + margin-right: 0; + } + &:hover, + &.current-theme-skin{ + outline: 2px solid #000; + outline-offset: 2px; + } + label{ + display: none; + } + &:nth-child(1){ + background: $theme-color-default; + } + &:nth-child(2){ + background: #e97e3d; + } + &:nth-child(3){ + background: #607d8b; + } + &:nth-child(4){ + &:before{ + content: "ICON : "; + } + &:after { + content: "\e924 \e92b \e917 \e90e"; + font-family: "Auros"; + letter-spacing: 5px; + } + } + &:nth-child(5){ + &:before{ + content: "ICON : "; + } + &:after { + content: "\e9c1 \e9f1 \e977 \e9ca"; + font-family: "nova-icons"; + letter-spacing: 5px; + } + } + &:nth-child(6){ + &:before{ + content: "Font Ubuntu"; + } + } + &:nth-child(7){ + &:before{ + content: "Font Roboto"; + } + } + &:nth-child(8){ + &:before{ + content: "Font Open Sans"; + } + } + &:nth-child(9){ + &:before{ + content: "Font Montserrat"; + } + } + &:nth-child(10){ + &:before{ + content: "Font Oswald"; + } + } + &:nth-child(11){ + &:before{ + content: "Font Rajdhani"; + } + } + } +} +.fancybox-skin { + background: #fff !important; + border-radius: 0 !important; + padding: 20px !important; +} +.fancybox-inner{ + overflow-x: hidden !important; + .block-social{ + display: none; + } + .block_newsletter{ + height: 517px; + max-width: 700px; + padding: 0 0 0 350px; + background: url(../../assets/img/newslettermodal.jpg) top left no-repeat; + max-height: 100%; + min-height: 300px; + @include display(flex); + @include align-items(center); + flex-direction: column; + .title_block{ + margin: auto auto 20px; + font-size: 27px; + text-transform: uppercase; + letter-spacing: 1px; + font-weight: bold; + } + .block_content{ + margin: 0 auto auto; + } + } +} +.fancybox-wrap .turnoff-popup-wrapper { + position: absolute; + bottom: 10px; + left: 350px; + right: 0; + font-size: 12px; + color: #999; + .turnoff-popup{ + vertical-align: -3px; + @include rtl-margin(0, 10px, 0 ,0); + } +} +.fancybox-wrap .fancybox-close { + top: 5px; + right: 5px; + background: none !important; + transition: all .4s; + text-align: center; + line-height: 36px; + &:hover{ + transform: rotate(90deg); + } + &:before{ + font-size: 16px; + content: "\e646"; + font-family: 'themify'; + } +} +body{ + ::-webkit-scrollbar { + width: 3px; + } + ::-webkit-scrollbar-thumb { + background: #000; + } + ::-webkit-scrollbar-track { + background: #ddd; + } +} + +body .slick-list { + .slick-loading & { + background: #fff url("../img/loader.svg") center center no-repeat; + background-size: 32px; + } +} +body .owl-item.loading{ + background: url("../img/loader.svg") no-repeat center center; + background-size: 32px; +} +body .grabbing { + cursor:url(../img/grabbing.png) 8 8, move; +} +body .paneltool { + &.multiproductdetailtool{ + .panelbutton{ + &:before{ + content: ''; + position: absolute; + width: 50px; + height: 50px; + top: -25px; + z-index: 9; + margin: auto; + background: url(../img/label-new.png) no-repeat; + background-size: 100%; + @include rtl-left(-25px); + } + } + } +} + +.product-variants > .product-variants-item ul li.outstock .radio-label{ + background-image: linear-gradient(to bottom left, transparent 50%, #999 50%, #999 calc(50% + 1px), transparent 50%),linear-gradient(to bottom right, transparent 50%, #999 50%, #999 calc(50% + 1px), transparent 50%); +} +.product-variants > .product-variants-item ul li.outstock .color:after{ + content: ""; + background-image: linear-gradient(to bottom left, transparent 50%, #999 50%, #999 calc(50% + 1px), transparent 50%),linear-gradient(to bottom right, transparent 50%, #999 50%, #999 calc(50% + 1px), transparent 50%); + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; +} +img{ + max-width: 100%; +} +.thumbnail-container { + .leo-noimage{ + display: block; + background: url(../img/no-image.svg) center no-repeat; + background-size: 50px; + img{ + opacity: 0; + } + } +} + +div.animated-background{ + background: url(../img/loader.svg) center no-repeat; + background-size: 32px; + animation: none; + height: auto; + padding-bottom: 100%; + div{ + opacity: 0; + } +} +#cart-subtotal-shipping > div small.value { + font-size: 12px; + padding: 10px 0 0; + font-weight: normal; +} +#cart-subtotal-shipping > div { + clear: both; +} +.w-name{ + display: none; +} +.leo-dropdown-cssload-speeding-wheel, +.cssload-speeding-wheel{ + background: url(../img/loading.svg) center no-repeat !important; + background-size: contain !important; + border: 0 !important; +} +.leo-notification{ + text-align: center; + pointer-events: none; + .notification-wrapper { + width: auto; + display: inline-block; + vertical-align: top; + } + div.notification{ + background: none; + color: #000; + transform: translate(0px, 50px); + transition: 0.3s ease-in-out; + &.closed{ + transform: translate(0px, 50px); + } + } +} +.leo-block-sidebar{ + .post-name { + margin: 0; + a { + font-size: 13px; + font-weight: 500; + padding: 10px 0; + display: block; + line-height: 1.5; + } + } + .info { + display: block; + font-size: 12px; + color: #aaa; + } + .list-item{ + margin: 0 0 20px; + } +} +#search_filters { + padding: 30px; +} +.js-modal-content { + padding: 30px; +} +body { + #search_filters .ui-widget-header { + background: #000; + } + #search_filters { + .ui-slider .ui-slider-handle { + width: 16px; + height: 16px; + border-radius: 0; + top: -6px; + } + .ui-slider-horizontal { + height: 4px; + border: 0; + background: #ddd; + border-radius: 0; + } + } +} +body #search_filters .ui-slider .ui-slider-handle + .ui-slider-handle { + margin: 0 0 0 -14px; +} +#search_filters > .h6 { + font-size: 16px; + margin: 0 0 15px; +} +#subcategories { + &> .row { + display: flex; + flex-wrap: wrap; + } +} +.subcategory-block{ + margin: 0 0 30px; + h3{ + margin: 0; + } + .subcategory-name { + display: block; + padding: 15px 0; + font-size: 14px; + color: #444; + font-weight: 500; + &:hover{ + color: #000; + } + } +} +p:last-child { + margin: 0; +} +b, strong { + font-weight: 600; +} +.col-mesg .alert { + margin: 15px 0 0; +} +.checkout.cart-detailed-actions .btn { + width: 100%; +} +.demo-product-detail { + display: flex; + flex-wrap: wrap; + .leo-widget{ + max-width: 165px; + } +} +#order-items{ + h3.card-title { + font-size: 14px; + text-transform: capitalize; + font-weight: 500; + } + .total-value{ + td:last-child{ + font-size: 1.2em; + } + } + table tr.sub{ + td:last-child{ + @include rtl-text-align-left(); + } + } +} +.leo-blog-tags .block_content a { + display: inline-block; + padding: 5px 8px; + margin: 0 2px 5px 0; + background: #f5f5f5; + border-radius: 5px; + &:first-letter{ + text-transform: uppercase; + } + &:hover { + background: #333; + color: #fff; + } +} +.sidebar .block .title_block.products-section-title { + font-weight: 600; +} +.sidebar .plist-dsimple .thumbnail-container .discount-percentage { + top: 5px; + right: auto; + left: 20px; +} +section#products { + clear: both; +} +.text-center{ + text-align: center; +} +.text-left{ + text-align: left; +} +.text-right{ + text-align: right; +} +.fw-700{ + font-weight: 700; +} +.fw-600{ + font-weight: 600; +} +.fw-500{ + font-weight: 500; +} +.fw-400{ + font-weight: 400; +} +.fw-300{ + font-weight: 300; +} +.fw-200{ + font-weight: 200; +} +.fw-100{ + font-weight: 100; +} +.product-detail .product-prices .product-price { + margin: 0; +} +.box-instagram .ApInstagram .link-instagram { + margin: 0; + text-align: center; +} +.box-instagram .ApInstagram .link-instagram a { + display: inline-block; + padding: 10px; +} +.af_pl_wrapper .pagination { + //display: none !important; +} +.leo-form-chk { + position: relative; + input { + margin: 0 5px 0 0; + vertical-align: -2px; + } +} +.font-weight-bold { + font-weight: 600; +} +.lql-social-login { + margin: 10px 0; + .btn { + width: 100%; + &.facebook-login-bt{ + background: #4267b2; + &:hover{ + background: #688cd7; + } + } + &.google-login-bt{ + background: #ea4235; + &:hover{ + background: #ed5f54; + } + } + &.twitter-login-bt{ + background: #5da9dd; + &:hover{ + background: #7ab6df; + } + } + } +} +.leo-quicklogin-modal .modal-body > .lql-social-login:nth-child(1) { + padding: 0 0 20px; + border: 0; + border-bottom: 1px dashed #e5e5e5; + margin: 0 0 20px; +} +label.required:after { + content: "*"; + color: red; +} +.form-group:last-child { + label.required:after { + position: absolute; + top: 0; + opacity: 0; + visibility: hidden; + } + .required + div .custom-checkbox label:after { + content: "*"; + color: red; + } +} +.contact-form #gdpr_consent { + padding: 0 15px; +} +.block_newsletter p { + padding: 8px 0; +} +.modal { + z-index: 9999; +} +.cart-summary-products{ + .btn[data-toggle="collapse"]{ + display: none; + } + #cart-summary-product-list{ + display: block; + } +} +a.leo-send-wishlist-button i { + margin: 0 5px 0 0; + vertical-align: -3px; +} +.leo-wishlistproduct-item{ + .leo-wishlist-product-save-button, + .wishlist-product-info{ + display: none; + } +} +.send-wishlist { + display: none !important; +} +.wishlist-table-head th { + color: #222; + font-weight: 500; +} +.leo-save-wishlist-bt { + min-width: 200px; +} +iframe{ + border: 0; + max-width: 100%; +} +.form-control:focus { + border-color: #000; +} +.leo-quicklogin-form h2{ + font-size: 16px; +} +.lof-labelexpired { + display: none; +} +body #search_filters .facet .collapse.faceted-slider { + overflow: visible; +} +.leo-cart-item-img { + min-height: 1px; +} +#blockcart-modal .modal-body .divide-right p { + display: block; + &.product-price{ + font-size: 14px; + font-weight: 500; + } +} + +.forgotten-password i { + width: 30px; + height: 30px; + border-radius: 50%; + display: inline-block; + float: left; + margin: 0 10px 0 0; +} +.forgotten-password li.item:after { + content: ""; + display: table; + clear: both; +} +.forgotten-password li.item p { + padding: 6px 0 0; +} +ul.ps-alert-success i { + width: 30px; + height: 30px; + background: #000; + border-radius: 50%; + display: inline-block; + float: left; + margin: 0 10px 0 0; +} +ul.ps-alert-success li.item:after { + content: ""; + display: table; + clear: both; +} +ul.ps-alert-success li.item p { + padding: 6px 0 0; +} +#product-details { + opacity: 1; +} +.slide_config.data-link{ + width: 100% !important; +} + +.thumbnail-container a.product-thumbnail .product-additional img { + background: #fff; +} +@media (max-width: 991px){ + .list-brands li.brand { + display: inline-block; + width: 100%; + padding: 0 0 20px; + margin: 0 0 20px; + border-bottom: 1px solid #000; + } + .list-brands li.brand > div { + width: 100%; + } +} + +.blockreassurance_product { + border-top-width: 3px; + margin: 0 0 20px; + padding: 0; + +} +.blockreassurance_product > div { + border: 1px solid rgba(0,0,0,.1); + margin: 0 0 10px; +} + +.blockreassurance_product > div:last-child { + border: 0; + padding: 0; +} +.blockreassurance_product > div { + padding: 15px 25px; + display: flex; + align-items: center; +} +.blockreassurance_product p.block-title { + font-size: 12px; + line-height: 20px; + color: #888; +} +div.blockreassurance_product .item-product img, div.blockreassurance_product .item-product svg { + width: 25px; + height: auto; +} + +img[title="cms-img"] { + margin: 0 0 30px; +} +.list-images-mobile .slick-slide { + text-align: center; +} + +@media (min-width: 992px){ +.list-images-mobile { + // display: none !important; +} +} +@media (max-width: 991px){ +.list-images-desktop { + // display: none !important; +} +} + +h2.lql-bt:hover{ + color: #000; +} +.lql-form-content .form-group:last-child { + margin: 0; +} +.leo-quicklogin-form .leo-form { + padding: 15px 30px; +} + +.f-logo a span, +.f-logo2 a span, +.h-logo a span{ + font-weight: bold; + font-size: 34px; + color: #000; + letter-spacing: 4px; +} +a.label i { + vertical-align: -3px; +} +#product-modal .modal-body { + background: #fff; +} +#product-modal .modal-content .modal-body { + figure { + margin: 0; + } + .thumbnails { + display: none; + } + .image-caption { + padding: 15px 0px 0; + text-align: justify; + } +} +.page-content[data-templatezoomtype="none"]{ + .product-cover .layer { + display: block; + } + + #product-modal .modal-body { + padding: 10px; + } +} +.leo-modal-review { + .modal-footer{ + button.btn-secondary{ + display: none; + } + } +} +.leo-quicklogin-modal{ + .modal-header { + padding: 0; + background: none; + border: 0; + .close { + margin-top: 0px; + position: absolute; + top: -30px; + right: -30px; + color: #fff; + opacity: 1; + text-shadow: none; + font-weight: normal; + } + } +} +.forgotten-password{ + p.send-renew-password-link { + text-align: center; + margin: 0 0 35px; + } + .center-email-fields { + display: flex; + flex-wrap: wrap; + max-width: 650px; + margin: auto; + @media (max-width: 480px){ + margin: 0 -15px 20px; + } + .form-control-label { + padding: 0; + width: 100%; + text-align: left; + } + .col-md-5.email{ + flex: 1; + padding: 0; + } + } + ul { + text-align: center; + margin: 0 0 30px; + font-weight: 600; + color: #333; + li{ + i{ + float: none; + margin: 0; + svg path { + fill: #333; + } + } + } + } +} +.page-my-account{ + .page-footer{ + .text-sm-center{ + a{ + display: inline-block; + padding: 15px 30px; + text-transform: uppercase; + background: #eee; + font-weight: 600; + letter-spacing: 1px; + color: #333; + font-size: 12px; + &:hover{ + color: #666; + } + } + } + } +} +.af{ + .af_subtitle { + font-weight: 600; + font-size: 13px; + } + .slider-container .back-bar { + height: 4px; + .pointer { + top: -6px; + border-radius: 0; + background: #000; + border: 1px solid #000; + } + } + .af_filter:last-child { + border: 0; + margin: 0; + padding: 0; + } +} +.sidebar{ + #amazzing_filter { + box-shadow: none; + margin-bottom: 0; + background: #FFF; + padding: 30px; + } +} +.col-mesg .alert:before { + display: none; +} +.col-mesg .alert { + padding: 10px; +} +div.iview-controlNav div.iview-items { + width: 100%; + left: 0; + bottom: 20px; +} +@media (max-width: 991px){ +div.iview-controlNav div.iview-items { + bottom: 15px; +} +.product-detail-name { + margin: 20px 0 15px; +} +.breadcrumb { + margin: 0 0 40px; +} +.af_filter_content { + padding: 0 10px; +} +.block-category.card h1 { + margin: 20px 0 10px; +} +} +.zoomWindow { + background-color: #fff; +} +.block-social li.linkedin:before { +content: "\f0e1"; +} +.product_list.grid > .row { + display: flex; + flex-wrap: wrap; +} +#gdpr_consent { + margin: 1em 0; +} +.af_subtitle_heading .af_subtitle { + font-weight: 500; +} +/*add class no-link in menu item will no click in this item*/ +.off-canvas-nav-megamenu .navbar-nav > li.no-link, +.leo-megamenu .navbar-nav > li.no-link { + cursor: pointer; +} +.off-canvas-nav-megamenu .navbar-nav > li.no-link > a, +.leo-megamenu .navbar-nav > li.no-link > a { + pointer-events: none; +} +.off-canvas-nav-megamenu .navbar-nav > li.no-link > .dropdown-menu, +.leo-megamenu .navbar-nav > li.no-link > .dropdown-menu { + cursor: auto; +} +/*End add class no-link in menu item will no click in this item*/ + +.thumbnail-container .product-image .slick-arrows .slick-prev { + left: 10px; +} +.thumbnail-container .product-image .slick-arrows .slick-next { + right: 10px; +} +.thumbnail-container .product-image .slick-arrows .slick-arrow { + width: 40px; + height: 40px; +} +.bannercontainer .tp-caption.data-link { + cursor: pointer; +} +.product-description ul, +.description-short ul, +.product-description ol, +.description-short ol { + list-style: initial; + padding-left: 1em; + margin-bottom: 1em; +} + +@media (min-width: 992px){ +#module-leoproductsearch-productsearch .product_list.grid > .row > .ajax_block_product { + width: 25%; +} +} +@media (max-width: 991px){ +#module-leoproductsearch-productsearch .product_list.grid > .row > .ajax_block_product { + width: 33.33%; +} +} +@media (max-width: 767px){ +#module-leoproductsearch-productsearch .product_list.grid > .row > .ajax_block_product { + width: 50%; +} +} +@media (max-width: 400px){ +#module-leoproductsearch-productsearch .product_list.grid > .row > .ajax_block_product { + width: 100%; +} +} +.instagram-block .owl-item a:after, .instagram-block .owl-item a:before { + pointer-events: none; +} +.box-navlogo .h-logo img.img { + max-height: 180px; +} +.box-navlogo .h-logo img.img { + max-height: 180px; +} + +.navbar-header .navbar-toggler { + border: 0; + color: transparent !important; + position: relative; + background: none !important; +} + +.navbar-header .navbar-toggler:after {content: "";position: absolute;width: 20px;height: 16px;border: 2px solid #000;border-width: 2px 0;top: 10px;left: 10px;} + +.navbar-header .navbar-toggler:before {content: "";position: absolute;width: 20px;height: 2px;background: #000;top: 17px;left: 10px;} + + + +.quickview { + .images-container .product-thumb-images { + top: -5px; + } + .slick-arrows { + position: relative; + height: 40px; + } + .list-images-mobile { + .slick-arrows { + position: static; + height: auto; + } + } +} + +#product #content .mask img{ + margin: 0; +} + +div.slick-arrows .slick-arrow.slick-prev { + left: 0; +} +div.slick-arrows .slick-arrow.slick-next { + right: 0; +} +div.slick-arrows .slick-arrow { + height: 40px; + width: 40px; +} +div.slick-arrows .slick-arrow.slick-next:before, +div.slick-arrows .slick-arrow.slick-prev:before { + font-family: 'themify'; + font-size: 16px; +} +div.slick-arrows .slick-arrow.slick-prev:before { + content: "\e64a"; +} +div.slick-arrows .slick-arrow.slick-next:before{ + content: "\e649"; +} + + + + +@media (max-width: 991px){ +.modal-dialog { + margin: 20px auto; +} +} +@media (max-width: 767px){ +.modal-dialog { + margin: 20px; + max-width: calc(100vw - 40px); +} +} +.list-images-mobile { + display: flex; +} +.list-images-mobile.slick-slider { + display: block; +} + +/*update Product image detail*/ +.quickview.modal { + display: block; + visibility: hidden; +} +.quickview.in.modal { + visibility: visible; +} +@media (max-width: 991px){ +#product #content { + margin-bottom: 20px; +} +.product-detail .product-prices { + margin: 20px 0; +} +.product-tabs.tabs .nav-tabs { + margin-bottom: 20px; +} +} +.list-images-mobile.slick-slider { + margin: 0 0 20px; +} + +.list-images-mobile .slick-dots { + position: relative; + bottom: 0; + margin: 10px -5px; + width: auto; + text-align: left; +} + +.list-images-mobile .slick-dots li { + width: 40px; + height: auto; +} + +.list-images-mobile .slick-dots li span { + display: block; + position: relative; +} + +.list-images-mobile .slick-dots li span:before {content: "";position: absolute;top: 0;left: 0;right: 0;bottom: 0;border: 1px solid transparent;transition: all .4s;} + +.list-images-mobile .slick-dots li.slick-active span:before { + border-color: #000; +} + +.list-images-mobile .slick-list { + margin: 0; +} + +.list-images-mobile .slick-list .slick-slide { + padding: 0; +} +@media (max-width: 991px){ +.plist-dsimple .thumbnail-container .pro3-btn .btn-product, .plist-dsimple .thumbnail-container .pro3-btn .quick-view { + margin: 1px; + border-radius: 0; + background: #fff; + box-shadow: none; +} +.plist-dsimple .thumbnail-container .pro3-btn { + bottom: 1px; + left: 1px; + right: 1px; +} +.plist-dsimple .thumbnail-container .pro3-btn .btn-product:hover, +.plist-dsimple .thumbnail-container .pro3-btn .quick-view:hover { + transform: none; +} + +} +@media (max-width: 480px){ +.plist-dsimple .thumbnail-container .pro3-btn { + bottom: 10px; + left: 10px; + right: 10px; +} +} +.box-latestnews a.blog_img_link { + display: block; + position: relative; + padding-bottom: 57%; + overflow: hidden; +} + +.box-latestnews a.blog_img_link img { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + object-fit: cover; +} +body .box-latestnews .owl-item.loading { + background: none; +} +body .box-latestnews .owl-item.loading a.blog_img_link { + background: url(../img/loader.svg) no-repeat center center; + background-size: 32px; +} +.quickview .modal-body > .row >.col-md-6 { + padding-left: 20px; + padding-right: 20px; +} + +.quickview .modal-body > .row { + margin: 0; +} +.block-promo .promo-code-button { + display: none !important; +} + +.block-promo #promo-code { + display: block; +} + +.block-promo .promo-code { + padding: 20px; + background: none; + border-bottom: 1px solid #ddd; +} +.block-promo .promo-input { + border: 1px solid #ddd; + border-right: 0; + margin: 0; +} +.cart-container .cart-item { + padding: 10px 5px; +} + +/*end update Product image detail*/ + +.lql-social-login { + margin: 30px 0 0; + display: flex; + flex-wrap: wrap; +} + +.lql-social-login .lql-social-login-title { + font-size: 13px; + font-weight: 500; + width: 100%; +} + +.lql-social-login button.btn { + flex: 1; +} +.block_newsletter .col-conditions { + margin-bottom: 5px; +} +#gdpr_consent { + margin: 10px 0 0; +} +.block-social { + margin: 0 0 20px; +} +.page-content.page-cms ul, .page-content.page-cms ol { + padding-left: 1em; + list-style: inherit; + margin-bottom: 1em; +} +body#category #content.page-not-found { + display: none; +} +.leo_free_price { + padding: 10px 20px; +} +.dropdown { + color: #666; +} +.thumbnail-container .leo-wishlist-button.added .text-add { + display: none; +} +.thumbnail-container .leo-wishlist-button.added .text-remove { + display: block; +} +.thumbnail-container .product-price-and-shipping .discount-percentage, +.thumbnail-container .product-price-and-shipping .discount-product { + display: inline-block; + padding: 4px 5px; + font-size: 0.8em; + background: #e0525c; + color: #fff; + border-radius: 5px; + line-height: 1; + vertical-align: middle; +} +@media (max-width: 991px){ + .clear-991{ + clear: both; + } +} +@media (max-width: 767px){ + .clear-767{ + clear: both; + } +} +@media (max-width: 480px){ + .clear-480{ + clear: both; + } +} +.cupshe-menu { + .widget-html{ + display: flex; + flex-direction: column-reverse; + @media (max-width: 991px){ + margin-bottom: 20px; + } + &>*{ + width: 100%; + } + div.menu-title{ + margin: 10px 0 0; + text-align: center; + padding: 0; + transition: all .4s; + &:before{ + display: none; + } + } + &:hover{ + div.menu-title{ + letter-spacing: 2px; + } + } + } +} +.page-cms-4{ + h3, h4, h5, h6 { + margin-bottom: 1em; + } +} +.dark { + color: #333; +} + +h3.page-subheading { + font-weight: 400; + text-transform: uppercase; + margin: 1em 0; +} + +ul.list-1 { + list-style-type: disc; + padding-left: 15px; +} + +ul.list-1 li { + padding: 4px 0 6px 0; + font-weight: 600; + color: #70908d; +} + +.cms-box .testimonials { + border: 1px solid; + border-color: #ddd; + margin: 4px 0 13px 0; + position: relative; + line-height: 2; +} + +.cms-box .testimonials .inner { + border: 1px solid #fff; + padding: 19px 18px 11px 18px; + background: #f9f9f9; +} + +.cms-box .testimonials:before {content: "";position: absolute;border: 6px solid transparent;top: 100%;left: 20px;border-color: #f9f9f9 #f9f9f9 transparent transparent;z-index: 2;} +.cms-box .testimonials:after {content: "";position: absolute;border: 7px solid transparent;top: 100%;left: 19px;border-color: #ddd #ddd transparent transparent;} + +.cms-box .testimonials + p { + padding-left: 45px; + margin-bottom: 18px; +} + +.cms-box span.before { + color: transparent; +} + +.cms-box span.before:before { + content: "\f10d"; + font-family: FontAwesome; + color: #ccc; + font-size: 1.6em; + margin: 0 5px 0 0; +} +.cms-box span.after { + color: transparent; + position: relative; + width: 30px; + height: 20px; + display: inline-block; +} + +.cms-box span.after:after { + content: "\f10e"; + font-family: FontAwesome; + color: #ccc; + font-size: 1.6em; + margin: 0 0 0 5px; + position: absolute; + top: -10px; + right: 0; +} + +.ApSlideShow .layerslider-wrapper { + z-index: auto; +} +@media (min-width: 992px){ + div.cus-sticky { + position: fixed; + top: 0; + left: 0; + right: 0; + z-index: 999; + background: #fff; + } +} +.position-sticky { + position: sticky; + top: 10px; +} + + +.eapps-instagram-feed-title { + display: none !important; +} +.eapps-instagram-feed-container { + overflow: visible; + position: relative; +} +.eapps-instagram-feed { + z-index: 0; +} +.eapps-instagram-feed-container:before { + content: ""; + position: absolute; + z-index: 99999999; + top: 100%; + height: 42px; + left: 0; + right: 0; + background: #fff; +} +.leo-megamenu.enable-canvas .leo-top-menu { + display: none; +} +.ApSlideShow .layerslider-wrapper.col-md-12.col-sm-12.col-xs-12 { + float: none; + margin: auto; + max-width: 100%; + @media (max-width: 991px){ + width: 740px; + } + @media (max-width: 767px){ + width: 540px; + } + @media (max-width: 600px){ + width: 480px; + } + @media (max-width: 480px){ + width: 100%; + padding: 0; + } +} +.product-manufacturer img{ + transition: none; +} +#form-search-blog { + position: relative; + margin: 0 0 20px; + input.form-control { + padding-right: 40px; + } + button { + position: absolute; + top: 0; + right: 0; + background: none !important; + color: #999 !important; + padding: 8px; + &:hover{ + color: #000 !important; + } + } +} +#blog-nav { + padding: 0 0 0 20px; + border-left: 1px solid #ddd; + li a { + display: block; + padding: 2px 0; + } +} +.leo-quicklogin-modal .lql-form-content-element .form-control-label { + text-align: left; +} +.layerslider-wrapper { + z-index: inherit; +} +.iview-timer { + z-index: inherit; +} +.tabs-left .nav-tabs>li { + list-style: none; +} +.p-reference { + margin: 0 0 20px; + font-size: 13px; + & > div { + padding-left: 15px; + border-left: 2px solid; + margin: 5px 0; + } + label { + font-weight: 600; + margin: 0; + } +} +.leoproductsearch-result .ac_results li{ + font-family: inherit; +} +.addToCartFormWrapper span.radio-label { + padding: 0 6px; + margin: 0 5px 5px 0; + box-shadow: none; + border: 1px solid #ddd; + line-height: 20px; +} +.addToCartFormWrapper .input-radio:checked + span, +.addToCartFormWrapper span.radio-label:hover { + border-color: #000; +} +.addToCartFormWrapper .color { + margin: 0 5px 5px 0; + box-shadow: none; +} +.addToCartFormWrapper .color[style*="#fffff"] { + color: inherit; + box-shadow: 0 0 0 1px rgba(0, 0, 0 , 0.2) inset; +} + +.container-fluid .row.sitemap li li { + padding-left: 10px; + border-left: 1px solid #ddd; +} + +.container-fluid .row.sitemap li li:last-child { + border-bottom: 1px solid #ddd; +} + +.container-fluid .row.sitemap li:last-child li:last-child { + padding-bottom: 10px; +} + +.container-fluid .row.sitemap li:hover > ul > li { + border-color: #000; +} + +.container-fluid .row.sitemap li:hover > a { + color: #000 !important; + font-weight: 600; +} +.ApSlideShow img.preview { + min-width: 100%; + object-fit: cover; +} +.ApSlideShow .iviewSlider { + min-width: 100%; +} +.tab-pane.active { + pointer-events: auto; +} +.tab-pane { + pointer-events: none; +} + + diff --git a/themes/at_movic/_dev/img/facebook-blue.svg b/themes/at_movic/_dev/img/facebook-blue.svg new file mode 100644 index 00000000..60566132 --- /dev/null +++ b/themes/at_movic/_dev/img/facebook-blue.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/themes/at_movic/_dev/img/facebook-gray.svg b/themes/at_movic/_dev/img/facebook-gray.svg new file mode 100644 index 00000000..119defaa --- /dev/null +++ b/themes/at_movic/_dev/img/facebook-gray.svg @@ -0,0 +1,18 @@ + + + + Artboard 3 + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/at_movic/_dev/img/facebook.svg b/themes/at_movic/_dev/img/facebook.svg new file mode 100644 index 00000000..79dd127b --- /dev/null +++ b/themes/at_movic/_dev/img/facebook.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/themes/at_movic/_dev/img/gplus-blue.svg b/themes/at_movic/_dev/img/gplus-blue.svg new file mode 100644 index 00000000..3ada3efb --- /dev/null +++ b/themes/at_movic/_dev/img/gplus-blue.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/themes/at_movic/_dev/img/gplus-gray.svg b/themes/at_movic/_dev/img/gplus-gray.svg new file mode 100644 index 00000000..4211f857 --- /dev/null +++ b/themes/at_movic/_dev/img/gplus-gray.svg @@ -0,0 +1,18 @@ + + + + Artboard 3 Copy + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/at_movic/_dev/img/gplus.svg b/themes/at_movic/_dev/img/gplus.svg new file mode 100644 index 00000000..fa59f8c3 --- /dev/null +++ b/themes/at_movic/_dev/img/gplus.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/themes/at_movic/_dev/img/index.php b/themes/at_movic/_dev/img/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/_dev/img/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/_dev/img/instagram.svg b/themes/at_movic/_dev/img/instagram.svg new file mode 100644 index 00000000..5c2fae4a --- /dev/null +++ b/themes/at_movic/_dev/img/instagram.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/themes/at_movic/_dev/img/pinterest-blue.svg b/themes/at_movic/_dev/img/pinterest-blue.svg new file mode 100644 index 00000000..16d3ec02 --- /dev/null +++ b/themes/at_movic/_dev/img/pinterest-blue.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/themes/at_movic/_dev/img/pinterest-gray.svg b/themes/at_movic/_dev/img/pinterest-gray.svg new file mode 100644 index 00000000..bac31217 --- /dev/null +++ b/themes/at_movic/_dev/img/pinterest-gray.svg @@ -0,0 +1,18 @@ + + + + Artboard 3 Copy 2 + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/at_movic/_dev/img/pinterest.svg b/themes/at_movic/_dev/img/pinterest.svg new file mode 100644 index 00000000..6eb965ec --- /dev/null +++ b/themes/at_movic/_dev/img/pinterest.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/themes/at_movic/_dev/img/rss.svg b/themes/at_movic/_dev/img/rss.svg new file mode 100644 index 00000000..4359c669 --- /dev/null +++ b/themes/at_movic/_dev/img/rss.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/themes/at_movic/_dev/img/twitter-blue.svg b/themes/at_movic/_dev/img/twitter-blue.svg new file mode 100644 index 00000000..acc23889 --- /dev/null +++ b/themes/at_movic/_dev/img/twitter-blue.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + diff --git a/themes/at_movic/_dev/img/twitter-gray.svg b/themes/at_movic/_dev/img/twitter-gray.svg new file mode 100644 index 00000000..31fe9125 --- /dev/null +++ b/themes/at_movic/_dev/img/twitter-gray.svg @@ -0,0 +1,18 @@ + + + + Artboard 3 Copy 3 + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/at_movic/_dev/img/twitter.svg b/themes/at_movic/_dev/img/twitter.svg new file mode 100644 index 00000000..0cf96aa4 --- /dev/null +++ b/themes/at_movic/_dev/img/twitter.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + diff --git a/themes/at_movic/_dev/img/vimeo.svg b/themes/at_movic/_dev/img/vimeo.svg new file mode 100644 index 00000000..6cc507f6 --- /dev/null +++ b/themes/at_movic/_dev/img/vimeo.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + diff --git a/themes/at_movic/_dev/img/youtube.svg b/themes/at_movic/_dev/img/youtube.svg new file mode 100644 index 00000000..6cf1a7d4 --- /dev/null +++ b/themes/at_movic/_dev/img/youtube.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/themes/at_movic/_dev/index.php b/themes/at_movic/_dev/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/_dev/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/_dev/js/cart.js b/themes/at_movic/_dev/js/cart.js new file mode 100644 index 00000000..9ed0aed8 --- /dev/null +++ b/themes/at_movic/_dev/js/cart.js @@ -0,0 +1,283 @@ +/* + * @Website: apollotheme.com - prestashop template provider + * @author Apollotheme + * @copyright Apollotheme + * @description: ApPageBuilder is module help you can build content for your shop + */ +import $ from 'jquery'; +import prestashop from 'prestashop'; + +prestashop.cart = prestashop.cart || {}; + +prestashop.cart.active_inputs = null; + +var spinnerSelector = 'input[name="product-quantity-spin"]'; + +/** + * Attach Bootstrap TouchSpin event handlers + */ +function createSpin() +{ + $.each($(spinnerSelector), function (index, spinner) { + $(spinner).TouchSpin({ + verticalbuttons: true, + verticalupclass: 'material-icons touchspin-up', + verticaldownclass: 'material-icons touchspin-down', + buttondown_class: 'btn btn-touchspin js-touchspin js-increase-product-quantity', + buttonup_class: 'btn btn-touchspin js-touchspin js-decrease-product-quantity', + min: parseInt($(spinner).attr('min'), 10), + max: 1000000 + }); + }); +} + + +$(document).ready(() => { + let productLineInCartSelector = '.js-cart-line-product-quantity'; + let promises = []; + + prestashop.on('updateCart', () => { + $('.quickview').modal('hide'); + }); + + prestashop.on('updatedCart', () => { + createSpin(); + }); + + createSpin(); + + let $body = $('body'); + + function isTouchSpin(namespace) { + return namespace === 'on.startupspin' || namespace === 'on.startdownspin'; + } + + function shouldIncreaseProductQuantity(namespace) { + return namespace === 'on.startupspin'; + } + + function findCartLineProductQuantityInput($target) { + var $input = $target.parents('.bootstrap-touchspin').find(productLineInCartSelector); + + if ($input.is(':focus')) { + return null; + } else { + return $input; + } + } + + function camelize(subject) { + let actionTypeParts = subject.split('-'); + let i; + let part; + let camelizedSubject = ''; + + for (i = 0; i < actionTypeParts.length; i++) { + part = actionTypeParts[i]; + + if (0 !== i) { + part = part.substring(0, 1).toUpperCase() + part.substring(1); + } + + camelizedSubject = camelizedSubject + part; + } + + return camelizedSubject; + } + + function parseCartAction($target, namespace) { + if (!isTouchSpin(namespace)) { + return { + url: $target.attr('href'), + type: camelize($target.data('link-action')) + } + } + + let $input = findCartLineProductQuantityInput($target); + if (!$input) { + return; + } + + let cartAction = {}; + if (shouldIncreaseProductQuantity(namespace)) { + cartAction = { + url: $input.data('up-url'), + type: 'increaseProductQuantity' + }; + } else { + cartAction = { + url: $input.data('down-url'), + type: 'decreaseProductQuantity' + } + } + + return cartAction; + } + + let abortPreviousRequests = () => { + var promise; + while (promises.length > 0) { + promise = promises.pop(); + promise.abort(); + } + }; + + var getTouchSpinInput = ($button) => { + return $($button.parents('.bootstrap-touchspin').find('input')); + }; + + var handleCartAction = (event) => { + event.preventDefault(); + + let $target = $(event.currentTarget); + let dataset = event.currentTarget.dataset; + + let cartAction = parseCartAction($target, event.namespace); + let requestData = { + ajax: '1', + action: 'update' + }; + + if (typeof cartAction === 'undefined') { + return; + } + + abortPreviousRequests(); + $.ajax({ + url: cartAction.url, + method: 'POST', + data: requestData, + dataType: 'json', + beforeSend: function (jqXHR) { + promises.push(jqXHR); + } + }).then(function (resp) { + var $quantityInput = getTouchSpinInput($target); + $quantityInput.val(resp.quantity); + + // Refresh cart preview + prestashop.emit('updateCart', { + reason: dataset + }); + }).fail((resp) => { + prestashop.emit('handleError', { + eventType: 'updateProductInCart', + resp: resp, + cartAction: cartAction.type + }); + }); + }; + + $body.on( + 'click', + '[data-link-action="delete-from-cart"], [data-link-action="remove-voucher"]', + handleCartAction + ); + + $body.on('touchspin.on.startdownspin', spinnerSelector, handleCartAction); + $body.on('touchspin.on.startupspin', spinnerSelector, handleCartAction); + + function sendUpdateQuantityInCartRequest(updateQuantityInCartUrl, requestData, $target) { + abortPreviousRequests(); + + return $.ajax({ + url: updateQuantityInCartUrl, + method: 'POST', + data: requestData, + dataType: 'json', + beforeSend: function (jqXHR) { + promises.push(jqXHR); + } + }).then(function (resp) { + $target.val(resp.quantity); + + var dataset; + if ($target && $target.dataset) { + dataset = $target.dataset; + } else { + dataset = resp; + } + + + // Refresh cart preview + prestashop.emit('updateCart', { + reason: dataset + }); + }).fail((resp) => { + prestashop.emit('handleError', {eventType: 'updateProductQuantityInCart', resp: resp}) + }); + } + + function getRequestData(quantity) { + return { + ajax: '1', + qty: Math.abs(quantity), + action: 'update', + op: getQuantityChangeType(quantity) + } + } + + function getQuantityChangeType($quantity) { + return ($quantity > 0) ? 'up' : 'down'; + } + + function updateProductQuantityInCart(event) + { + let $target = $(event.currentTarget); + let updateQuantityInCartUrl = $target.data('update-url'); + let baseValue = $target.attr('value'); + + // There should be a valid product quantity in cart + let targetValue = $target.val(); + if (targetValue != parseInt(targetValue) || targetValue < 0 || isNaN(targetValue)) { + $target.val(baseValue); + + return; + } + + // There should be a new product quantity in cart + let qty = targetValue - baseValue; + if (qty == 0) { + return; + } + + var requestData = getRequestData(qty); + + sendUpdateQuantityInCartRequest(updateQuantityInCartUrl, requestData, $target); + } + + $body.on( + 'focusout', + productLineInCartSelector, + (event) => { + updateProductQuantityInCart(event); + } + ); + + $body.on( + 'keyup', + productLineInCartSelector, + (event) => { + if (event.keyCode == 13) { + updateProductQuantityInCart(event); + } + } + ); + + $body.on( + 'click', + '.js-discount .code', + (event) => { + event.stopPropagation(); + + var $code = $(event.currentTarget); + var $discountInput = $('[name=discount_name]'); + + $discountInput.val($code.text()); + + return false; + } + ) +}); + + diff --git a/themes/at_movic/_dev/js/checkout.js b/themes/at_movic/_dev/js/checkout.js new file mode 100644 index 00000000..43c8eda2 --- /dev/null +++ b/themes/at_movic/_dev/js/checkout.js @@ -0,0 +1,68 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +import $ from 'jquery'; +import prestashop from 'prestashop'; + +function setUpCheckout() { + if ($('.js-cancel-address').length !== 0) { + $('.checkout-step:not(.js-current-step) .step-title').addClass('not-allowed'); + } + + $('.js-terms a').on('click', (event) => { + event.preventDefault(); + var url = $(event.target).attr('href'); + if (url) { + // TODO: Handle request if no pretty URL + url += `?content_only=1`; + $.get(url, (content) => { + $('#modal').find('.js-modal-content').html($(content).find('.page-cms').contents()); + }).fail((resp) => { + prestashop.emit('handleError', {eventType: 'clickTerms', resp: resp}); + }); + } + + $('#modal').modal('show'); + }); + + $('.js-gift-checkbox').on('click', (event) => { + $('#gift').collapse('toggle'); + }); +} + +$(document).ready(() => { + if ($('body#checkout').length === 1) { + setUpCheckout(); + } + + prestashop.on('updatedDeliveryForm', (params) => { + if (typeof params.deliveryOption === 'undefined' || 0 === params.deliveryOption.length) { + return; + } + // Hide all carrier extra content ... + $(".carrier-extra-content").hide(); + // and show the one related to the selected carrier + params.deliveryOption.next(".carrier-extra-content").slideDown(); + }); +}); diff --git a/themes/at_movic/_dev/js/components/block-cart.js b/themes/at_movic/_dev/js/components/block-cart.js new file mode 100644 index 00000000..9c948be0 --- /dev/null +++ b/themes/at_movic/_dev/js/components/block-cart.js @@ -0,0 +1,49 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +import prestashop from 'prestashop'; +import $ from 'jquery'; + +prestashop.blockcart = prestashop.blockcart || {}; + +prestashop.blockcart.showModal = (html) => { + function getBlockCartModal() { + return $('#blockcart-modal'); + } + + let $blockCartModal = getBlockCartModal(); + if ($blockCartModal.length){ + $blockCartModal.remove(); + } + + $('body').append(html); + + $blockCartModal = getBlockCartModal(); + $blockCartModal.modal('show').on('hidden.bs.modal', (event) => { + prestashop.emit('updateProduct', { + reason: event.currentTarget.dataset + }); + }); +}; + diff --git a/themes/at_movic/_dev/js/components/drop-down.js b/themes/at_movic/_dev/js/components/drop-down.js new file mode 100644 index 00000000..7625adc5 --- /dev/null +++ b/themes/at_movic/_dev/js/components/drop-down.js @@ -0,0 +1,54 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +import $ from 'jquery'; + +export default class DropDown { + constructor(el) { + this.el = el; + } + init() { + this.el.on('show.bs.dropdown', function(e, el) { + if (el) { + $(`#${el}`).find('.dropdown-menu').first().stop(true, true).slideDown(); + } else { + $(e.target).find('.dropdown-menu').first().stop(true, true).slideDown(); + } + }); + + this.el.on('hide.bs.dropdown', function(e, el) { + if (el) { + $(`#${el}`).find('.dropdown-menu').first().stop(true, true).slideUp(); + } else { + $(e.target).find('.dropdown-menu').first().stop(true, true).slideUp(); + } + }); + + this.el.find('select.link').each(function(idx, el) { + $(el).on('change', function(event) { + window.location = $(this).val(); + }); + }); + } +} diff --git a/themes/at_movic/_dev/js/components/form.js b/themes/at_movic/_dev/js/components/form.js new file mode 100644 index 00000000..a81d0963 --- /dev/null +++ b/themes/at_movic/_dev/js/components/form.js @@ -0,0 +1,55 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +import $ from 'jquery'; + +export default class Form { + init(){ + this.parentFocus(); + this.togglePasswordVisibility(); + } + + parentFocus() { + $('.js-child-focus').focus(function () { + $(this).closest('.js-parent-focus').addClass('focus'); + }); + $('.js-child-focus').focusout(function () { + $(this).closest('.js-parent-focus').removeClass('focus'); + }); + } + + togglePasswordVisibility() { + $('button[data-action="show-password"]').on('click', function () { + var elm = $(this).closest('.input-group').children('input.js-visible-password'); + if (elm.attr('type') === 'password') { + elm.attr('type', 'text'); + $(this).text($(this).data('textHide')); + } else { + elm.attr('type', 'password'); + $(this).text($(this).data('textShow')); + } + + }); + } +} diff --git a/themes/at_movic/_dev/js/components/index.php b/themes/at_movic/_dev/js/components/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/_dev/js/components/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/_dev/js/components/product-miniature.js b/themes/at_movic/_dev/js/components/product-miniature.js new file mode 100644 index 00000000..8a6bc549 --- /dev/null +++ b/themes/at_movic/_dev/js/components/product-miniature.js @@ -0,0 +1,56 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +import $ from 'jquery'; + +export default class ProductMinitature { + init(){ + $('.js-product-miniature').each((index, element) => { + /** + const FLAG_MARGIN = 10; + let $percent = $(element).find('.discount-percentage'); + let $onsale = $(element).find('.on-sale'); + let $new = $(element).find('.new'); + if($percent.length){ + $new.css('top', $percent.height() * 2 + FLAG_MARGIN); + $percent.css('top',-$(element).find('.thumbnail-container').height() + $(element).find('.product-description').height() + FLAG_MARGIN); + } + if($onsale.length){ + $percent.css('top', parseFloat($percent.css('top')) + $onsale.height() + FLAG_MARGIN); + $new.css('top', ($percent.height() * 2 + $onsale.height()) + FLAG_MARGIN * 2); + } + */ + if($(element).find('.color').length > 5){ + let count = 0; + $(element).find('.color').each((index, element) =>{ + if(index > 4){ + $(element).hide(); + count ++; + } + }); + $(element).find('.js-count').append(`+${count}`); + } + }); + } +} diff --git a/themes/at_movic/_dev/js/components/product-select.js b/themes/at_movic/_dev/js/components/product-select.js new file mode 100644 index 00000000..154b5a31 --- /dev/null +++ b/themes/at_movic/_dev/js/components/product-select.js @@ -0,0 +1,87 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +import $ from 'jquery'; +import 'velocity-animate'; + +export default class ProductSelect { + init() { + const MAX_THUMBS = 5; + const FLAG_MARGIN = 10; + let $arrows = $('.js-modal-arrows'); + let $thumbnails = $('.js-modal-product-images'); + /**let $onsale = $('.on-sale');*/ + + $('body').on('click','.js-modal-thumb', (event) => { + if($('.js-modal-thumb').hasClass('selected')){ + $('.js-modal-thumb').removeClass('selected'); + } + $(event.currentTarget).addClass('selected'); + $('.js-modal-product-cover').attr('src', $(event.target).data('image-large-src')); + $('.js-modal-product-cover').attr('title', $(event.target).attr('title')); + $('.js-modal-product-cover').attr('alt', $(event.target).attr('alt')); + }) + .on('click', 'aside#thumbnails', (event) => { + if (event.target.id == 'thumbnails'){ + $('#product-modal').modal('hide'); + } + }); + /** + if($onsale.length && $('#product').length){ + $('.new').css('top',$onsale.height() + FLAG_MARGIN); + } + */ + if ($('.js-modal-product-images li').length <= MAX_THUMBS) { + $arrows.css('opacity', '.2'); + } else { + /** + $arrows.on('click', (event) => { + if ($(event.target).hasClass('arrow-up') && $thumbnails.position().top < 0) { + this.move('up'); + $('.js-modal-arrow-down').css('opacity','1'); + } else if ($(event.target).hasClass('arrow-down') && $thumbnails.position().top + $thumbnails.height() > $('.js-modal-mask').height()) { + this.move('down'); + $('.js-modal-arrow-up').css('opacity','1'); + } + }); + */ + } + } + + move(direction) { + const THUMB_MARGIN = 10; + var $thumbnails = $('.js-modal-product-images'); + var thumbHeight = $('.js-modal-product-images li img').height() + THUMB_MARGIN; + var currentPosition = $thumbnails.position().top; + $thumbnails.velocity({ + translateY: (direction === 'up') ? currentPosition + thumbHeight : currentPosition - thumbHeight + },function(){ + if ($thumbnails.position().top >= 0) { + $('.js-modal-arrow-up').css('opacity','.2'); + } else if ($thumbnails.position().top + $thumbnails.height() <= $('.js-modal-mask').height()) { + $('.js-modal-arrow-down').css('opacity','.2'); + } + }); + } +} diff --git a/themes/at_movic/_dev/js/components/top-menu.js b/themes/at_movic/_dev/js/components/top-menu.js new file mode 100644 index 00000000..d042567d --- /dev/null +++ b/themes/at_movic/_dev/js/components/top-menu.js @@ -0,0 +1,82 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +import $ from 'jquery'; +import DropDown from './drop-down'; + +export default class TopMenu extends DropDown { + init() { + let elmId; + let self = this; + this.el.find('li').hover((e) => { + if (this.el.parent().hasClass('mobile')) { + return; + } + if (elmId !== $(e.currentTarget).attr('id')) { + if ($(e.target).data('depth') === 0) { + $(`#${elmId} .js-sub-menu`).hide(); + } + elmId = $(e.currentTarget).attr('id'); + } + if (elmId && $(e.target).data('depth') === 0) { + $(`#${elmId} .js-sub-menu`).show().css({ + top: $(`#${elmId}`).height() + $(`#${elmId}`).position().top + }); + } + }); + $('#menu-icon').on('click', function() { + $('#mobile_top_menu_wrapper').toggle(); + self.toggleMobileMenu(); + }); + $('.js-top-menu').mouseleave(() => { + if (this.el.parent().hasClass('mobile')) { + return; + } + $(`#${elmId} .js-sub-menu`).hide(); + }); + this.el.on('click', (e) => { + if (this.el.parent().hasClass('mobile')) { + return; + } + e.stopPropagation(); + }); + prestashop.on('responsive update', function(event) { + $('.js-sub-menu').removeAttr('style'); + self.toggleMobileMenu(); + }); + super.init(); + } + + toggleMobileMenu() { + if ($('#mobile_top_menu_wrapper').is(":visible")) { + $('#notifications').hide(); + $('#wrapper').hide(); + $('#footer').hide(); + } else { + $('#notifications').show(); + $('#wrapper').show(); + $('#footer').show(); + } + } +} diff --git a/themes/at_movic/_dev/js/customer.js b/themes/at_movic/_dev/js/customer.js new file mode 100644 index 00000000..8163c36d --- /dev/null +++ b/themes/at_movic/_dev/js/customer.js @@ -0,0 +1,42 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +import $ from 'jquery'; + +function initRmaItemSelector() { + $('#order-return-form table thead input[type=checkbox]').on('click', function() { + var checked = $(this).prop('checked'); + $('#order-return-form table tbody input[type=checkbox]').each(function(_, checkbox) { + $(checkbox).prop('checked', checked); + }); + }); +} + +function setupCustomerScripts() { + if ($('body#order-detail')) { + initRmaItemSelector(); + } +} + +$(document).ready(setupCustomerScripts); diff --git a/themes/at_movic/_dev/js/index.php b/themes/at_movic/_dev/js/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/_dev/js/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/_dev/js/lib/bootstrap-filestyle.min.js b/themes/at_movic/_dev/js/lib/bootstrap-filestyle.min.js new file mode 100644 index 00000000..f78f410a --- /dev/null +++ b/themes/at_movic/_dev/js/lib/bootstrap-filestyle.min.js @@ -0,0 +1,25 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +(function($){var nextId=0;var Filestyle=function(element,options){this.options=options;this.$elementFilestyle=[];this.$element=$(element)};Filestyle.prototype={clear:function(){this.$element.val("");this.$elementFilestyle.find(":text").val("");this.$elementFilestyle.find(".badge").remove()},destroy:function(){this.$element.removeAttr("style").removeData("filestyle");this.$elementFilestyle.remove()},disabled:function(value){if(value===true){if(!this.options.disabled){this.$element.attr("disabled","true");this.$elementFilestyle.find("label").attr("disabled","true");this.options.disabled=true}}else{if(value===false){if(this.options.disabled){this.$element.removeAttr("disabled");this.$elementFilestyle.find("label").removeAttr("disabled");this.options.disabled=false}}else{return this.options.disabled}}},buttonBefore:function(value){if(value===true){if(!this.options.buttonBefore){this.options.buttonBefore=true;if(this.options.input){this.$elementFilestyle.remove();this.constructor();this.pushNameFiles()}}}else{if(value===false){if(this.options.buttonBefore){this.options.buttonBefore=false;if(this.options.input){this.$elementFilestyle.remove();this.constructor();this.pushNameFiles()}}}else{return this.options.buttonBefore}}},icon:function(value){if(value===true){if(!this.options.icon){this.options.icon=true;this.$elementFilestyle.find("label").prepend(this.htmlIcon())}}else{if(value===false){if(this.options.icon){this.options.icon=false;this.$elementFilestyle.find(".icon-span-filestyle").remove()}}else{return this.options.icon}}},input:function(value){if(value===true){if(!this.options.input){this.options.input=true;if(this.options.buttonBefore){this.$elementFilestyle.append(this.htmlInput())}else{this.$elementFilestyle.prepend(this.htmlInput())}this.$elementFilestyle.find(".badge").remove();this.pushNameFiles();this.$elementFilestyle.find(".group-span-filestyle").addClass("input-group-btn")}}else{if(value===false){if(this.options.input){this.options.input=false;this.$elementFilestyle.find(":text").remove();var files=this.pushNameFiles();if(files.length>0&&this.options.badge){this.$elementFilestyle.find("label").append(' '+files.length+"")}this.$elementFilestyle.find(".group-span-filestyle").removeClass("input-group-btn")}}else{return this.options.input}}},size:function(value){if(value!==undefined){var btn=this.$elementFilestyle.find("label"),input=this.$elementFilestyle.find("input");btn.removeClass("btn-lg btn-sm");input.removeClass("input-lg input-sm");if(value!="nr"){btn.addClass("btn-"+value);input.addClass("input-"+value)}}else{return this.options.size}},placeholder:function(value){if(value!==undefined){this.options.placeholder=value;this.$elementFilestyle.find("input").attr("placeholder",value)}else{return this.options.placeholder}},buttonText:function(value){if(value!==undefined){this.options.buttonText=value;this.$elementFilestyle.find("label .buttonText").html(this.options.buttonText)}else{return this.options.buttonText}},buttonName:function(value){if(value!==undefined){this.options.buttonName=value;this.$elementFilestyle.find("label").attr({"class":"btn "+this.options.buttonName})}else{return this.options.buttonName}},iconName:function(value){if(value!==undefined){this.$elementFilestyle.find(".icon-span-filestyle").attr({"class":"icon-span-filestyle "+this.options.iconName})}else{return this.options.iconName}},htmlIcon:function(){if(this.options.icon){return' '}else{return""}},htmlInput:function(){if(this.options.input){return' '}else{return""}},pushNameFiles:function(){var content="",files=[];if(this.$element[0].files===undefined){files[0]={name:this.$element[0]&&this.$element[0].value}}else{files=this.$element[0].files}for(var i=0;i
    ";html=_self.options.buttonBefore?btn+_self.htmlInput():_self.htmlInput()+btn;_self.$elementFilestyle=$('
    '+html+"
    ");_self.$elementFilestyle.find(".group-span-filestyle").attr("tabindex","0").keypress(function(e){if(e.keyCode===13||e.charCode===32){_self.$elementFilestyle.find("label").click();return false}});_self.$element.css({position:"absolute",clip:"rect(0px 0px 0px 0px)"}).attr("tabindex","-1").after(_self.$elementFilestyle);if(_self.options.disabled){_self.$element.attr("disabled","true")}_self.$element.change(function(){var files=_self.pushNameFiles();if(_self.options.input==false&&_self.options.badge){if(_self.$elementFilestyle.find(".badge").length==0){_self.$elementFilestyle.find("label").append(' '+files.length+"")}else{if(files.length==0){_self.$elementFilestyle.find(".badge").remove()}else{_self.$elementFilestyle.find(".badge").html(files.length)}}}else{_self.$elementFilestyle.find(".badge").remove()}});if(window.navigator.userAgent.search(/firefox/i)>-1){_self.$elementFilestyle.find("label").click(function(){_self.$element.click();return false})}}};var old=$.fn.filestyle;$.fn.filestyle=function(option,value){var get="",element=this.each(function(){if($(this).attr("type")==="file"){var $this=$(this),data=$this.data("filestyle"),options=$.extend({},$.fn.filestyle.defaults,option,typeof option==="object"&&option);if(!data){$this.data("filestyle",(data=new Filestyle(this,options)));data.constructor()}if(typeof option==="string"){get=data[option](value)}}});if(typeof get!==undefined){return get}else{return element}};$.fn.filestyle.defaults={buttonText:choosefile_text,iconName:"glyphicon glyphicon-folder-open",buttonName:"btn-default",size:"nr",input:true,badge:true,icon:true,buttonBefore:false,disabled:false,placeholder:""};$.fn.filestyle.noConflict=function(){$.fn.filestyle=old;return this};$(function(){$(".filestyle").each(function(){var $this=$(this),options={input:$this.attr("data-input")==="false"?false:true,icon:$this.attr("data-icon")==="false"?false:true,buttonBefore:$this.attr("data-buttonBefore")==="true"?true:false,disabled:$this.attr("data-disabled")==="true"?true:false,size:$this.attr("data-size"),buttonText:$this.attr("data-buttonText"),buttonName:$this.attr("data-buttonName"),iconName:$this.attr("data-iconName"),badge:$this.attr("data-badge")==="false"?false:true,placeholder:$this.attr("data-placeholder")};$this.filestyle(options)})})})(window.jQuery); \ No newline at end of file diff --git a/themes/at_movic/_dev/js/lib/index.php b/themes/at_movic/_dev/js/lib/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/_dev/js/lib/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/_dev/js/lib/jquery.scrollbox.min.js b/themes/at_movic/_dev/js/lib/jquery.scrollbox.min.js new file mode 100644 index 00000000..9e9d7801 --- /dev/null +++ b/themes/at_movic/_dev/js/lib/jquery.scrollbox.min.js @@ -0,0 +1,25 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +(function($){$.fn.scrollbox=function(config){var defConfig={linear:false,startDelay:2,delay:3,step:5,speed:32,switchItems:1,direction:"vertical",distance:"auto",autoPlay:true,onMouseOverPause:true,paused:false,queue:null,listElement:"ul",listItemElement:"li",infiniteLoop:true,switchAmount:0,afterForward:null,afterBackward:null,triggerStackable:false};config=$.extend(defConfig,config);config.scrollOffset=config.direction==="vertical"?"scrollTop":"scrollLeft";if(config.queue){config.queue=$("#"+config.queue)}return this.each(function(){var container=$(this),containerUL,scrollingId=null,nextScrollId=null,paused=false,releaseStack,backward,forward,resetClock,scrollForward,scrollBackward,forwardHover,pauseHover,switchCount=0,stackedTriggerIndex=0;if(config.onMouseOverPause){container.bind("mouseover",function(){paused=true});container.bind("mouseout",function(){paused=false})}containerUL=container.children(config.listElement+":first-child");if(config.infiniteLoop===false&&config.switchAmount===0){config.switchAmount=containerUL.children().length}scrollForward=function(){if(paused){return}var curLi,i,newScrollOffset,scrollDistance,theStep;var offsetTop=$(window).scrollTop();curLi=containerUL.children(config.listItemElement+":first-child");scrollDistance=config.distance!=="auto"?config.distance:config.direction==="vertical"?curLi.outerHeight(true):curLi.outerWidth(true);if(!config.linear){theStep=Math.max(3,parseInt((scrollDistance-container[0][config.scrollOffset])*.3,10));newScrollOffset=Math.min(container[0][config.scrollOffset]+theStep,scrollDistance)}else{newScrollOffset=Math.min(container[0][config.scrollOffset]+config.step,scrollDistance)}container[0][config.scrollOffset]=newScrollOffset;if(newScrollOffset>=scrollDistance){for(i=0;i0){containerUL.append(config.queue.find(config.listItemElement)[0]);containerUL.children(config.listItemElement+":first-child").remove()}else{containerUL.append(containerUL.children(config.listItemElement+":first-child"))}++switchCount}container[0][config.scrollOffset]=0;clearInterval(scrollingId);scrollingId=null;$(window).scrollTop(offsetTop);if($.isFunction(config.afterForward)){config.afterForward.call(container,{switchCount:switchCount,currentFirstChild:containerUL.children(config.listItemElement+":first-child")})}if(config.triggerStackable&&stackedTriggerIndex!==0){releaseStack();return}if(config.infiniteLoop===false&&switchCount>=config.switchAmount){return}if(config.autoPlay){nextScrollId=setTimeout(forward,config.delay*1e3)}}};scrollBackward=function(){if(paused){return}var curLi,i,newScrollOffset,scrollDistance,theStep;var offsetTop=$(window).scrollTop();if(container[0][config.scrollOffset]===0){for(i=0;i0&&newScrollOffset<1){newScrollOffset=0};container[0][config.scrollOffset]=newScrollOffset;if(newScrollOffset===0){--switchCount;clearInterval(scrollingId);scrollingId=null;if($.isFunction(config.afterBackward)){config.afterBackward.call(container,{switchCount:switchCount,currentFirstChild:containerUL.children(config.listItemElement+":first-child")})}if(config.triggerStackable&&stackedTriggerIndex!==0){releaseStack();return}if(config.autoPlay){nextScrollId=setTimeout(forward,config.delay*1e3)}}};releaseStack=function(){if(stackedTriggerIndex===0){return}if(stackedTriggerIndex>0){stackedTriggerIndex--;nextScrollId=setTimeout(forward,0)}else{stackedTriggerIndex++;nextScrollId=setTimeout(backward,0)}};forward=function(){clearInterval(scrollingId);scrollingId=setInterval(scrollForward,config.speed)};backward=function(){clearInterval(scrollingId);scrollingId=setInterval(scrollBackward,config.speed)};forwardHover=function(){config.autoPlay=true;paused=false;clearInterval(scrollingId);scrollingId=setInterval(scrollForward,config.speed)};pauseHover=function(){paused=true};resetClock=function(delay){config.delay=delay||config.delay;clearTimeout(nextScrollId);if(config.autoPlay){nextScrollId=setTimeout(forward,config.delay*1e3)}};if(config.autoPlay){nextScrollId=setTimeout(forward,config.startDelay*1e3)}container.bind("resetClock",function(delay){resetClock(delay)});container.bind("forward",function(){if(config.triggerStackable){if(scrollingId!==null){stackedTriggerIndex++}else{forward()}}else{clearTimeout(nextScrollId);forward()}});container.bind("backward",function(){if(config.triggerStackable){if(scrollingId!==null){stackedTriggerIndex--}else{backward()}}else{clearTimeout(nextScrollId);backward()}});container.bind("pauseHover",function(){pauseHover()});container.bind("forwardHover",function(){forwardHover()});container.bind("speedUp",function(event,speed){if(speed==="undefined"){speed=Math.max(1,parseInt(config.speed/2,10))}config.speed=speed});container.bind("speedDown",function(event,speed){if(speed==="undefined"){speed=config.speed*2}config.speed=speed});container.bind("updateConfig",function(event,options){config=$.extend(config,options)})})}})(jQuery); \ No newline at end of file diff --git a/themes/at_movic/_dev/js/listing.js b/themes/at_movic/_dev/js/listing.js new file mode 100644 index 00000000..b61b6909 --- /dev/null +++ b/themes/at_movic/_dev/js/listing.js @@ -0,0 +1,205 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +import $ from 'jquery'; +import prestashop from 'prestashop'; +import 'velocity-animate'; + +import ProductMinitature from './components/product-miniature'; + +$(document).ready(() => { + prestashop.on('clickQuickView', function (elm) { + let data = { + 'action': 'quickview', + 'id_product': elm.dataset.idProduct, + 'id_product_attribute': elm.dataset.idProductAttribute, + }; + $.post(prestashop.urls.pages.product, data, null, 'json').then(function (resp) { + $('body').append(resp.quickview_html); + let productModal = $(`#quickview-modal-${resp.product.id}-${resp.product.id_product_attribute}`); + productModal.modal('show'); + productConfig(productModal); + productModal.on('hidden.bs.modal', function () { + productModal.remove(); + }); + }).fail((resp) => { + prestashop.emit('handleError', {eventType: 'clickQuickView', resp: resp}); + }); + }); + + var productConfig = (qv) => { + const MAX_THUMBS = 4; + var $arrows = $('.js-arrows'); + var $thumbnails = qv.find('.js-qv-product-images'); + $('.js-thumb').on('click', (event) => { + if ($('.js-thumb').hasClass('selected')) { + $('.js-thumb').removeClass('selected'); + } + $(event.currentTarget).addClass('selected'); + $('.js-qv-product-cover').attr('src', $(event.target).data('image-large-src')); + }); + /**DONGND:: fix scroll product image - quickview*/ + + var number_thumb = $thumbnails.find('li').length; + + if (style_scroll_quickview == 'vertical') + { + var mask_size = $thumbnails.parent().height(); + // size_item_quickview = $thumbnails.find('li').height(); + } + else + { + var mask_size = $thumbnails.parent().width(); + // size_item_quickview = $thumbnails.find('li').width(); + } + // console.log($thumbnails); + var size_scroll = size_item_quickview*number_thumb; + var check_arrow_exists = size_scroll - mask_size; + // console.log(size_item_quickview); + // console.log(number_thumb); + // console.log(check_arrow_exists); + if (check_arrow_exists >= size_item_quickview) + { + /** LEO_THEME : FIX QUICKVIEW NOT SCROLL IMAGE*/ + + $('.quickview .js-qv-mask').addClass('scroll'); + $('.js-arrows').addClass('scroll'); + $arrows.show(); + $('.quickview .js-qv-mask').unbind('backward'); + $('.quickview .js-qv-mask').unbind('forward'); + $('.quickview .js-qv-mask').scrollbox({ + direction: style_scroll_quickview, + distance: size_item_quickview, + autoPlay: false, + step: 1, + }); + $('.arrow-up').click(function () { + $('.quickview .js-qv-mask').trigger('backward'); + }); + $('.arrow-down').click(function () { + $('.quickview .js-qv-mask').trigger('forward'); + }); + } + else + { + $('.quickview .js-qv-mask').removeClass('scroll'); + $arrows.hide(); + $('.js-arrows').removeClass('scroll'); + } + qv.find('#quantity_wanted').TouchSpin({ + verticalbuttons: true, + verticalupclass: 'material-icons touchspin-up', + verticaldownclass: 'material-icons touchspin-down', + buttondown_class: 'btn btn-touchspin js-touchspin', + buttonup_class: 'btn btn-touchspin js-touchspin', + min: 1, + max: 1000000 + }); + }; + var move = (direction) => { + const THUMB_MARGIN = 20; + var $thumbnails = $('.js-qv-product-images'); + var thumbHeight = $('.js-qv-product-images li img').height() + THUMB_MARGIN; + var currentPosition = $thumbnails.position().top; + $thumbnails.velocity({ + translateY: (direction === 'up') ? currentPosition + thumbHeight : currentPosition - thumbHeight + }, function () { + if ($thumbnails.position().top >= 0) { + $('.arrow-up').css('opacity', '.2'); + } else if ($thumbnails.position().top + $thumbnails.height() <= $('.js-qv-mask').height()) { + $('.arrow-down').css('opacity', '.2'); + } + }); + }; + $('body').on('click', '#search_filter_toggler', function () { + $('#search_filters_wrapper').removeClass('hidden-sm-down'); + $('#content-wrapper').addClass('hidden-sm-down'); + $('#footer').addClass('hidden-sm-down'); + }); + $('#search_filter_controls .clear').on('click', function () { + $('#search_filters_wrapper').addClass('hidden-sm-down'); + $('#content-wrapper').removeClass('hidden-sm-down'); + $('#footer').removeClass('hidden-sm-down'); + }); + $('#search_filter_controls .ok').on('click', function () { + $('#search_filters_wrapper').addClass('hidden-sm-down'); + $('#content-wrapper').removeClass('hidden-sm-down'); + $('#footer').removeClass('hidden-sm-down'); + }); + + const parseSearchUrl = function (event) { + // if (event.target.dataset.searchUrl !== undefined) { + // return event.target.dataset.searchUrl; + // } + + // if ($(event.target).parent()[0].dataset.searchUrl === undefined) { + // throw new Error('Can not parse search URL'); + // } + + // return $(event.target).parent()[0].dataset.searchUrl; + if (event.target.getAttribute('data-search-url') !== undefined) { + return event.target.getAttribute('data-search-url'); + } + + if ($(event.target).parent()[0].getAttribute('data-search-url') === undefined) { + throw new Error('Can not parse search URL'); + } + + return $(event.target).parent()[0].getAttribute('data-search-url'); + }; + + $('body').on('change', '#search_filters input[data-search-url]', function (event) { + prestashop.emit('updateFacets', parseSearchUrl(event)); + }); + + $('body').on('click', '.js-search-filters-clear-all', function (event) { + prestashop.emit('updateFacets', parseSearchUrl(event)); + }); + + $('body').on('click', '.js-search-link', function (event) { + event.preventDefault(); + prestashop.emit('updateFacets',$(event.target).closest('a').get(0).href); + }); + + $('body').on('change', '#search_filters select', function (event) { + const form = $(event.target).closest('form'); + prestashop.emit('updateFacets', '?' + form.serialize()); + }); + + prestashop.on('updateProductList', (data) => { + updateProductListDOM(data); + }); +}); + +function updateProductListDOM (data) { + $('#search_filters').replaceWith(data.rendered_facets); + $('#js-active-search-filters').replaceWith(data.rendered_active_filters); + $('#js-product-list-top').replaceWith(data.rendered_products_top); + $('#js-product-list').replaceWith(data.rendered_products); + $('#js-product-list-bottom').replaceWith(data.rendered_products_bottom); + + let productMinitature = new ProductMinitature(); + productMinitature.init(); + +} diff --git a/themes/at_movic/_dev/js/product.js b/themes/at_movic/_dev/js/product.js new file mode 100644 index 00000000..193600ce --- /dev/null +++ b/themes/at_movic/_dev/js/product.js @@ -0,0 +1,272 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +import $ from 'jquery'; + +$(document).ready(function () { + /**DONGND:: check if display arrow*/ + createProductSpin(); + createInputFile(); + coverImage(); + imageScrollBox(false, false); + + prestashop.on('updatedProduct', function (event) { + createInputFile(); + coverImage(); + if (event && event.product_minimal_quantity) { + const minimalProductQuantity = parseInt(event.product_minimal_quantity, 10); + const quantityInputSelector = '#quantity_wanted'; + let quantityInput = $(quantityInputSelector); + + // @see http://www.virtuosoft.eu/code/bootstrap-touchspin/ about Bootstrap TouchSpin + quantityInput.trigger('touchspin.updatesettings', {min: minimalProductQuantity}); + } + /**LEO_THEME : FIX PRODUCT PAGE NOT SCROLL IMAGE*/ + $('.js-product-images-modal').replaceWith(event.product_images_modal); + imageScrollBox(false, true); + $($('.tabs .nav-link.active').attr('href')).addClass('active').removeClass('fade'); + }); + + /**DONGND:: fix scroll product image when resize*/ + $(window).resize(function () { + if (style_scroll_quickview_attr == 'vertical') + { + var check_li_item_first_load = $('.quickview .js-qv-product-images li').height(); + } + else + { + var check_li_item_first_load = $('.quickview .js-qv-product-images li').width(); + }; + if (check_li_item_first_load > 0) + { + imageScrollBox(true, true); + } + else + { + imageScrollBox(true, false); + } + }); + + function coverImage() { + $('.js-thumb').on( + 'click', + (event) => { + $('.js-modal-product-cover').attr('src',$(event.target).data('image-large-src')); + $('.selected').removeClass('selected'); + $(event.target).addClass('selected'); + $('.js-qv-product-cover').prop('src', $(event.currentTarget).data('image-large-src')); + } + ); + } + + function imageScrollBox(checkupdate, checkupdatequickview) + { + /**DONGND:: fix scroll product image - product page*/ + + var number_thumb_page = $('#main .js-qv-product-images li').length; + + if (style_scroll_page == 'vertical') + { + var mask_size_page = $('#main .js-qv-mask').height(); + if (checkupdate == true) + { + size_item_page = $('#main .js-qv-product-images li').height(); + }; + } + else + { + var mask_size_page = $('#main .js-qv-mask').width(); + if (checkupdate == true) + { + size_item_page = $('#main .js-qv-product-images li').width(); + }; + }; + var size_scroll_page = size_item_page*number_thumb_page; + var check_arrow_page_exists = size_scroll_page - mask_size_page; + if (check_arrow_page_exists >= size_item_page) + { + $('#main .js-qv-mask').addClass('scroll'); + $('#main .scroll-box-arrows').addClass('scroll'); + + $('#main .js-qv-mask').unbind('backward'); + $('#main .js-qv-mask').unbind('forward'); + $('#main .js-qv-mask').scrollbox({ + direction: style_scroll_page, + distance: size_item_page, + autoPlay: false, + step: 1, + }); + + $('#main .scroll-box-arrows .left').click(function () { + $('#main .js-qv-mask').trigger('backward'); + }); + $('#main .scroll-box-arrows .right').click(function () { + $('#main .js-qv-mask').trigger('forward'); + }); + } else { + $('#main .js-qv-mask').removeClass('scroll'); + $('#main .scroll-box-arrows').removeClass('scroll'); + }; + + /**DONGND:: fix scroll product image - quickview when change attribute*/ + if (checkupdatequickview == true) + { + var number_thumb_quickview = $('.quickview .js-qv-product-images li').length; + + if (style_scroll_quickview_attr == 'vertical') + { + var mask_size_quickview = $('.quickview .js-qv-mask').height(); + if (checkupdate == true || checkupdate == false) + { + size_item_quickview_attr = $('.quickview .js-qv-product-images li').height(); + } + } + else + { + var mask_size_quickview = $('.quickview .js-qv-mask').width(); + if (checkupdate == true || checkupdate == false) + { + size_item_quickview_attr = $('.quickview .js-qv-product-images li').width(); + } + }; + + var size_scroll_quickview = size_item_quickview_attr*number_thumb_quickview; + var check_arrow_quickview_exists = size_scroll_quickview - mask_size_quickview; + + // console.log(checkupdate); + // console.log(size_item_quickview_attr); + // console.log(number_thumb_quickview); + // console.log(size_scroll_quickview); + // console.log(mask_size_quickview); + // console.log(check_arrow_quickview_exists); + if (check_arrow_quickview_exists >= size_item_quickview_attr) + { + $('.quickview .js-qv-mask').addClass('scroll'); + $('.quickview .js-arrows').addClass('scroll'); + $('.quickview .js-arrows').show(); + $('.quickview .js-qv-mask').unbind('backward'); + $('.quickview .js-qv-mask').unbind('forward'); + $('.quickview .js-qv-mask').scrollbox({ + direction: style_scroll_quickview_attr, + distance: size_item_quickview_attr, + autoPlay: false, + step: 1, + }); + $('.quickview .arrow-up').click(function () { + $('.quickview .js-qv-mask').trigger('backward'); + }); + $('.quickview .arrow-down').click(function () { + $('.quickview .js-qv-mask').trigger('forward'); + }); + + } else { + $('.quickview .js-qv-mask').removeClass('scroll'); + $('.quickview .js-arrows').removeClass('scroll'); + $('.quickview .js-arrows').hide(); + }; + } + /**DONGND:: fix scroll product image at popup - product page*/ + + var number_thumb_popup = $('.js-product-images-modal .js-modal-product-images li').length; + + if (style_scroll_popup == 'vertical') + { + var mask_size_popup = $('.js-product-images-modal .js-modal-mask').height(); + if (checkupdate == true && $('.js-product-images-modal .js-modal-product-images li').height() != 0) + { + size_item_popup = $('.js-product-images-modal .js-modal-product-images li').height(); + }; + } + else + { + var mask_size_popup = $('.js-product-images-modal .js-modal-mask').width(); + if (checkupdate == true && $('.js-product-images-modal .js-modal-product-images li').width() != 0) + { + size_item_popup = $('.js-product-images-modal .js-modal-product-images li').width(); + }; + }; + var size_scroll_popup = size_item_popup*number_thumb_popup; + var check_arrow_popup_exists = size_scroll_popup - mask_size_popup; + if (check_arrow_popup_exists >= size_item_popup) + { + $('.js-product-images-modal .js-modal-mask').addClass('scroll'); + $('.js-modal-arrows').addClass('scroll'); + $('.js-product-images-modal .js-modal-mask').unbind('backward'); + $('.js-product-images-modal .js-modal-mask').unbind('forward'); + $('.js-product-images-modal .js-modal-mask').scrollbox({ + direction: style_scroll_popup, + distance: size_item_popup, + autoPlay: false, + step: 1, + }); + $('.arrow-up').click(function () { + $('.js-product-images-modal .js-modal-mask').trigger('backward'); + }); + $('.arrow-down').click(function () { + $('.js-product-images-modal .js-modal-mask').trigger('forward'); + }); + } else { + $('.js-modal-arrows').hide(); + }; + } + + function createInputFile() + { + $('.js-file-input').on('change', (event) => { + let target, file; + + if ((target = $(event.currentTarget)[0]) && (file = target.files[0])) { + $(target).prev().text(file.name); + } + }); + } + + function createProductSpin() + { + let quantityInput = $('#quantity_wanted'); + quantityInput.TouchSpin({ + verticalbuttons: true, + verticalupclass: 'material-icons touchspin-up', + verticaldownclass: 'material-icons touchspin-down', + buttondown_class: 'btn btn-touchspin js-touchspin', + buttonup_class: 'btn btn-touchspin js-touchspin', + min: parseInt(quantityInput.attr('min'), 10), + max: 1000000 + }); + + var quantity = quantityInput.val(); + quantityInput.on('keyup change', function (event) { + const newQuantity = $(this).val(); + if (newQuantity !== quantity) { + quantity = newQuantity; + let $productRefresh = $('.product-refresh'); + $(event.currentTarget).trigger('touchspin.stopspin'); + $productRefresh.trigger('click', {eventType: 'updatedProductQuantity'}); + } + event.preventDefault(); + + return false; + }); + } +}); diff --git a/themes/at_movic/_dev/js/responsive.js b/themes/at_movic/_dev/js/responsive.js new file mode 100644 index 00000000..4897e702 --- /dev/null +++ b/themes/at_movic/_dev/js/responsive.js @@ -0,0 +1,79 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +import $ from 'jquery'; +import prestashop from 'prestashop'; + +prestashop.responsive = prestashop.responsive || {}; + +prestashop.responsive.current_width = window.innerWidth; +prestashop.responsive.min_width = 768; +prestashop.responsive.mobile = prestashop.responsive.current_width < prestashop.responsive.min_width; + +function swapChildren(obj1, obj2) +{ + var temp = obj2.children().detach(); + obj2.empty().append(obj1.children().detach()); + obj1.append(temp); +} + +function toggleMobileStyles() +{ + if (prestashop.responsive.mobile) { + $("*[id^='_desktop_']").each(function(idx, el) { + var target = $('#' + el.id.replace('_desktop_', '_mobile_')); + if (target.length) { + swapChildren($(el), target); + } + }); + } else { + $("*[id^='_mobile_']").each(function(idx, el) { + var target = $('#' + el.id.replace('_mobile_', '_desktop_')); + if (target.length) { + swapChildren($(el), target); + } + }); + } + prestashop.emit('responsive update', { + mobile: prestashop.responsive.mobile + }); +} + +$(window).on('resize', function() { + var _cw = prestashop.responsive.current_width; + var _mw = prestashop.responsive.min_width; + var _w = window.innerWidth; + var _toggle = (_cw >= _mw && _w < _mw) || (_cw < _mw && _w >= _mw); + prestashop.responsive.current_width = _w; + prestashop.responsive.mobile = prestashop.responsive.current_width < prestashop.responsive.min_width; + if (_toggle) { + toggleMobileStyles(); + } +}); + +$(document).ready(function() { + if (prestashop.responsive.mobile) { + toggleMobileStyles(); + } +}); diff --git a/themes/at_movic/_dev/js/theme.js b/themes/at_movic/_dev/js/theme.js new file mode 100644 index 00000000..c73f9e6b --- /dev/null +++ b/themes/at_movic/_dev/js/theme.js @@ -0,0 +1,69 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +import 'expose-loader?Tether!tether'; +import 'bootstrap/dist/js/bootstrap.min'; +import 'flexibility'; +import 'bootstrap-touchspin'; + +import './responsive'; +import './checkout'; +import './customer'; +import './listing'; +import './product'; +import './cart'; + +import DropDown from './components/drop-down'; +import Form from './components/form'; +import ProductMinitature from './components/product-miniature'; +import ProductSelect from './components/product-select'; +import TopMenu from './components/top-menu'; + +import prestashop from 'prestashop'; +import EventEmitter from 'events'; + +import './lib/bootstrap-filestyle.min'; +import './lib/jquery.scrollbox.min'; + +import './components/block-cart'; + +// "inherit" EventEmitter +for (var i in EventEmitter.prototype) { + prestashop[i] = EventEmitter.prototype[i]; +} + +$(document).ready(() => { + let dropDownEl = $('.js-dropdown'); + const form = new Form(); + let topMenuEl = $('.js-top-menu ul[data-depth="0"]'); + let dropDown = new DropDown(dropDownEl); + let topMenu = new TopMenu(topMenuEl); + let productMinitature = new ProductMinitature(); + let productSelect = new ProductSelect(); + dropDown.init(); + form.init(); + topMenu.init(); + productMinitature.init(); + productSelect.init(); +}); diff --git a/themes/at_movic/_dev/postcss.config.js b/themes/at_movic/_dev/postcss.config.js new file mode 100644 index 00000000..c6a933c5 --- /dev/null +++ b/themes/at_movic/_dev/postcss.config.js @@ -0,0 +1,29 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +module.exports = { + plugins: [ + require('autoprefixer') + ] +} diff --git a/themes/at_movic/_dev/webpack.config.js b/themes/at_movic/_dev/webpack.config.js new file mode 100644 index 00000000..8dced1b1 --- /dev/null +++ b/themes/at_movic/_dev/webpack.config.js @@ -0,0 +1,107 @@ +/** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ +const webpack = require('webpack'); +const path = require('path'); +const ExtractTextPlugin = require("extract-text-webpack-plugin"); + +let config = { + entry: { + main: [ + './js/theme.js', + './css/theme.scss' + ] + }, + output: { + path: path.resolve(__dirname, '../assets/js'), + filename: 'theme.js' + }, + module: { + rules: [ + { + test: /\.js/, + loader: 'babel-loader' + }, + { + test: /\.scss$/, + use: ExtractTextPlugin.extract({ + fallback: 'style-loader', + use: [ + { + loader: 'css-loader', + options: { + minimize: true + } + }, + 'postcss-loader', + 'sass-loader' + ] + }) + }, + { + test: /.(png|woff(2)?|eot|ttf|svg)(\?[a-z0-9=\.]+)?$/, + use: [ + { + loader: 'file-loader', + options: { + name: '../css/[hash].[ext]' + } + } + ] + }, + { + test : /\.css$/, + use: ['style-loader', 'css-loader', 'postcss-loader'] + } + ] + }, + externals: { + prestashop: 'prestashop', + $: '$', + jquery: 'jQuery' + }, + plugins: [ + new ExtractTextPlugin(path.join('..', 'css', 'theme.css')) + ] +}; + +config.plugins.push( + new webpack.optimize.UglifyJsPlugin({ + sourceMap: false, + compress: { + sequences: true, + conditionals: true, + booleans: true, + if_return: true, + join_vars: true, + drop_console: true + }, + output: { + comments: false + }, + minimize: true + }) +); + +module.exports = config; diff --git a/themes/at_movic/assets/cache/bottom-390a81872.js b/themes/at_movic/assets/cache/bottom-390a81872.js new file mode 100644 index 00000000..679ce200 --- /dev/null +++ b/themes/at_movic/assets/cache/bottom-390a81872.js @@ -0,0 +1,2897 @@ +!(function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=(t[r]={i:r,l:!1,exports:{}});return e[r].call(i.exports,i,i.exports,n),(i.l=!0),i.exports}(n.m=e),(n.c=t),(n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})}),(n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}),(n.t=function(e,t){if((1&t&&(e=n(e)),8&t))return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if((n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)) +for(var i in e) +n.d(r,i,function(t){return e[t]}.bind(null,i));return r}),(n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t}),(n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)}),(n.p=""),n((n.s=3))})([function(e,t,n){"use strict";(function(e){var n;function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}/*! + * jQuery JavaScript Library v2.2.4 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2016-05-20T17:23Z + */ +/*! + * jQuery JavaScript Library v2.2.4 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2016-05-20T17:23Z + */ +!(function(t,n){"object"===r(e)&&"object"===r(e.exports)?(e.exports=t.document?n(t,!0):function(e){if(!e.document) +throw new Error("jQuery requires a window with a document");return n(e)}):n(t)})("undefined"!=typeof window?window:void 0,function(i,o){var a=[],s=i.document,u=a.slice,l=a.concat,c=a.push,d=a.indexOf,f={},p=f.toString,h=f.hasOwnProperty,v={},m=function e(t,n){return new e.fn.init(t,n)},g=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,y=/^-ms-/,b=/-([\da-z])/gi,x=function(e,t){return t.toUpperCase()};function w(e){var t=!!e&&"length" in e&&e.length,n=m.type(e);return("function"!==n&&!m.isWindow(e)&&("array"===n||0===t||("number"==typeof t&&t>0&&t-1 in e)))}(m.fn=m.prototype={jquery:"2.2.4",constructor:m,selector:"",length:0,toArray:function(){return u.call(this)},get:function(e){return null!=e?e<0?this[e+this.length]:this[e]:u.call(this)},pushStack:function(e){var t=m.merge(this.constructor(),e);return(t.prevObject=this),(t.context=this.context),t},each:function(e){return m.each(this,e)},map:function(e){return this.pushStack(m.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(u.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n=0},isPlainObject:function(e){var t;if("object"!==m.type(e)||e.nodeType||m.isWindow(e)) +return!1;if(e.constructor&&!h.call(e,"constructor")&&!h.call(e.constructor.prototype||{},"isPrototypeOf")) +return!1;for(t in e);return void 0===t||h.call(e,t)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},type:function(e){return null==e?e+"":"object"===r(e)||"function"==typeof e?f[p.call(e)]||"object":r(e)},globalEval:function(e){var t,n=eval;(e=m.trim(e))&&(1===e.indexOf("use strict")?(((t=s.createElement("script")).text=e),s.head.appendChild(t).parentNode.removeChild(t)):n(e))},camelCase:function(e){return e.replace(y,"ms-").replace(b,x)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t){var n,r=0;if(w(e)) +for(n=e.length;r+~]|"+M+")"+M+"*"),X=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),U=new RegExp(R),V=new RegExp("^"+F+"$"),G={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),TAG:new RegExp("^("+F+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+R),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+H+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i"),},Y=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,K=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Z=/[+~]/,ee=/'|\\/g,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode((r>>10)|55296,(1023&r)|56320)},re=function(){f()};try{L.apply((A=P.call(w.childNodes)),w.childNodes),A[w.childNodes.length].nodeType}catch(e){L={apply:A.length?function(e,t){q.apply(e,P.call(t))}:function(e,t){for(var n=e.length,r=0;(e[n++]=t[r++]););e.length=n-1},}} +function ie(e,t,r,i){var o,s,l,c,d,h,g,y,T=t&&t.ownerDocument,C=t?t.nodeType:9;if(((r=r||[]),"string"!=typeof e||!e||(1!==C&&9!==C&&11!==C))) +return r;if(!i&&((t?t.ownerDocument||t:w)!==p&&f(t),(t=t||p),v)){if(11!==C&&(h=K.exec(e))) +if((o=h[1])){if(9===C){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(T&&(l=T.getElementById(o))&&b(t,l)&&l.id===o) +return r.push(l),r}else{if(h[2])return L.apply(r,t.getElementsByTagName(e)),r;if((o=h[3])&&n.getElementsByClassName&&t.getElementsByClassName) +return L.apply(r,t.getElementsByClassName(o)),r} +if(n.qsa&&!j[e+" "]&&(!m||!m.test(e))){if(1!==C)(T=t),(y=e);else if("object"!==t.nodeName.toLowerCase()){for((c=t.getAttribute("id"))?(c=c.replace(ee,"\\$&")):t.setAttribute("id",(c=x)),s=(g=a(e)).length,d=V.test(c)?"#"+c:"[id='"+c+"']";s--;) +g[s]=d+" "+ve(g[s]);(y=g.join(",")),(T=(Z.test(e)&&pe(t.parentNode))||t)} +if(y) +try{return L.apply(r,T.querySelectorAll(y)),r}catch(e){}finally{c===x&&t.removeAttribute("id")}}} +return u(e.replace($,"$1"),t,r,i)} +function oe(){var e=[];return function t(n,i){return(e.push(n+" ")>r.cacheLength&&delete t[e.shift()],(t[n+" "]=i))}} +function ae(e){return(e[x]=!0),e} +function se(e){var t=p.createElement("div");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),(t=null)}} +function ue(e,t){for(var n=e.split("|"),i=n.length;i--;) +r.attrHandle[n[i]]=t} +function le(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||E)-(~e.sourceIndex||E);if(r)return r;if(n)for(;(n=n.nextSibling);)if(n===t)return-1;return e?1:-1} +function ce(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}} +function de(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}} +function fe(e){return ae(function(t){return((t=+t),ae(function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;) +n[(i=o[a])]&&(n[i]=!(r[i]=n[i]));}))})} +function pe(e){return e&&void 0!==e.getElementsByTagName&&e} +for(t in((n=ie.support={}),(o=ie.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName}),(f=ie.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!==p&&9===a.nodeType&&a.documentElement?((h=(p=a).documentElement),(v=!o(p)),(i=p.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",re,!1):i.attachEvent&&i.attachEvent("onunload",re)),(n.attributes=se(function(e){return(e.className="i"),!e.getAttribute("className")})),(n.getElementsByTagName=se(function(e){return(e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length)})),(n.getElementsByClassName=J.test(p.getElementsByClassName)),(n.getById=se(function(e){return((h.appendChild(e).id=x),!p.getElementsByName||!p.getElementsByName(x).length)})),n.getById?((r.find.ID=function(e,t){if(void 0!==t.getElementById&&v){var n=t.getElementById(e);return n?[n]:[]}}),(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}})):(delete r.find.ID,(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}})),(r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;(n=o[i++]);)1===n.nodeType&&r.push(n);return r} +return o}),(r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&v) +return t.getElementsByClassName(e)}),(g=[]),(m=[]),(n.qsa=J.test(p.querySelectorAll))&&(se(function(e){(h.appendChild(e).innerHTML=""),e.querySelectorAll("[msallowcapture^='']").length&&m.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||m.push("\\["+M+"*(?:value|"+H+")"),e.querySelectorAll("[id~="+x+"-]").length||m.push("~="),e.querySelectorAll(":checked").length||m.push(":checked"),e.querySelectorAll("a#"+x+"+*").length||m.push(".#.+[+~]")}),se(function(e){var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&m.push("name"+M+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||m.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),m.push(",.*:")})),(n.matchesSelector=J.test((y=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector)))&&se(function(e){(n.disconnectedMatch=y.call(e,"div")),y.call(e,"[s!='']:x"),g.push("!=",R)}),(m=m.length&&new RegExp(m.join("|"))),(g=g.length&&new RegExp(g.join("|"))),(t=J.test(h.compareDocumentPosition)),(b=t||J.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return(e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r))))}:function(e,t){if(t) +for(;(t=t.parentNode);)if(t===e)return!0;return!1}),(_=t?function(e,t){if(e===t)return(d=!0),0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return(r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||(!n.sortDetached&&t.compareDocumentPosition(e)===r)?e===p||(e.ownerDocument===w&&b(w,e))?-1:t===p||(t.ownerDocument===w&&b(w,t))?1:c?O(c,e)-O(c,t):0:4&r?-1:1))}:function(e,t){if(e===t)return(d=!0),0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o) +return e===p?-1:t===p?1:i?-1:o?1:c?O(c,e)-O(c,t):0;if(i===o)return le(e,t);for(n=e;(n=n.parentNode);)a.unshift(n);for(n=t;(n=n.parentNode);)s.unshift(n);for(;a[r]===s[r];)r++;return r?le(a[r],s[r]):a[r]===w?-1:s[r]===w?1:0}),p):p}),(ie.matches=function(e,t){return ie(e,null,null,t)}),(ie.matchesSelector=function(e,t){if(((e.ownerDocument||e)!==p&&f(e),(t=t.replace(X,"='$1']")),n.matchesSelector&&v&&!j[t+" "]&&(!g||!g.test(t))&&(!m||!m.test(t)))) +try{var r=y.call(e,t);if(r||n.disconnectedMatch||(e.document&&11!==e.document.nodeType)) +return r}catch(e){} +return ie(t,p,null,[e]).length>0}),(ie.contains=function(e,t){return(e.ownerDocument||e)!==p&&f(e),b(e,t)}),(ie.attr=function(e,t){(e.ownerDocument||e)!==p&&f(e);var i=r.attrHandle[t.toLowerCase()],o=i&&N.call(r.attrHandle,t.toLowerCase())?i(e,t,!v):void 0;return void 0!==o?o:n.attributes||!v?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null}),(ie.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)}),(ie.uniqueSort=function(e){var t,r=[],i=0,o=0;if(((d=!n.detectDuplicates),(c=!n.sortStable&&e.slice(0)),e.sort(_),d)){for(;(t=e[o++]);)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1);} +return(c=null),e}),(i=ie.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e);}else if(3===o||4===o)return e.nodeValue}else for(;(t=e[r++]);)n+=i(t);return n}),((r=ie.selectors={cacheLength:50,createPseudo:ae,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"},},preFilter:{ATTR:function(e){return((e[1]=e[1].replace(te,ne)),(e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne)),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4))},CHILD:function(e){return((e[1]=e[1].toLowerCase()),"nth"===e[1].slice(0,3)?(e[3]||ie.error(e[0]),(e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3]))),(e[5]=+(e[7]+e[8]||"odd"===e[3]))):e[3]&&ie.error(e[0]),e)},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?(e[2]=e[4]||e[5]||""):n&&U.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&((e[0]=e[0].slice(0,t)),(e[2]=n.slice(0,t))),e.slice(0,3))},},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=k[e+" "];return(t||((t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&k(e,function(e){return t.test(("string"==typeof e.className&&e.className)||(void 0!==e.getAttribute&&e.getAttribute("class"))||"")})))},ATTR:function(e,t,n){return function(r){var i=ie.attr(r,e);return null==i?"!="===t:!t||((i+=""),"="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(I," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,d,f,p,h,v=o!==a?"nextSibling":"previousSibling",m=t.parentNode,g=s&&t.nodeName.toLowerCase(),y=!u&&!s,b=!1;if(m){if(o){for(;v;){for(f=t;(f=f[v]);) +if(s?f.nodeName.toLowerCase()===g:1===f.nodeType) +return!1;h=v="only"===e&&!h&&"nextSibling"} +return!0} +if(((h=[a?m.firstChild:m.lastChild]),a&&y)){for(b=(p=(l=(c=(d=(f=m)[x]||(f[x]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],f=p&&m.childNodes[p];(f=(++p&&f&&f[v])||(b=p=0)||h.pop());) +if(1===f.nodeType&&++b&&f===t){c[e]=[T,p,b];break}}else if((y&&(b=p=(l=(c=(d=(f=t)[x]||(f[x]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===b)) +for(;(f=(++p&&f&&f[v])||(b=p=0)||h.pop())&&((s?f.nodeName.toLowerCase()!==g:1!==f.nodeType)||!++b||(y&&((c=(d=f[x]||(f[x]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]=[T,b]),f!==t)););return(b-=i)===r||(b%r==0&&b/r>=0)}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||ie.error("unsupported pseudo: "+e);return i[x]?i(t):i.length>1?((n=[e,e,"",t]),r.setFilters.hasOwnProperty(e.toLowerCase())?ae(function(e,n){for(var r,o=i(e,t),a=o.length;a--;) +e[(r=O(e,o[a]))]=!(n[r]=o[a]);}):function(e){return i(e,0,n)}):i},},pseudos:{not:ae(function(e){var t=[],n=[],r=s(e.replace($,"$1"));return r[x]?ae(function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o));}):function(e,i,o){return((t[0]=e),r(t,null,o,n),(t[0]=null),!n.pop())}}),has:ae(function(e){return function(t){return ie(e,t).length>0}}),contains:ae(function(e){return((e=e.replace(te,ne)),function(t){return((t.textContent||t.innerText||i(t)).indexOf(e)>-1)})}),lang:ae(function(e){return(V.test(e||"")||ie.error("unsupported lang: "+e),(e=e.replace(te,ne).toLowerCase()),function(t){var n;do{if((n=v?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))) +return((n=n.toLowerCase())===e||0===n.indexOf(e+"-"))}while((t=t.parentNode)&&1===t.nodeType);return!1})}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return(e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex))},enabled:function(e){return!1===e.disabled},disabled:function(e){return!0===e.disabled},checked:function(e){var t=e.nodeName.toLowerCase();return(("input"===t&&!!e.checked)||("option"===t&&!!e.selected))},selected:function(e){return(e.parentNode&&e.parentNode.selectedIndex,!0===e.selected)},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling) +if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return Y.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return(("input"===t&&"button"===e.type)||"button"===t)},text:function(e){var t;return("input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase()))},first:fe(function(){return[0]}),last:fe(function(e,t){return[t-1]}),eq:fe(function(e,t,n){return[n<0?n+t:n]}),even:fe(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:fe(function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]} +function ye(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s-1&&(o[l]=!(a[l]=d));}}else(g=ye(g===a?g.splice(h,g.length):g)),i?i(null,a,g,u):L.apply(a,g)}))} +function xe(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=me(function(e){return e===t},s,!0),d=me(function(e){return O(t,e)>-1},s,!0),f=[function(e,n,r){var i=(!a&&(r||n!==l))||((t=n).nodeType?c(e,n,r):d(e,n,r));return(t=null),i},];u1&&ge(f),u>1&&ve(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace($,"$1"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var d,h,m,g=0,y="0",b=o&&[],x=[],w=l,C=o||(i&&r.find.TAG("*",c)),k=(T+=null==w?1:Math.random()||0.1),S=C.length;for(c&&(l=a===p||a||c);y!==S&&null!=(d=C[y]);y++){if(i&&d){for(h=0,a||d.ownerDocument===p||(f(d),(s=!v));(m=e[h++]);) +if(m(d,a||p,s)){u.push(d);break} +c&&(T=k)} +n&&((d=!m&&d)&&g--,o&&b.push(d))} +if(((g+=y),n&&y!==g)){for(h=0;(m=t[h++]);)m(b,x,a,s);if(o){if(g>0) +for(;y--;) +b[y]||x[y]||(x[y]=D.call(u));x=ye(x)} +L.apply(u,x),c&&!o&&x.length>0&&g+t.length>1&&ie.uniqueSort(u)} +return c&&((T=k),(l=w)),b};return n?ae(o):o})(o,i))).selector=e} +return s}),(u=ie.select=function(e,t,i,o){var u,l,c,d,f,p="function"==typeof e&&e,h=!o&&a((e=p.selector||e));if(((i=i||[]),1===h.length)){if((l=h[0]=h[0].slice(0)).length>2&&"ID"===(c=l[0]).type&&n.getById&&9===t.nodeType&&v&&r.relative[l[1].type]){if(!(t=(r.find.ID(c.matches[0].replace(te,ne),t)||[])[0])) +return i;p&&(t=t.parentNode),(e=e.slice(l.shift().value.length))} +for(u=G.needsContext.test(e)?0:l.length;u--&&((c=l[u]),!r.relative[(d=c.type)]);) +if((f=r.find[d])&&(o=f(c.matches[0].replace(te,ne),(Z.test(l[0].type)&&pe(t.parentNode))||t))){if((l.splice(u,1),!(e=o.length&&ve(l)))) +return L.apply(i,o),i;break}} +return((p||s(e,h))(o,t,!v,i,!t||(Z.test(e)&&pe(t.parentNode))||t),i)}),(n.sortStable=x.split("").sort(_).join("")===x),(n.detectDuplicates=!!d),f(),(n.sortDetached=se(function(e){return 1&e.compareDocumentPosition(p.createElement("div"))})),se(function(e){return((e.innerHTML=""),"#"===e.firstChild.getAttribute("href"))})||ue("type|href|height|width",function(e,t,n){if(!n) +return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),(n.attributes&&se(function(e){return((e.innerHTML=""),e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value"))}))||ue("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase()) +return e.defaultValue}),se(function(e){return null==e.getAttribute("disabled")})||ue(H,function(e,t,n){var r;if(!n) +return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),ie)})(i);(m.find=T),(m.expr=T.selectors),(m.expr[":"]=m.expr.pseudos),(m.uniqueSort=m.unique=T.uniqueSort),(m.text=T.getText),(m.isXMLDoc=T.isXML),(m.contains=T.contains);var C=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;) +if(1===e.nodeType){if(i&&m(e).is(n))break;r.push(e)} +return r},k=function(e,t){for(var n=[];e;e=e.nextSibling) +1===e.nodeType&&e!==t&&n.push(e);return n},S=m.expr.match.needsContext,j=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,_=/^.[^:#\[\.,]*$/;function E(e,t,n){if(m.isFunction(t)) +return m.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType) +return m.grep(e,function(e){return(e===t)!==n});if("string"==typeof t){if(_.test(t))return m.filter(t,e,n);t=m.filter(t,e)} +return m.grep(e,function(e){return d.call(t,e)>-1!==n})}(m.filter=function(e,t,n){var r=t[0];return(n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?m.find.matchesSelector(r,e)?[r]:[]:m.find.matches(e,m.grep(t,function(e){return 1===e.nodeType})))}),m.fn.extend({find:function(e){var t,n=this.length,r=[],i=this;if("string"!=typeof e) +return this.pushStack(m(e).filter(function(){for(t=0;t1?m.unique(r):r)).selector=this.selector?this.selector+" "+e:e),r)},filter:function(e){return this.pushStack(E(this,e||[],!1))},not:function(e){return this.pushStack(E(this,e||[],!0))},is:function(e){return!!E(this,"string"==typeof e&&S.test(e)?m(e):e||[],!1).length},});var N,A=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/;((m.fn.init=function(e,t,n){var r,i;if(!e)return this;if(((n=n||N),"string"==typeof e)){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:A.exec(e))||(!r[1]&&t)) +return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(((t=t instanceof m?t[0]:t),m.merge(this,m.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:s,!0)),j.test(r[1])&&m.isPlainObject(t))) +for(r in t) +m.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this} +return((i=s.getElementById(r[2]))&&i.parentNode&&((this.length=1),(this[0]=i)),(this.context=s),(this.selector=e),this);} +return e.nodeType?((this.context=this[0]=e),(this.length=1),this):m.isFunction(e)?void 0!==n.ready?n.ready(e):e(m):(void 0!==e.selector&&((this.selector=e.selector),(this.context=e.context)),m.makeArray(e,this))}).prototype=m.fn),(N=m(s));var D=/^(?:parents|prev(?:Until|All))/,q={children:!0,contents:!0,next:!0,prev:!0};function L(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e} +m.fn.extend({has:function(e){var t=m(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&m.find.matchesSelector(n,e))){o.push(n);break} +return this.pushStack(o.length>1?m.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?d.call(m(e),this[0]):d.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(m.uniqueSort(m.merge(this.get(),m(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))},}),m.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return C(e,"parentNode")},parentsUntil:function(e,t,n){return C(e,"parentNode",n)},next:function(e){return L(e,"nextSibling")},prev:function(e){return L(e,"previousSibling")},nextAll:function(e){return C(e,"nextSibling")},prevAll:function(e){return C(e,"previousSibling")},nextUntil:function(e,t,n){return C(e,"nextSibling",n)},prevUntil:function(e,t,n){return C(e,"previousSibling",n)},siblings:function(e){return k((e.parentNode||{}).firstChild,e)},children:function(e){return k(e.firstChild)},contents:function(e){return e.contentDocument||m.merge([],e.childNodes)},},function(e,t){m.fn[e]=function(n,r){var i=m.map(this,t,n);return("Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=m.filter(r,i)),this.length>1&&(q[e]||m.uniqueSort(i),D.test(e)&&i.reverse()),this.pushStack(i))}});var P,O=/\S+/g;function H(){s.removeEventListener("DOMContentLoaded",H),i.removeEventListener("load",H),m.ready()}(m.Callbacks=function(e){e="string"==typeof e?(function(e){var t={};return(m.each(e.match(O)||[],function(e,n){t[n]=!0}),t)})(e):m.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=e.once,r=t=!0;a.length;s=-1) +for(n=a.shift();++s-1;) +o.splice(n,1),n<=s&&s--}),this)},has:function(e){return e?m.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return(i=a=[]),(o=n=""),this},disabled:function(){return!o},lock:function(){return(i=a=[]),n||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return(i||((n=[e,(n=n||[]).slice?n.slice():n]),a.push(n),t||u()),this)},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r},};return l}),m.extend({Deferred:function(e){var t=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")],],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return m.Deferred(function(n){m.each(t,function(t,o){var a=m.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&m.isFunction(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[o[0]+"With"](this===r?n.promise():this,a?[e]:arguments)})}),(e=null)}).promise()},promise:function(e){return null!=e?m.extend(e,r):r},},i={};return((r.pipe=r.then),m.each(t,function(e,o){var a=o[2],s=o[3];(r[o[1]]=a.add),s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),(i[o[0]]=function(){return(i[o[0]+"With"](this===i?r:this,arguments),this)}),(i[o[0]+"With"]=a.fireWith)}),r.promise(i),e&&e.call(i,i),i)},when:function(e){var t,n,r,i=0,o=u.call(arguments),a=o.length,s=1!==a||(e&&m.isFunction(e.promise))?a:0,l=1===s?e:m.Deferred(),c=function(e,n,r){return function(i){(n[e]=this),(r[e]=arguments.length>1?u.call(arguments):i),r===t?l.notifyWith(n,r):--s||l.resolveWith(n,r)}};if(a>1) +for(t=new Array(a),n=new Array(a),r=new Array(a);i0)||(P.resolveWith(s,[m]),m.fn.triggerHandler&&(m(s).triggerHandler("ready"),m(s).off("ready"))))},}),(m.ready.promise=function(e){return(P||((P=m.Deferred()),"complete"===s.readyState||("loading"!==s.readyState&&!s.documentElement.doScroll)?i.setTimeout(m.ready):(s.addEventListener("DOMContentLoaded",H),i.addEventListener("load",H))),P.promise(e))}),m.ready.promise();var M=function e(t,n,r,i,o,a,s){var u=0,l=t.length,c=null==r;if("object"===m.type(r)) +for(u in((o=!0),r))e(t,n,u,r[u],!0,a,s);else if(void 0!==i&&((o=!0),m.isFunction(i)||(s=!0),c&&(s?(n.call(t,i),(n=null)):((c=n),(n=function(e,t,n){return c.call(m(e),n)}))),n)) +for(;u-1&&void 0!==n&&I.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){I.remove(this,e)})},}),m.extend({queue:function(e,t,n){var r;if(e) +return((t=(t||"fx")+"queue"),(r=R.get(e,t)),n&&(!r||m.isArray(n)?(r=R.access(e,t,m.makeArray(n))):r.push(n)),r||[])},dequeue:function(e,t){t=t||"fx";var n=m.queue(e,t),r=n.length,i=n.shift(),o=m._queueHooks(e,t);"inprogress"===i&&((i=n.shift()),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){m.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return(R.get(e,n)||R.access(e,n,{empty:m.Callbacks("once memory").add(function(){R.remove(e,[t+"queue",n])}),}))},}),m.fn.extend({queue:function(e,t){var n=2;return("string"!=typeof e&&((t=e),(e="fx"),n--),arguments.length",""],thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""],};function ee(e,t){var n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[];return void 0===t||(t&&m.nodeName(e,t))?m.merge([e],n):n} +function te(e,t){for(var n=0,r=e.length;n-1)i&&i.push(o);else if(((l=m.contains(o.ownerDocument,o)),(a=ee(d.appendChild(o),"script")),l&&te(a),n)) +for(c=0;(o=a[c++]);)K.test(o.type||"")&&n.push(o);return d} +!(function(){var e=s.createDocumentFragment().appendChild(s.createElement("div")),t=s.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),(v.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked),(e.innerHTML=""),(v.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue)})();var ie=/^key/,oe=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ae=/^([^.]*)(?:\.(.+)|)/;function se(){return!0} +function ue(){return!1} +function le(){try{return s.activeElement}catch(e){}} +function ce(e,t,n,i,o,a){var s,u;if("object"===r(t)){for(u in("string"!=typeof n&&((i=i||n),(n=void 0)),t)) +ce(e,u,n,i,t[u],a);return e} +if((null==i&&null==o?((o=n),(i=n=void 0)):null==o&&("string"==typeof n?((o=i),(i=void 0)):((o=i),(i=n),(n=void 0))),!1===o)) +o=ue;else if(!o)return e;return(1===a&&((s=o),((o=function(e){return m().off(e),s.apply(this,arguments)}).guid=s.guid||(s.guid=m.guid++))),e.each(function(){m.event.add(this,t,o,i,n)}))}(m.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,d,f,p,h,v,g=R.get(e);if(g) +for(n.handler&&((n=(o=n).handler),(i=o.selector)),n.guid||(n.guid=m.guid++),(u=g.events)||(u=g.events={}),(a=g.handle)||(a=g.handle=function(t){return void 0!==m&&m.event.triggered!==t.type?m.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(O)||[""]).length;l--;)(p=v=(s=ae.exec(t[l])||[])[1]),(h=(s[2]||"").split(".").sort()),p&&((d=m.event.special[p]||{}),(p=(i?d.delegateType:d.bindType)||p),(d=m.event.special[p]||{}),(c=m.extend({type:p,origType:v,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&m.expr.match.needsContext.test(i),namespace:h.join("."),},o)),(f=u[p])||(((f=u[p]=[]).delegateCount=0),(d.setup&&!1!==d.setup.call(e,r,h,a))||(e.addEventListener&&e.addEventListener(p,a))),d.add&&(d.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?f.splice(f.delegateCount++,0,c):f.push(c),(m.event.global[p]=!0))},remove:function(e,t,n,r,i){var o,a,s,u,l,c,d,f,p,h,v,g=R.hasData(e)&&R.get(e);if(g&&(u=g.events)){for(l=(t=(t||"").match(O)||[""]).length;l--;) +if(((p=v=(s=ae.exec(t[l])||[])[1]),(h=(s[2]||"").split(".").sort()),p)){for(d=m.event.special[p]||{},f=u[(p=(r?d.delegateType:d.bindType)||p)]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=f.length;o--;)(c=f[o]),(!i&&v!==c.origType)||(n&&n.guid!==c.guid)||(s&&!s.test(c.namespace))||(r&&r!==c.selector&&("**"!==r||!c.selector))||(f.splice(o,1),c.selector&&f.delegateCount--,d.remove&&d.remove.call(e,c));a&&!f.length&&((d.teardown&&!1!==d.teardown.call(e,h,g.handle))||m.removeEvent(e,p,g.handle),delete u[p])}else for(p in u)m.event.remove(e,p+t[l],n,r,!0);m.isEmptyObject(u)&&R.remove(e,"handle events")}},dispatch:function(e){e=m.event.fix(e);var t,n,r,i,o,a,s=u.call(arguments),l=(R.get(this,"events")||{})[e.type]||[],c=m.event.special[e.type]||{};if(((s[0]=e),(e.delegateTarget=this),!c.preDispatch||!1!==c.preDispatch.call(this,e))){for(a=m.event.handlers.call(this,e,l),t=0;(i=a[t++])&&!e.isPropagationStopped();) +for(e.currentTarget=i.elem,n=0;(o=i.handlers[n++])&&!e.isImmediatePropagationStopped();)(e.rnamespace&&!e.rnamespace.test(o.namespace))||((e.handleObj=o),(e.data=o.data),void 0!==(r=((m.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(e.result=r)&&(e.preventDefault(),e.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,a=[],s=t.delegateCount,u=e.target;if(s&&u.nodeType&&("click"!==e.type||isNaN(e.button)||e.button<1)) +for(;u!==this;u=u.parentNode||this) +if(1===u.nodeType&&(!0!==u.disabled||"click"!==e.type)){for(r=[],n=0;n-1:m.find(i,this,null,[u]).length),r[i]&&r.push(o);r.length&&a.push({elem:u,handlers:r})} +return(s]*)\/>/gi,fe=/\s*$/g;function me(e,t){return m.nodeName(e,"table")&&m.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e} +function ge(e){return(e.type=(null!==e.getAttribute("type"))+"/"+e.type),e} +function ye(e){var t=he.exec(e.type);return t?(e.type=t[1]):e.removeAttribute("type"),e} +function be(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(R.hasData(e)&&((o=R.access(e)),(a=R.set(t,o)),(l=o.events))) +for(i in(delete a.handle,(a.events={}),l)) +for(n=0,r=l[i].length;n1&&"string"==typeof h&&!v.checkClone&&pe.test(h))) +return e.each(function(i){var o=e.eq(i);g&&(t[0]=h.call(this,i,o.html())),we(o,t,n,r)});if(f&&((o=(i=re(t,e[0].ownerDocument,!1,e,r)).firstChild),1===i.childNodes.length&&(i=o),o||r)){for(s=(a=m.map(ee(i,"script"),ge)).length;d")},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=m.contains(e.ownerDocument,e);if(!(v.noCloneChecked||(1!==e.nodeType&&11!==e.nodeType)||m.isXMLDoc(e))) +for(a=ee(s),r=0,i=(o=ee(e)).length;r0&&te(a,!u&&ee(e,"script")),s)},cleanData:function(e){for(var t,n,r,i=m.event.special,o=0;void 0!==(n=e[o]);o++) +if(F(n)){if((t=n[R.expando])){if(t.events) +for(r in t.events) +i[r]?m.event.remove(n,r):m.removeEvent(n,r,t.handle);n[R.expando]=void 0} +n[I.expando]&&(n[I.expando]=void 0);}},}),m.fn.extend({domManip:we,detach:function(e){return Te(this,e,!0)},remove:function(e){return Te(this,e)},text:function(e){return M(this,function(e){return void 0===e?m.text(this):this.empty().each(function(){(1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType)||(this.textContent=e)})},null,e,arguments.length)},append:function(){return we(this,arguments,function(e){(1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType)||me(this,e).appendChild(e)})},prepend:function(){return we(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=me(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return we(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return we(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++) +1===e.nodeType&&(m.cleanData(ee(e,!1)),(e.textContent=""));return this},clone:function(e,t){return((e=null!=e&&e),(t=null==t?e:t),this.map(function(){return m.clone(this,e,t)}))},html:function(e){return M(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!fe.test(e)&&!Z[(J.exec(e)||["",""])[1].toLowerCase()]){e=m.htmlPrefilter(e);try{for(;n")).appendTo(t.documentElement))[0].contentDocument).write(),t.close(),(n=Se(e,t)),Ce.detach()),(ke[e]=n)),n)} +var _e=/^margin/,Ee=new RegExp("^("+X+")(?!px)[a-z%]+$","i"),Ne=function(e){var t=e.ownerDocument.defaultView;return(t&&t.opener)||(t=i),t.getComputedStyle(e)},Ae=function(e,t,n,r){var i,o,a={};for(o in t)(a[o]=e.style[o]),(e.style[o]=t[o]);for(o in((i=n.apply(e,r||[])),t))e.style[o]=a[o];return i},De=s.documentElement;function qe(e,t,n){var r,i,o,a,s=e.style;return((""!==(a=(n=n||Ne(e))?n.getPropertyValue(t)||n[t]:void 0)&&void 0!==a)||m.contains(e.ownerDocument,e)||(a=m.style(e,t)),n&&!v.pixelMarginRight()&&Ee.test(a)&&_e.test(t)&&((r=s.width),(i=s.minWidth),(o=s.maxWidth),(s.minWidth=s.maxWidth=s.width=a),(a=n.width),(s.width=r),(s.minWidth=i),(s.maxWidth=o)),void 0!==a?a+"":a)} +function Le(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get},}} +!(function(){var e,t,n,r,o=s.createElement("div"),a=s.createElement("div");function u(){(a.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%"),(a.innerHTML=""),De.appendChild(o);var s=i.getComputedStyle(a);(e="1%"!==s.top),(r="2px"===s.marginLeft),(t="4px"===s.width),(a.style.marginRight="50%"),(n="4px"===s.marginRight),De.removeChild(o)} +a.style&&((a.style.backgroundClip="content-box"),(a.cloneNode(!0).style.backgroundClip=""),(v.clearCloneStyle="content-box"===a.style.backgroundClip),(o.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute"),o.appendChild(a),m.extend(v,{pixelPosition:function(){return u(),e},boxSizingReliable:function(){return null==t&&u(),t},pixelMarginRight:function(){return null==t&&u(),n},reliableMarginLeft:function(){return null==t&&u(),r},reliableMarginRight:function(){var e,t=a.appendChild(s.createElement("div"));return((t.style.cssText=a.style.cssText="-webkit-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0"),(t.style.marginRight=t.style.width="0"),(a.style.width="1px"),De.appendChild(o),(e=!parseFloat(i.getComputedStyle(t).marginRight)),De.removeChild(o),a.removeChild(t),e)},}))})();var Pe=/^(none|table(?!-c[ea]).+)/,Oe={position:"absolute",visibility:"hidden",display:"block"},He={letterSpacing:"0",fontWeight:"400"},Me=["Webkit","O","Moz","ms"],Fe=s.createElement("div").style;function We(e){if(e in Fe)return e;for(var t=e[0].toUpperCase()+e.slice(1),n=Me.length;n--;) +if((e=Me[n]+t)in Fe)return e} +function Re(e,t,n){var r=U.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t} +function Ie(e,t,n,r,i){for(var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;o<4;o+=2) +"margin"===n&&(a+=m.css(e,n+V[o],!0,i)),r?("content"===n&&(a-=m.css(e,"padding"+V[o],!0,i)),"margin"!==n&&(a-=m.css(e,"border"+V[o]+"Width",!0,i))):((a+=m.css(e,"padding"+V[o],!0,i)),"padding"!==n&&(a+=m.css(e,"border"+V[o]+"Width",!0,i)));return a} +function $e(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Ne(e),a="border-box"===m.css(e,"boxSizing",!1,o);if(i<=0||null==i){if((((i=qe(e,t,o))<0||null==i)&&(i=e.style[t]),Ee.test(i))) +return i;(r=a&&(v.boxSizingReliable()||i===e.style[t])),(i=parseFloat(i)||0)} +return i+Ie(e,t,n||(a?"border":"content"),r,o)+"px"} +function Be(e,t){for(var n,r,i,o=[],a=0,s=e.length;a1)},show:function(){return Be(this,!0)},hide:function(){return Be(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){G(this)?m(this).show():m(this).hide()})},}),(m.Tween=ze),(ze.prototype={constructor:ze,init:function(e,t,n,r,i,o){(this.elem=e),(this.prop=n),(this.easing=i||m.easing._default),(this.options=t),(this.start=this.now=this.cur()),(this.end=r),(this.unit=o||(m.cssNumber[n]?"":"px"))},cur:function(){var e=ze.propHooks[this.prop];return e&&e.get?e.get(this):ze.propHooks._default.get(this)},run:function(e){var t,n=ze.propHooks[this.prop];return(this.options.duration?(this.pos=t=m.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration)):(this.pos=t=e),(this.now=(this.end-this.start)*t+this.start),this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):ze.propHooks._default.set(this),this)},}),(ze.prototype.init.prototype=ze.prototype),(ze.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||(null!=e.elem[e.prop]&&null==e.elem.style[e.prop])?e.elem[e.prop]:(t=m.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){m.fx.step[e.prop]?m.fx.step[e.prop](e):1!==e.elem.nodeType||(null==e.elem.style[m.cssProps[e.prop]]&&!m.cssHooks[e.prop])?(e.elem[e.prop]=e.now):m.style(e.elem,e.prop,e.now+e.unit)},},}),(ze.propHooks.scrollTop=ze.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)},}),(m.easing={linear:function(e){return e},swing:function(e){return 0.5-Math.cos(e*Math.PI)/2},_default:"swing",}),(m.fx=ze.prototype.init),(m.fx.step={});var Xe,Ue,Ve=/^(?:toggle|show|hide)$/,Ge=/queueHooks$/;function Ye(){return(i.setTimeout(function(){Xe=void 0}),(Xe=m.now()))} +function Qe(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t) +i["margin"+(n=V[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i} +function Je(e,t,n){for(var r,i=(Ke.tweeners[t]||[]).concat(Ke.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each(function(){m.removeAttr(this,e)})},}),m.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o) +return void 0===e.getAttribute?m.prop(e,t,n):((1===o&&m.isXMLDoc(e))||((t=t.toLowerCase()),(i=m.attrHooks[t]||(m.expr.match.bool.test(t)?Ze:void 0))),void 0!==n?null===n?void m.removeAttr(e,t):i&&"set" in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get" in i&&null!==(r=i.get(e,t))?r:null==(r=m.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!v.radioValue&&"radio"===t&&m.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}},},},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(O);if(o&&1===e.nodeType) +for(;(n=o[i++]);)(r=m.propFix[n]||n),m.expr.match.bool.test(n)&&(e[r]=!1),e.removeAttribute(n);},}),(Ze={set:function(e,t,n){return!1===t?m.removeAttr(e,n):e.setAttribute(n,n),n},}),m.each(m.expr.match.bool.source.match(/\w+/g),function(e,t){var n=et[t]||m.find.attr;et[t]=function(e,t,r){var i,o;return(r||((o=et[t]),(et[t]=i),(i=null!=n(e,t,r)?t.toLowerCase():null),(et[t]=o)),i)}});var tt=/^(?:input|select|textarea|button)$/i,nt=/^(?:a|area)$/i;m.fn.extend({prop:function(e,t){return M(this,m.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[m.propFix[e]||e]})},}),m.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o) +return((1===o&&m.isXMLDoc(e))||((t=m.propFix[t]||t),(i=m.propHooks[t])),void 0!==n?i&&"set" in i&&void 0!==(r=i.set(e,n,t))?r:(e[t]=n):i&&"get" in i&&null!==(r=i.get(e,t))?r:e[t])},propHooks:{tabIndex:{get:function(e){var t=m.find.attr(e,"tabindex");return t?parseInt(t,10):tt.test(e.nodeName)||(nt.test(e.nodeName)&&e.href)?0:-1},},},propFix:{for:"htmlFor",class:"className"},}),v.optSelected||(m.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)},}),m.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable",],function(){m.propFix[this.toLowerCase()]=this});var rt=/[\t\r\n\f]/g;function it(e){return(e.getAttribute&&e.getAttribute("class"))||""} +m.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(m.isFunction(e)) +return this.each(function(t){m(this).addClass(e.call(this,t,it(this)))});if("string"==typeof e&&e) +for(t=e.match(O)||[];(n=this[u++]);) +if(((i=it(n)),(r=1===n.nodeType&&(" "+i+" ").replace(rt," ")))){for(a=0;(o=t[a++]);) +r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=m.trim(r))&&n.setAttribute("class",s)} +return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(m.isFunction(e)) +return this.each(function(t){m(this).removeClass(e.call(this,t,it(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof e&&e) +for(t=e.match(O)||[];(n=this[u++]);) +if(((i=it(n)),(r=1===n.nodeType&&(" "+i+" ").replace(rt," ")))){for(a=0;(o=t[a++]);) +for(;r.indexOf(" "+o+" ")>-1;) +r=r.replace(" "+o+" "," ");i!==(s=m.trim(r))&&n.setAttribute("class",s)} +return this},toggleClass:function(e,t){var n=r(e);return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):m.isFunction(e)?this.each(function(n){m(this).toggleClass(e.call(this,n,it(this),t),t)}):this.each(function(){var t,r,i,o;if("string"===n) +for(r=0,i=m(this),o=e.match(O)||[];(t=o[r++]);) +i.hasClass(t)?i.removeClass(t):i.addClass(t);else(void 0!==e&&"boolean"!==n)||((t=it(this))&&R.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":R.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";(n=this[r++]);) +if(1===n.nodeType&&(" "+it(n)+" ").replace(rt," ").indexOf(t)>-1) +return!0;return!1},});var ot=/\r/g,at=/[\x20\t\r\n\f]+/g;m.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?((r=m.isFunction(e)),this.each(function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,m(this).val()):e)?(i=""):"number"==typeof i?(i+=""):m.isArray(i)&&(i=m.map(i,function(e){return null==e?"":e+""})),((t=m.valHooks[this.type]||m.valHooks[this.nodeName.toLowerCase()])&&"set" in t&&void 0!==t.set(this,i,"value"))||(this.value=i))})):i?(t=m.valHooks[i.type]||m.valHooks[i.nodeName.toLowerCase()])&&"get" in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(ot,""):null==n?"":n:void 0},}),m.extend({valHooks:{option:{get:function(e){var t=m.find.attr(e,"value");return null!=t?t:m.trim(m.text(e)).replace(at," ")},},select:{get:function(e){for(var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||i<0,a=o?null:[],s=o?i+1:r.length,u=i<0?s:o?i:0;u-1)&&(n=!0);return n||(e.selectedIndex=-1),o},},},}),m.each(["radio","checkbox"],function(){(m.valHooks[this]={set:function(e,t){if(m.isArray(t)) +return(e.checked=m.inArray(m(e).val(),t)>-1)},}),v.checkOn||(m.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var st=/^(?:focusinfocus|focusoutblur)$/;m.extend(m.event,{trigger:function(e,t,n,o){var a,u,l,c,d,f,p,v=[n||s],g=h.call(e,"type")?e.type:e,y=h.call(e,"namespace")?e.namespace.split("."):[];if(((u=l=n=n||s),3!==n.nodeType&&8!==n.nodeType&&!st.test(g+m.event.triggered)&&(g.indexOf(".")>-1&&((g=(y=g.split(".")).shift()),y.sort()),(d=g.indexOf(":")<0&&"on"+g),((e=e[m.expando]?e:new m.Event(g,"object"===r(e)&&e)).isTrigger=o?2:3),(e.namespace=y.join(".")),(e.rnamespace=e.namespace?new RegExp("(^|\\.)"+y.join("\\.(?:.*\\.|)")+"(\\.|$)"):null),(e.result=void 0),e.target||(e.target=n),(t=null==t?[e]:m.makeArray(t,[e])),(p=m.event.special[g]||{}),o||!p.trigger||!1!==p.trigger.apply(n,t)))){if(!o&&!p.noBubble&&!m.isWindow(n)){for(c=p.delegateType||g,st.test(c+g)||(u=u.parentNode);u;u=u.parentNode) +v.push(u),(l=u);l===(n.ownerDocument||s)&&v.push(l.defaultView||l.parentWindow||i)} +for(a=0;(u=v[a++])&&!e.isPropagationStopped();)(e.type=a>1?c:p.bindType||g),(f=(R.get(u,"events")||{})[e.type]&&R.get(u,"handle"))&&f.apply(u,t),(f=d&&u[d])&&f.apply&&F(u)&&((e.result=f.apply(u,t)),!1===e.result&&e.preventDefault());return((e.type=g),o||e.isDefaultPrevented()||(p._default&&!1!==p._default.apply(v.pop(),t))||!F(n)||(d&&m.isFunction(n[g])&&!m.isWindow(n)&&((l=n[d])&&(n[d]=null),(m.event.triggered=g),n[g](),(m.event.triggered=void 0),l&&(n[d]=l))),e.result)}},simulate:function(e,t,n){var r=m.extend(new m.Event(),n,{type:e,isSimulated:!0});m.event.trigger(r,null,t)},}),m.fn.extend({trigger:function(e,t){return this.each(function(){m.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return m.event.trigger(e,t,n,!0)},}),m.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){m.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),m.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},}),(v.focusin="onfocusin" in i),v.focusin||m.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){m.event.simulate(t,e.target,m.event.fix(e))};m.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=R.access(r,t);i||r.addEventListener(e,n,!0),R.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=R.access(r,t)-1;i?R.access(r,t,i):(r.removeEventListener(e,n,!0),R.remove(r,t))},}});var ut=i.location,lt=m.now(),ct=/\?/;(m.parseJSON=function(e){return JSON.parse(e+"")}),(m.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=new i.DOMParser().parseFromString(e,"text/xml")}catch(e){t=void 0} +return((t&&!t.getElementsByTagName("parsererror").length)||m.error("Invalid XML: "+e),t)});var dt=/#.*$/,ft=/([?&])_=[^&]*/,pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,ht=/^(?:GET|HEAD)$/,vt=/^\/\//,mt={},gt={},yt="*/".concat("*"),bt=s.createElement("a");function xt(e){return function(t,n){"string"!=typeof t&&((n=t),(t="*"));var r,i=0,o=t.toLowerCase().match(O)||[];if(m.isFunction(n)) +for(;(r=o[i++]);) +"+"===r[0]?((r=r.slice(1)||"*"),(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n);}} +function wt(e,t,n,r){var i={},o=e===gt;function a(s){var u;return((i[s]=!0),m.each(e[s]||[],function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)}),u)} +return a(t.dataTypes[0])||(!i["*"]&&a("*"))} +function Tt(e,t){var n,r,i=m.ajaxSettings.flatOptions||{};for(n in t) +void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&m.extend(!0,e,r),e}(bt.href=ut.href),m.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:ut.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(ut.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":yt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript",},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON",},converters:{"* text":String,"text html":!0,"text json":m.parseJSON,"text xml":m.parseXML,},flatOptions:{url:!0,context:!0},},ajaxSetup:function(e,t){return t?Tt(Tt(e,m.ajaxSettings),t):Tt(m.ajaxSettings,e)},ajaxPrefilter:xt(mt),ajaxTransport:xt(gt),ajax:function(e,t){"object"===r(e)&&((t=e),(e=void 0)),(t=t||{});var n,o,a,u,l,c,d,f,p=m.ajaxSetup({},t),h=p.context||p,v=p.context&&(h.nodeType||h.jquery)?m(h):m.event,g=m.Deferred(),y=m.Callbacks("once memory"),b=p.statusCode||{},x={},w={},T=0,C="canceled",k={readyState:0,getResponseHeader:function(e){var t;if(2===T){if(!u) +for(u={};(t=pt.exec(a));) +u[t[1].toLowerCase()]=t[2];t=u[e.toLowerCase()]} +return null==t?null:t},getAllResponseHeaders:function(){return 2===T?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return T||((e=w[n]=w[n]||e),(x[e]=t)),this},overrideMimeType:function(e){return T||(p.mimeType=e),this},statusCode:function(e){var t;if(e) +if(T<2)for(t in e)b[t]=[b[t],e[t]];else k.always(e[k.status]);return this},abort:function(e){var t=e||C;return n&&n.abort(t),S(0,t),this},};if(((g.promise(k).complete=y.add),(k.success=k.done),(k.error=k.fail),(p.url=((e||p.url||ut.href)+"").replace(dt,"").replace(vt,ut.protocol+"//")),(p.type=t.method||t.type||p.method||p.type),(p.dataTypes=m.trim(p.dataType||"*").toLowerCase().match(O)||[""]),null==p.crossDomain)){c=s.createElement("a");try{(c.href=p.url),(c.href=c.href),(p.crossDomain=bt.protocol+"//"+bt.host!=c.protocol+"//"+c.host)}catch(e){p.crossDomain=!0}} +if((p.data&&p.processData&&"string"!=typeof p.data&&(p.data=m.param(p.data,p.traditional)),wt(mt,p,t,k),2===T)) +return k;for(f in((d=m.event&&p.global)&&0==m.active++&&m.event.trigger("ajaxStart"),(p.type=p.type.toUpperCase()),(p.hasContent=!ht.test(p.type)),(o=p.url),p.hasContent||(p.data&&((o=p.url+=(ct.test(o)?"&":"?")+p.data),delete p.data),!1===p.cache&&(p.url=ft.test(o)?o.replace(ft,"$1_="+lt++):o+(ct.test(o)?"&":"?")+"_="+lt++)),p.ifModified&&(m.lastModified[o]&&k.setRequestHeader("If-Modified-Since",m.lastModified[o]),m.etag[o]&&k.setRequestHeader("If-None-Match",m.etag[o])),((p.data&&p.hasContent&&!1!==p.contentType)||t.contentType)&&k.setRequestHeader("Content-Type",p.contentType),k.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+yt+"; q=0.01":""):p.accepts["*"]),p.headers)) +k.setRequestHeader(f,p.headers[f]);if(p.beforeSend&&(!1===p.beforeSend.call(h,k,p)||2===T)) +return k.abort();for(f in((C="abort"),{success:1,error:1,complete:1})) +k[f](p[f]);if((n=wt(gt,p,t,k))){if(((k.readyState=1),d&&v.trigger("ajaxSend",[k,p]),2===T)) +return k;p.async&&p.timeout>0&&(l=i.setTimeout(function(){k.abort("timeout")},p.timeout));try{(T=1),n.send(x,S)}catch(e){if(!(T<2))throw e;S(-1,e)}}else S(-1,"No Transport");function S(e,t,r,s){var u,c,f,x,w,C=t;2!==T&&((T=2),l&&i.clearTimeout(l),(n=void 0),(a=s||""),(k.readyState=e>0?4:0),(u=(e>=200&&e<300)||304===e),r&&(x=(function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;"*"===u[0];) +u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r) +for(i in s) +if(s[i]&&s[i].test(r)){u.unshift(i);break} +if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break} +a||(a=i)} +o=o||a} +if(o)return o!==u[0]&&u.unshift(o),n[o]})(p,k,r)),(x=(function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1]) +for(a in e.converters) +l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;) +if((e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),(u=o),(o=c.shift()))) +if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o])) +for(i in l) +if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?(a=l[i]):!0!==l[i]&&((o=s[0]),c.unshift(s[1]));break} +if(!0!==a) +if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o,}}} +return{state:"success",data:t}})(p,x,k,u)),u?(p.ifModified&&((w=k.getResponseHeader("Last-Modified"))&&(m.lastModified[o]=w),(w=k.getResponseHeader("etag"))&&(m.etag[o]=w)),204===e||"HEAD"===p.type?(C="nocontent"):304===e?(C="notmodified"):((C=x.state),(c=x.data),(u=!(f=x.error)))):((f=C),(!e&&C)||((C="error"),e<0&&(e=0))),(k.status=e),(k.statusText=(t||C)+""),u?g.resolveWith(h,[c,C,k]):g.rejectWith(h,[k,C,f]),k.statusCode(b),(b=void 0),d&&v.trigger(u?"ajaxSuccess":"ajaxError",[k,p,u?c:f,]),y.fireWith(h,[k,C]),d&&(v.trigger("ajaxComplete",[k,p]),--m.active||m.event.trigger("ajaxStop")))} +return k},getJSON:function(e,t,n){return m.get(e,t,n,"json")},getScript:function(e,t){return m.get(e,void 0,t,"script")},}),m.each(["get","post"],function(e,t){m[t]=function(e,n,r,i){return(m.isFunction(n)&&((i=i||r),(r=n),(n=void 0)),m.ajax(m.extend({url:e,type:t,dataType:i,data:n,success:r},m.isPlainObject(e)&&e)))}}),(m._evalUrl=function(e){return m.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,throws:!0,})}),m.fn.extend({wrapAll:function(e){var t;return m.isFunction(e)?this.each(function(t){m(this).wrapAll(e.call(this,t))}):(this[0]&&((t=m(e,this[0].ownerDocument).eq(0).clone(!0)),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;) +e=e.firstElementChild;return e}).append(this)),this)},wrapInner:function(e){return m.isFunction(e)?this.each(function(t){m(this).wrapInner(e.call(this,t))}):this.each(function(){var t=m(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=m.isFunction(e);return this.each(function(n){m(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){m.nodeName(this,"body")||m(this).replaceWith(this.childNodes)}).end()},}),(m.expr.filters.hidden=function(e){return!m.expr.filters.visible(e)}),(m.expr.filters.visible=function(e){return(e.offsetWidth>0||e.offsetHeight>0||e.getClientRects().length>0)});var Ct=/%20/g,kt=/\[\]$/,St=/\r?\n/g,jt=/^(?:submit|button|image|reset|file)$/i,_t=/^(?:input|select|textarea|keygen)/i;function Et(e,t,n,i){var o;if(m.isArray(t)) +m.each(t,function(t,o){n||kt.test(e)?i(e,o):Et(e+"["+("object"===r(o)&&null!=o?t:"")+"]",o,n,i)});else if(n||"object"!==m.type(t))i(e,t);else for(o in t)Et(e+"["+o+"]",t[o],n,i);}(m.param=function(e,t){var n,r=[],i=function(e,t){(t=m.isFunction(t)?t():null==t?"":t),(r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t))};if((void 0===t&&(t=m.ajaxSettings&&m.ajaxSettings.traditional),m.isArray(e)||(e.jquery&&!m.isPlainObject(e)))) +m.each(e,function(){i(this.name,this.value)});else for(n in e)Et(n,e[n],t,i);return r.join("&").replace(Ct,"+")}),m.fn.extend({serialize:function(){return m.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=m.prop(this,"elements");return e?m.makeArray(e):this}).filter(function(){var e=this.type;return(this.name&&!m(this).is(":disabled")&&_t.test(this.nodeName)&&!jt.test(e)&&(this.checked||!Q.test(e)))}).map(function(e,t){var n=m(this).val();return null==n?null:m.isArray(n)?m.map(n,function(e){return{name:t.name,value:e.replace(St,"\r\n")}}):{name:t.name,value:n.replace(St,"\r\n")}}).get()},}),(m.ajaxSettings.xhr=function(){try{return new i.XMLHttpRequest()}catch(e){}});var Nt={0:200,1223:204},At=m.ajaxSettings.xhr();(v.cors=!!At&&"withCredentials" in At),(v.ajax=At=!!At),m.ajaxTransport(function(e){var t,n;if(v.cors||(At&&!e.crossDomain)) +return{send:function(r,o){var a,s=e.xhr();if((s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)) +for(a in e.xhrFields)s[a]=e.xhrFields[a];for(a in(e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||r["X-Requested-With"]||(r["X-Requested-With"]="XMLHttpRequest"),r)) +s.setRequestHeader(a,r[a]);(t=function(e){return function(){t&&((t=n=s.onload=s.onerror=s.onabort=s.onreadystatechange=null),"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Nt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}}),(s.onload=t()),(n=s.onerror=t("error")),void 0!==s.onabort?(s.onabort=n):(s.onreadystatechange=function(){4===s.readyState&&i.setTimeout(function(){t&&n()})}),(t=t("abort"));try{s.send((e.hasContent&&e.data)||null)}catch(e){if(t)throw e}},abort:function(){t&&t()},}}),m.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript",},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return m.globalEval(e),e},},}),m.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),m.ajaxTransport("script",function(e){var t,n;if(e.crossDomain) +return{send:function(r,i){(t=m(" +{block name='product_footer'} + {hook h='displayFooterProduct' product=$product category=$category} +{/block} +
    +{block name='page_footer_container'} +
    + {block name='page_footer'} + + {/block} +
    + {/block} + + diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/details/detail3382420090.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/details/detail3382420090.tpl new file mode 100644 index 00000000..16ca0ed6 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/details/detail3382420090.tpl @@ -0,0 +1,256 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} + +
    +
    + +{block name='page_content_container'} +
    + {block name='page_content'} +
    + {block name='product_cover_thumbnails'} + {if $isMobile && $dmobile_swipe} +
    + {foreach from=$product.images item=image} +
    + {$image.legend} +
    + {/foreach} +
    + {else} + {block name='product_cover'} +
    + {block name='product_flags'} +
      + {foreach from=$product.flags item=flag} +
    • {$flag.label}
    • + {/foreach} +
    + {/block} + {if $product.cover} + {$product.cover.legend} +
    + +
    + {else} + {$product.name} + {/if} +
    + {/block} + + {block name='product_images'} + + + {if $product.images|@count > 1} +
    + + +
    + {/if} + {/block} + {/if} + {/block} + {hook h='displayAfterProductThumbs'} +
    + {/block} +
    +{/block} + +{block name='product_images_modal'} + {include file='catalog/_partials/product-images-modal.tpl'} +{/block} +
    +{block name='page_header_container'} + {block name='page_header'} +

    {block name='page_title'}{$product.name}{/block}

    + {/block} +{/block} +{block name='product_prices'} + {include file='catalog/_partials/product-prices.tpl'} +{/block} + +{if $product.is_customizable && count($product.customizations.fields)} + {block name='product_customization'} + {include file="catalog/_partials/product-customization.tpl" customizations=$product.customizations} + {/block} +{/if} +
    + {block name='product_buy'} +
    + + + + + {block name='product_variants'} + {include file='catalog/_partials/product-variants.tpl'} + {/block} + + {block name='product_pack'} + {if $packItems} +
    +

    {l s='This pack contains' d='Shop.Theme.Catalog'}

    + {foreach from=$packItems item="product_pack"} + {block name='product_miniature'} + {include file='catalog/_partials/miniatures/pack-product.tpl' product=$product_pack} + {/block} + {/foreach} +
    + {/if} + {/block} + + {block name='product_discounts'} + {include file='catalog/_partials/product-discounts.tpl'} + {/block} + + {block name='product_add_to_cart'} + {include file='catalog/_partials/product-add-to-cart.tpl'} + {/block} + + {block name='product_refresh'} + + {/block} +
    + {/block} +
    +{block name='product_description_short'} +
    {$product.description_short nofilter}
    +{/block} +{block name='product_after_cart_button'} + {include file='catalog/_partials/product-after-cart-button.tpl'} +{/block} +{block name='product_additional_info'} + {include file='catalog/_partials/product-additional-info.tpl'} +{/block} +{hook h='displayLeoProductReviewExtra' product=$product} +{block name='hook_display_reassurance'} + {hook h='displayReassurance'} +{/block} +
    +{include file="sub/product_info/tab.tpl"} +{block name='product_accessories'} + {if $accessories} +
    +

    {l s='You might also like' d='Shop.Theme.Catalog'}

    +
    +
    +
    + {foreach from=$accessories item="product_accessory"} +
    + {block name='product_miniature'} + {if isset($productProfileDefault) && $productProfileDefault} + + {hook h='displayLeoProfileProduct' product=$product_accessory profile=$productProfileDefault} + {else} + {include file='catalog/_partials/miniatures/product.tpl' product=$product_accessory} + {/if} + {/block} +
    + {/foreach} +
    +
    +
    +
    + {/if} +{/block} + + +{block name='product_footer'} + {hook h='displayFooterProduct' product=$product category=$category} +{/block} +
    +{block name='page_footer_container'} +
    + {block name='page_footer'} + + {/block} +
    + {/block} +
    + diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/details/product_accessories.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/details/product_accessories.tpl new file mode 100644 index 00000000..c207eb77 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/details/product_accessories.tpl @@ -0,0 +1,76 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{block name='product_accessories'} + {if $accessories} +
    +

    {l s='You might also like' d='Shop.Theme.Catalog'}

    +
    +
    +
    + {foreach from=$accessories item="product_accessory"} +
    + {block name='product_miniature'} + {if isset($productProfileDefault) && $productProfileDefault} + {* exits THEME_NAME/profiles/profile_name.tpl -> load template*} + {hook h='displayLeoProfileProduct' product=$product_accessory profile=$productProfileDefault} + {else} + {include file='catalog/_partials/miniatures/product.tpl' product=$product_accessory} + {/if} + {/block} +
    + {/foreach} +
    +
    +
    +
    + {/if} +{/block} + + \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/index.php b/themes/at_movic/modules/appagebuilder/views/templates/front/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/info/assets/form.css b/themes/at_movic/modules/appagebuilder/views/templates/front/info/assets/form.css new file mode 100644 index 00000000..a0668362 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/info/assets/form.css @@ -0,0 +1,83 @@ +@charset "utf-8"; + +#toolspanelcontent{ + width:240px +} +#toolspanelcontent > div:hover { + color:#285151 +} +#toolspanelcontent #bottombox input{ + *clear: both; + *margin-left: 10px; +} +#toolspanelcontent #bottombox a{ + +} +#toolspanelcontent #bottombox input[type="submit"]{height: 28px; line-height: 28px;} + +#toolspanel { + position:fixed; + top:100px; + left:0; + background:red; + z-index:999; + *height:0; +} +#toolspanelcontent { + position:fixed; + top:100px; + -webkit-border-radius: 0 5px 5px 0; + -moz-border-radius: 0 5px 5px 0; + border-radius: 0 5px 5px 0; + color: #000; + font-size: 90%; + z-index: 999; + border-bottom: 1px solid #DBDDD8; + border-top: 1px solid #DBDDD8; + background: #fff; +} +#toolspanelcontent > div { + padding:12px +} +#toolspanel .pn-button { + cursor: pointer; + right:-38px; + height:20px; + width:14px; + position: absolute; + top: 115px; + z-index: 999; + border-bottom: 1px solid #DBDDD8; + border-right: 1px solid #DBDDD8; + border-top: 1px solid #DBDDD8; + -webkit-border-radius: 0 5px 5px 0; + -moz-border-radius: 0 5px 5px 0; + border-radius: 0 5px 5px 0; + -webkit-box-shadow: 3px 0 4px #cecece; + -moz-box-shadow: 3px 0 4px #cecece; + box-shadow: 3px 0 4px #cecece; + background: #fff; +} +#toolspanel .pn-button { + background: url("icon.png") no-repeat scroll 12px 13px #FFFFFF; + opacity:1; +} +#toolspanel .open { + background: url("icon.png") no-repeat scroll 12px -27px #FFFFFF; +} +#pnpartterns a { + border: 1px solid #BBBBBB; + display: block; + float: left; + height: 6px; + margin: 0 5px 5px 0; + padding: 6px; + width: 6px; +} +#pnpartterns a.active{ border-color:red; -moz-transition:border-color 0.8s} + +#template_theme select { + width: 200px; + background: #fff!important; + border-color: #ccc; +} \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/info/assets/form.js b/themes/at_movic/modules/appagebuilder/views/templates/front/info/assets/form.js new file mode 100644 index 00000000..c2133e2f --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/info/assets/form.js @@ -0,0 +1,20 @@ +/* + * @Website: apollotheme.com - prestashop template provider + * @author Apollotheme + * @copyright Apollotheme + * @description: ApPageBuilder is module help you can build content for your shop + */ +// JavaScript Document +$(document).ready( function(){ + $(".bgpattern").each( function(){ + var wrap = this; + if( $("input",wrap).val() ){ + $("#" + $("input",wrap).val()).addClass("active"); + } + $("a",this).click( function(){ + $("input",wrap).val( $(this).attr("id").replace(/\.\w+$/,"") ); + $("a",wrap).removeClass( "active" ); + $(this).addClass("active"); + } ); + } ); +} ); \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/info/assets/index.php b/themes/at_movic/modules/appagebuilder/views/templates/front/info/assets/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/info/assets/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/info/index.php b/themes/at_movic/modules/appagebuilder/views/templates/front/info/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/info/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/info/paneltool.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/info/paneltool.tpl new file mode 100644 index 00000000..a4ff1b43 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/info/paneltool.tpl @@ -0,0 +1,89 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{if class_exists("LeoFrameworkHelper")} +{$skins=LeoFrameworkHelper::getSkins($LEO_THEMENAME)} +{$header_styles=LeoFrameworkHelper::getPanelConfigByTheme('header',$LEO_THEMENAME)} +{$sidebarmenu=LeoFrameworkHelper::getPanelConfigByTheme('sidebarmenu',$LEO_THEMENAME)} +{$theme_customizations=LeoFrameworkHelper::getLayoutSettingByTheme($LEO_THEMENAME)} +
    + {if $skins || $header_styles || $theme_customizations || $sidebarmenu} +
    +
    + THEME OPTIONS +
    +
    +
    +
    +

    {l s='Panel Tool' d='Shop.Theme.Global'}

    + + {* + {if $theme_customizations && isset($theme_customizations.layout) && isset($theme_customizations.layout.layout_mode) && isset($theme_customizations.layout.layout_mode.option)} +
    + +
    + {foreach $theme_customizations.layout.layout_mode.option as $layout} + + {$layout.name} + + {/foreach} +
    +
    + {/if} + *} + + {if $skins} +
    + +
    +
    + +
    + {foreach $skins as $skin} +
    + {if isset($skin.icon) && $skin.icon} + {$skin.name} + {else} + + {/if} +
    + {/foreach} +
    +
    + {/if} + +
    + +
    +
    + + {l s='Yes' d='Shop.Theme.Global'} + + + {l s='No' d='Shop.Theme.Global'} + +
    +
    +
    + + {hook h="pagebuilderConfig" configName="profile"} + {hook h="pagebuilderConfig" configName="header"} + {hook h="pagebuilderConfig" configName="footer"} + {* + {hook h="pagebuilderConfig" configName="content"} + {hook h="pagebuilderConfig" configName="product"} + {hook h="pagebuilderConfig" configName="product_builder"} + *} +
    +
    +
    +
    + {/if} + + +
    +{/if} \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/products/index.php b/themes/at_movic/modules/appagebuilder/views/templates/front/products/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/products/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/products/quickview.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/products/quickview.tpl new file mode 100644 index 00000000..37bc0a3a --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/products/quickview.tpl @@ -0,0 +1,21 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} + + diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_597df18a22766_1501426058.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_597df18a22766_1501426058.tpl new file mode 100644 index 00000000..31a962be --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_597df18a22766_1501426058.tpl @@ -0,0 +1,8 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} + \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a2653a8e2425_1512461224.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a2653a8e2425_1512461224.tpl new file mode 100644 index 00000000..1518d542 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a2653a8e2425_1512461224.tpl @@ -0,0 +1,8 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} + \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a27b627540ac_1512551975.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a27b627540ac_1512551975.tpl new file mode 100644 index 00000000..f5cfa5e2 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a27b627540ac_1512551975.tpl @@ -0,0 +1,8 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} + \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a38bb9ea3ccd_1513667486.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a38bb9ea3ccd_1513667486.tpl new file mode 100644 index 00000000..29c5d0a0 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a38bb9ea3ccd_1513667486.tpl @@ -0,0 +1,8 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} + {if isset($LEO_BACKTOP) && $LEO_BACKTOP}
    {/if} \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a3a246a9eafc_1513759850.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a3a246a9eafc_1513759850.tpl new file mode 100644 index 00000000..aa640f55 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a3a246a9eafc_1513759850.tpl @@ -0,0 +1,8 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} + \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a3a2dbb41c1b_1513762235.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a3a2dbb41c1b_1513762235.tpl new file mode 100644 index 00000000..045e24c7 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5a3a2dbb41c1b_1513762235.tpl @@ -0,0 +1,8 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} + \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5e03219c980c8_1577263516.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5e03219c980c8_1577263516.tpl new file mode 100644 index 00000000..29b09296 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5e03219c980c8_1577263516.tpl @@ -0,0 +1,8 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} + \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5e393d9d55121_1580809629.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5e393d9d55121_1580809629.tpl new file mode 100644 index 00000000..73b5c3e4 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5e393d9d55121_1580809629.tpl @@ -0,0 +1,8 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} + \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5e4a3f8977b45_1581924233.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5e4a3f8977b45_1581924233.tpl new file mode 100644 index 00000000..aa640f55 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/id_gencode_5e4a3f8977b45_1581924233.tpl @@ -0,0 +1,8 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} + \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/index.php b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1501781109.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1501781109.tpl new file mode 100644 index 00000000..d028a129 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1501781109.tpl @@ -0,0 +1,174 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +
    +
    +
    +{block name='product_thumbnail'} +{if isset($cfg_product_list_image) && $cfg_product_list_image} +
    +{/if} + +{if $product.cover} + {if isset($formAtts) && isset($formAtts.lazyload) && $formAtts.lazyload} + + + {if $lmobile_swipe && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {else} + {if $lmobile_swipe == 1 && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {/if} +{else} + + + +{/if} + +{/block} + + + +{block name='product_flags'} +
      + {foreach from=$product.flags item=flag} +
    • {$flag.label}
    • + {/foreach} +
    +{/block} +
    +
    + +{block name='product_name'} +

    {$product.name}

    +{/block} + + +{hook h='displayLeoWishlistButton' product=$product} +
    + +{hook h='displayLeoCartButton' product=$product} + + +{block name='product_price_and_shipping'} + {if $product.show_price} +
    + {if $product.has_discount} + {hook h='displayProductPriceBlock' product=$product type="old_price"} + {l s='Regular price' d='Shop.Theme.Catalog'} + {$product.regular_price} + {/if} + + {hook h='displayProductPriceBlock' product=$product type="before_price"} + + {l s='Price' d='Shop.Theme.Catalog'} + + {$product.price} + + {if $product.has_discount} + {if $product.discount_type === 'percentage'} + {$product.discount_percentage} + {elseif $product.discount_type === 'amount'} + {$product.discount_amount_to_display} + {/if} + {/if} + + {hook h='displayProductPriceBlock' product=$product type='unit_price'} + + {hook h='displayProductPriceBlock' product=$product type='weight'} +
    + {/if} +{/block} +
    +{block name='product_description_short'} +
    {$product.description_short|strip_tags|truncate:150:'...' nofilter}
    +{/block}
    +
    +
    diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1510921072.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1510921072.tpl new file mode 100644 index 00000000..9e990b5f --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1510921072.tpl @@ -0,0 +1,184 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +
    +
    +
    +{block name='product_thumbnail'} +{if isset($cfg_product_list_image) && $cfg_product_list_image} +
    +{/if} + +{if $product.cover} + {if isset($formAtts) && isset($formAtts.lazyload) && $formAtts.lazyload} + + + {if $lmobile_swipe && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {else} + {if $lmobile_swipe == 1 && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {/if} +{else} + + + +{/if} + +{/block} + + + +{block name='product_flags'} +
      + {foreach from=$product.flags item=flag} +
    • {$flag.label}
    • + {/foreach} +
    +{/block} + + + +
    +
    +
    + {block name='product_variants'} + {if $product.main_variants} + {include file='catalog/_partials/variant-links.tpl' variants=$product.main_variants} + {/if} + {/block} +
    + +{block name='product_name'} +

    {$product.name}

    +{/block} + + +{block name='product_price_and_shipping'} + {if $product.show_price} +
    + {if $product.has_discount} + {hook h='displayProductPriceBlock' product=$product type="old_price"} + {l s='Regular price' d='Shop.Theme.Catalog'} + {$product.regular_price} + {/if} + + {hook h='displayProductPriceBlock' product=$product type="before_price"} + + {l s='Price' d='Shop.Theme.Catalog'} + + {$product.price} + + {if $product.has_discount} + {if $product.discount_type === 'percentage'} + {$product.discount_percentage} + {elseif $product.discount_type === 'amount'} + {$product.discount_amount_to_display} + {/if} + {/if} + + {hook h='displayProductPriceBlock' product=$product type='unit_price'} + + {hook h='displayProductPriceBlock' product=$product type='weight'} +
    + {/if} +{/block} + +{block name='product_description_short'} +
    {$product.description_short|strip_tags|truncate:150:'...' nofilter}
    +{/block}
    + +{hook h='displayLeoCartButton' product=$product} + + +{hook h='displayLeoWishlistButton' product=$product} + + +{hook h='displayLeoCompareButton' product=$product} +
    +
    +
    diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1510937024.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1510937024.tpl new file mode 100644 index 00000000..cf8b0e62 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1510937024.tpl @@ -0,0 +1,180 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +
    +
    +
    +{block name='product_thumbnail'} +{if isset($cfg_product_list_image) && $cfg_product_list_image} +
    +{/if} + +{if $product.cover} + {if isset($formAtts) && isset($formAtts.lazyload) && $formAtts.lazyload} + + + {if $lmobile_swipe && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {else} + {if $lmobile_swipe == 1 && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {/if} +{else} + + + +{/if} + +{/block} + + + +{block name='product_flags'} +
      + {foreach from=$product.flags item=flag} +
    • {$flag.label}
    • + {/foreach} +
    +{/block} +
    + + + + +{hook h='displayLeoCartButton' product=$product} + + +{hook h='displayLeoWishlistButton' product=$product} + + +{hook h='displayLeoCompareButton' product=$product} +
    +
    + +{block name='product_name'} +

    {$product.name}

    +{/block} + + +{block name='product_price_and_shipping'} + {if $product.show_price} +
    + {if $product.has_discount} + {hook h='displayProductPriceBlock' product=$product type="old_price"} + {l s='Regular price' d='Shop.Theme.Catalog'} + {$product.regular_price} + {/if} + + {hook h='displayProductPriceBlock' product=$product type="before_price"} + + {l s='Price' d='Shop.Theme.Catalog'} + + {$product.price} + + {if $product.has_discount} + {if $product.discount_type === 'percentage'} + {$product.discount_percentage} + {elseif $product.discount_type === 'amount'} + {$product.discount_amount_to_display} + {/if} + {/if} + + {hook h='displayProductPriceBlock' product=$product type='unit_price'} + + {hook h='displayProductPriceBlock' product=$product type='weight'} +
    + {/if} +{/block} + + +{hook h='displayLeoCartAttribute' product=$product} + +{block name='product_description_short'} +
    {$product.description_short|strip_tags|truncate:150:'...' nofilter}
    +{/block}
    +
    +
    diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1512131371.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1512131371.tpl new file mode 100644 index 00000000..2748c567 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1512131371.tpl @@ -0,0 +1,174 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +
    +
    +
    +{block name='product_thumbnail'} +{if isset($cfg_product_list_image) && $cfg_product_list_image} +
    +{/if} + +{if $product.cover} + {if isset($formAtts) && isset($formAtts.lazyload) && $formAtts.lazyload} + + + {if $lmobile_swipe && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {else} + {if $lmobile_swipe == 1 && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {/if} +{else} + + + +{/if} + +{/block} + + + +{block name='product_flags'} +
      + {foreach from=$product.flags item=flag} +
    • {$flag.label}
    • + {/foreach} +
    +{/block} +
    + + + + +{hook h='displayLeoWishlistButton' product=$product} + + +{hook h='displayLeoCompareButton' product=$product} + + +{hook h='displayLeoCartButton' product=$product} +
    +
    + +{block name='product_name'} +

    {$product.name}

    +{/block} + + +{block name='product_price_and_shipping'} + {if $product.show_price} +
    + {if $product.has_discount} + {hook h='displayProductPriceBlock' product=$product type="old_price"} + {l s='Regular price' d='Shop.Theme.Catalog'} + {$product.regular_price} + {/if} + + {hook h='displayProductPriceBlock' product=$product type="before_price"} + + {l s='Price' d='Shop.Theme.Catalog'} + + {$product.price} + + {if $product.has_discount} + {if $product.discount_type === 'percentage'} + {$product.discount_percentage} + {elseif $product.discount_type === 'amount'} + {$product.discount_amount_to_display} + {/if} + {/if} + + {hook h='displayProductPriceBlock' product=$product type='unit_price'} + + {hook h='displayProductPriceBlock' product=$product type='weight'} +
    + {/if} +{/block} +
    +
    +
    diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1512552970.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1512552970.tpl new file mode 100644 index 00000000..6e7980c7 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1512552970.tpl @@ -0,0 +1,180 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +
    +
    +
    + +{block name='product_flags'} +
      + {foreach from=$product.flags item=flag} +
    • {$flag.label}
    • + {/foreach} +
    +{/block} + +{block name='product_thumbnail'} +{if isset($cfg_product_list_image) && $cfg_product_list_image} +
    +{/if} + +{if $product.cover} + {if isset($formAtts) && isset($formAtts.lazyload) && $formAtts.lazyload} + + + {if $lmobile_swipe && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {else} + {if $lmobile_swipe == 1 && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {/if} +{else} + + + +{/if} + +{/block} + +
    + +{hook h='displayLeoWishlistButton' product=$product} + + +{hook h='displayLeoCompareButton' product=$product} +
    +
    + +{block name='product_name'} +

    {$product.name}

    +{/block} + + +{block name='product_price_and_shipping'} + {if $product.show_price} +
    + {if $product.has_discount} + {hook h='displayProductPriceBlock' product=$product type="old_price"} + {l s='Regular price' d='Shop.Theme.Catalog'} + {$product.regular_price} + {/if} + + {hook h='displayProductPriceBlock' product=$product type="before_price"} + + {l s='Price' d='Shop.Theme.Catalog'} + + {$product.price} + + {if $product.has_discount} + {if $product.discount_type === 'percentage'} + {$product.discount_percentage} + {elseif $product.discount_type === 'amount'} + {$product.discount_amount_to_display} + {/if} + {/if} + + {hook h='displayProductPriceBlock' product=$product type='unit_price'} + + {hook h='displayProductPriceBlock' product=$product type='weight'} +
    + {/if} +{/block} +
    + +{hook h='displayLeoProductListReview' product=$product} + + +{hook h='displayLeoCartButton' product=$product} + + + +
    +{block name='product_description_short'} +
    {$product.description_short|strip_tags|truncate:150:'...' nofilter}
    +{/block}
    +
    +
    diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1512598029.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1512598029.tpl new file mode 100644 index 00000000..acdf3d51 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist1512598029.tpl @@ -0,0 +1,141 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +
    +
    +
    +{block name='product_thumbnail'} +{if isset($cfg_product_list_image) && $cfg_product_list_image} +
    +{/if} + +{if $product.cover} + {if isset($formAtts) && isset($formAtts.lazyload) && $formAtts.lazyload} + + + {if $lmobile_swipe && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {else} + {if $lmobile_swipe == 1 && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {/if} +{else} + + + +{/if} + +{/block} + +
    +
    + +{block name='product_name'} +

    {$product.name}

    +{/block} + + +{block name='product_price_and_shipping'} + {if $product.show_price} +
    + {if $product.has_discount} + {hook h='displayProductPriceBlock' product=$product type="old_price"} + {l s='Regular price' d='Shop.Theme.Catalog'} + {$product.regular_price} + {/if} + + {hook h='displayProductPriceBlock' product=$product type="before_price"} + + {l s='Price' d='Shop.Theme.Catalog'} + + {$product.price} + + {if $product.has_discount} + {if $product.discount_type === 'percentage'} + {$product.discount_percentage} + {elseif $product.discount_type === 'amount'} + {$product.discount_amount_to_display} + {/if} + {/if} + + {hook h='displayProductPriceBlock' product=$product type='unit_price'} + + {hook h='displayProductPriceBlock' product=$product type='weight'} +
    + {/if} +{/block} +
    +
    +
    diff --git a/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist3664911648.tpl b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist3664911648.tpl new file mode 100644 index 00000000..86230804 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/front/profiles/plist3664911648.tpl @@ -0,0 +1,165 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +
    +
    +
    +{block name='product_thumbnail'} +{if isset($cfg_product_list_image) && $cfg_product_list_image} +
    +{/if} + +{if $product.cover} + {if isset($formAtts) && isset($formAtts.lazyload) && $formAtts.lazyload} + + + {if $lmobile_swipe && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {else} + {if $lmobile_swipe == 1 && $isMobile} +
    +
    + {/if} + + {$product.cover.legend} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + + {if $lmobile_swipe == 1 && $isMobile} +
    + {foreach from=$product.images item=image} + {if $product.cover.bySize.home_default.url != $image.bySize.home_default.url} +
    + + {$image.legend} + +
    + {/if} + {/foreach} +
    + {/if} + {/if} +{else} + + + +{/if} + +{/block} + + + +{hook h='displayLeoWishlistButton' product=$product} +
    + + + + +{hook h='displayLeoCartButton' product=$product} + + +{hook h='displayLeoCompareButton' product=$product} +
    +
    + +{block name='product_name'} +

    {$product.name}

    +{/block} + + +{block name='product_price_and_shipping'} + {if $product.show_price} +
    + {if $product.has_discount} + {hook h='displayProductPriceBlock' product=$product type="old_price"} + {l s='Regular price' d='Shop.Theme.Catalog'} + {$product.regular_price} + {/if} + + {hook h='displayProductPriceBlock' product=$product type="before_price"} + + {l s='Price' d='Shop.Theme.Catalog'} + + {$product.price} + + {if $product.has_discount} + {if $product.discount_type === 'percentage'} + {$product.discount_percentage} + {elseif $product.discount_type === 'amount'} + {$product.discount_amount_to_display} + {/if} + {/if} + + {hook h='displayProductPriceBlock' product=$product type='unit_price'} + + {hook h='displayProductPriceBlock' product=$product type='weight'} +
    + {/if} +{/block} +
    +
    +
    diff --git a/themes/at_movic/modules/appagebuilder/views/templates/hook/index.php b/themes/at_movic/modules/appagebuilder/views/templates/hook/index.php new file mode 100644 index 00000000..a729bd49 --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/hook/index.php @@ -0,0 +1,35 @@ + +* @copyright PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/themes/at_movic/modules/appagebuilder/views/templates/index.php b/themes/at_movic/modules/appagebuilder/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/appagebuilder/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/blockgrouptop/index.php b/themes/at_movic/modules/blockgrouptop/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/blockgrouptop/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/blockgrouptop/views/index.php b/themes/at_movic/modules/blockgrouptop/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/blockgrouptop/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/blockgrouptop/views/templates/hook/blockgrouptop.tpl b/themes/at_movic/modules/blockgrouptop/views/templates/hook/blockgrouptop.tpl new file mode 100644 index 00000000..c0a8aa67 --- /dev/null +++ b/themes/at_movic/modules/blockgrouptop/views/templates/hook/blockgrouptop.tpl @@ -0,0 +1,153 @@ +{** + * Leo Prestashop Theme Framework for Prestashop 1.5.x + * + * @package leotempcp + * @version 3.0 + * @author http://www.leotheme.com + * @copyright Copyright (C) October 2013 LeoThemes.com <@emai:leotheme@gmail.com> + * .All rights reserved. + * @license GNU General Public License version 2 + * + **} + + + + + diff --git a/themes/at_movic/modules/blockgrouptop/views/templates/hook/index.php b/themes/at_movic/modules/blockgrouptop/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/blockgrouptop/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/blockgrouptop/views/templates/index.php b/themes/at_movic/modules/blockgrouptop/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/blockgrouptop/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/blockreassurance/index.php b/themes/at_movic/modules/blockreassurance/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/blockreassurance/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/blockreassurance/views/index.php b/themes/at_movic/modules/blockreassurance/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/blockreassurance/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/blockreassurance/views/templates/hook/blockreassurance.tpl b/themes/at_movic/modules/blockreassurance/views/templates/hook/blockreassurance.tpl new file mode 100644 index 00000000..aa61a594 --- /dev/null +++ b/themes/at_movic/modules/blockreassurance/views/templates/hook/blockreassurance.tpl @@ -0,0 +1,38 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{if $elements} +
    +
      + {foreach from=$elements item=element} +
    • +
      + {$element.text} + {$element.text} +
      +
    • + {/foreach} +
    +
    +{/if} diff --git a/themes/at_movic/modules/blockreassurance/views/templates/hook/index.php b/themes/at_movic/modules/blockreassurance/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/blockreassurance/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/blockreassurance/views/templates/index.php b/themes/at_movic/modules/blockreassurance/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/blockreassurance/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/contactform/index.php b/themes/at_movic/modules/contactform/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/contactform/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/contactform/views/index.php b/themes/at_movic/modules/contactform/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/contactform/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/contactform/views/templates/index.php b/themes/at_movic/modules/contactform/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/contactform/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/contactform/views/templates/widget/contactform.tpl b/themes/at_movic/modules/contactform/views/templates/widget/contactform.tpl new file mode 100644 index 00000000..62ba6f47 --- /dev/null +++ b/themes/at_movic/modules/contactform/views/templates/widget/contactform.tpl @@ -0,0 +1,142 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    +
    + + {if $notifications} +
    +
      + {foreach $notifications.messages as $notif} +
    • {$notif}
    • + {/foreach} +
    +
    + {/if} + + {if !$notifications || $notifications.nw_error} +
    + +
    +
    +

    {l s='Contact us' d='Shop.Theme.Global'}

    +
    +
    + +
    + +
    + +
    +
    + + + +
    + +
    + +
    +
    + + {if $contact.orders} +
    + +
    + +
    + + {l s='optional' d='Shop.Forms.Help'} + +
    + {/if} + + {if $contact.allow_file_upload} +
    + +
    + +
    + + {l s='optional' d='Shop.Forms.Help'} + +
    + {/if} + +
    + +
    + +
    +
    + + {if isset($id_module)} +
    +
    + {hook h='displayGDPRConsent' id_module=$id_module} +
    +
    + {/if} + +
    + +
    + + + + +
    + {/if} + +
    +
    diff --git a/themes/at_movic/modules/contactform/views/templates/widget/index.php b/themes/at_movic/modules/contactform/views/templates/widget/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/contactform/views/templates/widget/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/followup/mails/gb/followup_1.html b/themes/at_movic/modules/followup/mails/gb/followup_1.html new file mode 100644 index 00000000..889b46eb --- /dev/null +++ b/themes/at_movic/modules/followup/mails/gb/followup_1.html @@ -0,0 +1,866 @@ + + + + + Follow up 1 + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Your cart at {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + Thanks for your visit. However, it looks like you did not complete your purchase. +
    +
    +
    + Your cart has been saved, you can go back to your order on our shop: {shop_url} +
    +
    +
    + We are pleased to offer you a discount of {amount}% off your next order. And this offer is valid for {days} days, so do not wait any longer! +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Your voucher code on {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Here is your VOUCHER CODE: {voucher_num}
    +
    +
    + Enter this code in your shopping cart to get the discount. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/followup/mails/gb/followup_1.txt b/themes/at_movic/modules/followup/mails/gb/followup_1.txt new file mode 100644 index 00000000..4d2c318f --- /dev/null +++ b/themes/at_movic/modules/followup/mails/gb/followup_1.txt @@ -0,0 +1,21 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Your cart at {shop_name} + +Thanks for your visit. However, it looks like you did not complete your purchase. + +Your cart has been saved, you can go back to your order on our shop: {shop_url} + +We are pleased to offer you a discount of {amount}% off your next order. And this offer is valid for {days} days, so do not wait any longer! + +Your voucher code on {shop_name} + +Here is your VOUCHER CODE: {voucher_num} + +Enter this code in your shopping cart to get the discount. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/followup/mails/gb/followup_2.html b/themes/at_movic/modules/followup/mails/gb/followup_2.html new file mode 100644 index 00000000..bb826bda --- /dev/null +++ b/themes/at_movic/modules/followup/mails/gb/followup_2.html @@ -0,0 +1,667 @@ + + + + + Follow up 2 + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    + Thanks for your order. +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + We are pleased to offer you a discount of {amount}% off your next order. And this offer is valid for {days} days, so do not wait any longer! +
    +
    +
    + Here is your VOUCHER CODE: {voucher_num}
    +
    +
    + Enter this code in your shopping cart to get the discount. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/followup/mails/gb/followup_2.txt b/themes/at_movic/modules/followup/mails/gb/followup_2.txt new file mode 100644 index 00000000..24be2079 --- /dev/null +++ b/themes/at_movic/modules/followup/mails/gb/followup_2.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Thanks for your order. + +We are pleased to offer you a discount of {amount}% off your next order. And this offer is valid for {days} days, so do not wait any longer! + +Here is your VOUCHER CODE: {voucher_num} + +Enter this code in your shopping cart to get the discount. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/followup/mails/gb/followup_3.html b/themes/at_movic/modules/followup/mails/gb/followup_3.html new file mode 100644 index 00000000..2d9f31d2 --- /dev/null +++ b/themes/at_movic/modules/followup/mails/gb/followup_3.html @@ -0,0 +1,667 @@ + + + + + Follow up 3 + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    + Thanks for your trust. +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + We are pleased to offer you a discount of {amount}% off your next order. And this offer is valid for {days} days, so do not wait any longer! +
    +
    +
    + Here is your VOUCHER CODE: {voucher_num}
    +
    +
    + Enter this code in your shopping cart to get the discount. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/followup/mails/gb/followup_3.txt b/themes/at_movic/modules/followup/mails/gb/followup_3.txt new file mode 100644 index 00000000..614c228e --- /dev/null +++ b/themes/at_movic/modules/followup/mails/gb/followup_3.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Thanks for your trust. + +We are pleased to offer you a discount of {amount}% off your next order. And this offer is valid for {days} days, so do not wait any longer! + +Here is your VOUCHER CODE: {voucher_num} + +Enter this code in your shopping cart to get the discount. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/followup/mails/gb/followup_4.html b/themes/at_movic/modules/followup/mails/gb/followup_4.html new file mode 100644 index 00000000..895dba12 --- /dev/null +++ b/themes/at_movic/modules/followup/mails/gb/followup_4.html @@ -0,0 +1,799 @@ + + + + + Follow up 4 + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Your cart on {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + Congratulations, you are one of our best customers! However, it looks like you have not placed an order since {days_threshold} days. +
    +
    +
    + Your cart has been saved, you can resume your order by visiting our shop: {shop_url} +
    +
    +
    + We are pleased to offer you a discount of {amount}% off your next order. And this offer is valid for {days} days, so do not wait any longer! +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Here is your VOUCHER CODE: {voucher_num}
    +
    +
    + Enter this code in your shopping cart to get the discount. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/followup/mails/gb/followup_4.txt b/themes/at_movic/modules/followup/mails/gb/followup_4.txt new file mode 100644 index 00000000..801014e2 --- /dev/null +++ b/themes/at_movic/modules/followup/mails/gb/followup_4.txt @@ -0,0 +1,19 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Your cart on {shop_name} + +Congratulations, you are one of our best customers! However, it looks like you have not placed an order since {days_threshold} days. + +Your cart has been saved, you can resume your order by visiting our shop: {shop_url} + +We are pleased to offer you a discount of {amount}% off your next order. And this offer is valid for {days} days, so do not wait any longer! + +Here is your VOUCHER CODE: {voucher_num} + +Enter this code in your shopping cart to get the discount. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/followup/mails/pl/followup_1.html b/themes/at_movic/modules/followup/mails/pl/followup_1.html new file mode 100644 index 00000000..665610b1 --- /dev/null +++ b/themes/at_movic/modules/followup/mails/pl/followup_1.html @@ -0,0 +1,866 @@ + + + + + Kontynuacja 1 + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Twój koszyk na {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + Dziękuję za Twoją wizytę. Wygląda jednak na to, że nie dokończyłeś zakupu. +
    +
    +
    + Twój koszyk został zapisany, możesz wrócić do zamówienia w naszym sklepie: {shop_url} +
    +
    +
    + Z przyjemnością oferujemy Ci zniżkę w wysokości {amount}% na kolejne zamówienie. Ta oferta jest ważna przez {days} dni, więc nie czekaj dłużej! +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Twój kod kuponu w {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Oto Twój KOD VOUCHER: {voucher_num}
    +
    +
    + Wprowadź ten kod w koszyku, aby uzyskać zniżkę. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/followup/mails/pl/followup_1.txt b/themes/at_movic/modules/followup/mails/pl/followup_1.txt new file mode 100644 index 00000000..7d3e83c4 --- /dev/null +++ b/themes/at_movic/modules/followup/mails/pl/followup_1.txt @@ -0,0 +1,21 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Twój koszyk na {shop_name} + +Dziękuję za Twoją wizytę. Wygląda jednak na to, że nie dokończyłeś zakupu. + +Twój koszyk został zapisany, możesz wrócić do zamówienia w naszym sklepie: {shop_url} + +Z przyjemnością oferujemy Ci zniżkę w wysokości {amount}% na kolejne zamówienie. Ta oferta jest ważna przez {days} dni, więc nie czekaj dłużej! + +Twój kod kuponu w {shop_name} + +Oto Twój KOD VOUCHER: {voucher_num} + +Wprowadź ten kod w koszyku, aby uzyskać zniżkę. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/followup/mails/pl/followup_2.html b/themes/at_movic/modules/followup/mails/pl/followup_2.html new file mode 100644 index 00000000..602e94cc --- /dev/null +++ b/themes/at_movic/modules/followup/mails/pl/followup_2.html @@ -0,0 +1,667 @@ + + + + + Kontynuacja 2 + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    + Dziękujemy za zamówienie. +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + Z przyjemnością oferujemy Ci zniżkę w wysokości {amount}% na kolejne zamówienie. Ta oferta jest ważna przez {days} dni, więc nie czekaj dłużej! +
    +
    +
    + Oto Twój KOD VOUCHER: {voucher_num}
    +
    +
    + Wprowadź ten kod w koszyku, aby uzyskać zniżkę. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/followup/mails/pl/followup_2.txt b/themes/at_movic/modules/followup/mails/pl/followup_2.txt new file mode 100644 index 00000000..ca08dc3a --- /dev/null +++ b/themes/at_movic/modules/followup/mails/pl/followup_2.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Dziękujemy za zamówienie. + +Z przyjemnością oferujemy Ci zniżkę w wysokości {amount}% na kolejne zamówienie. Ta oferta jest ważna przez {days} dni, więc nie czekaj dłużej! + +Oto Twój KOD VOUCHER: {voucher_num} + +Wprowadź ten kod w koszyku, aby uzyskać zniżkę. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/followup/mails/pl/followup_3.html b/themes/at_movic/modules/followup/mails/pl/followup_3.html new file mode 100644 index 00000000..70cd7b44 --- /dev/null +++ b/themes/at_movic/modules/followup/mails/pl/followup_3.html @@ -0,0 +1,667 @@ + + + + + Kontynuacja 3 + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    + Dziękujemy za zaufanie. +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + Z przyjemnością oferujemy Ci zniżkę w wysokości {amount}% na kolejne zamówienie. Ta oferta jest ważna przez {days} dni, więc nie czekaj dłużej! +
    +
    +
    + Oto Twój KOD VOUCHER: {voucher_num}
    +
    +
    + Wprowadź ten kod w koszyku, aby uzyskać zniżkę. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/followup/mails/pl/followup_3.txt b/themes/at_movic/modules/followup/mails/pl/followup_3.txt new file mode 100644 index 00000000..3424c40b --- /dev/null +++ b/themes/at_movic/modules/followup/mails/pl/followup_3.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Dziękujemy za zaufanie. + +Z przyjemnością oferujemy Ci zniżkę w wysokości {amount}% na kolejne zamówienie. Ta oferta jest ważna przez {days} dni, więc nie czekaj dłużej! + +Oto Twój KOD VOUCHER: {voucher_num} + +Wprowadź ten kod w koszyku, aby uzyskać zniżkę. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/followup/mails/pl/followup_4.html b/themes/at_movic/modules/followup/mails/pl/followup_4.html new file mode 100644 index 00000000..d3bc1824 --- /dev/null +++ b/themes/at_movic/modules/followup/mails/pl/followup_4.html @@ -0,0 +1,799 @@ + + + + + Kontynuacja 4 + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Twój koszyk na {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + Gratulacje, jesteś jednym z naszych najlepszych klientów! Wygląda jednak na to, że nie złożyłeś zamówienia od {days_threshold} dni. +
    +
    +
    + Twój koszyk został zapisany, możesz wznowić zamówienie odwiedzając nasz sklep: {shop_url} +
    +
    +
    + Z przyjemnością oferujemy Ci zniżkę w wysokości {amount}% na kolejne zamówienie. Ta oferta jest ważna przez {days} dni, więc nie czekaj dłużej! +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Oto Twój KOD VOUCHER: {voucher_num}
    +
    +
    + Wprowadź ten kod w koszyku, aby uzyskać zniżkę. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/followup/mails/pl/followup_4.txt b/themes/at_movic/modules/followup/mails/pl/followup_4.txt new file mode 100644 index 00000000..9e0dc7eb --- /dev/null +++ b/themes/at_movic/modules/followup/mails/pl/followup_4.txt @@ -0,0 +1,19 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Twój koszyk na {shop_name} + +Gratulacje, jesteś jednym z naszych najlepszych klientów! Wygląda jednak na to, że nie złożyłeś zamówienia od {days_threshold} dni. + +Twój koszyk został zapisany, możesz wznowić zamówienie odwiedzając nasz sklep: {shop_url} + +Z przyjemnością oferujemy Ci zniżkę w wysokości {amount}% na kolejne zamówienie. Ta oferta jest ważna przez {days} dni, więc nie czekaj dłużej! + +Oto Twój KOD VOUCHER: {voucher_num} + +Wprowadź ten kod w koszyku, aby uzyskać zniżkę. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/freshmail/mails/gb/abandoned-cart.html b/themes/at_movic/modules/freshmail/mails/gb/abandoned-cart.html new file mode 100644 index 00000000..b16e990f --- /dev/null +++ b/themes/at_movic/modules/freshmail/mails/gb/abandoned-cart.html @@ -0,0 +1,13 @@ + + {shop_name} + + + + + + + +
     

    Cześć! Zauważyliśmy, że Twój koszyk nie jest pusty! Może chcesz dokończyć ten zakup?

    {products_list}
    + Powered by + PrestaShop
    + \ No newline at end of file diff --git a/themes/at_movic/modules/freshmail/mails/pl/abandoned-cart.html b/themes/at_movic/modules/freshmail/mails/pl/abandoned-cart.html new file mode 100644 index 00000000..df1c4008 --- /dev/null +++ b/themes/at_movic/modules/freshmail/mails/pl/abandoned-cart.html @@ -0,0 +1,17 @@ + + {shop_name} + + + + + + + +
    + xsdfsfsdfd +
    + ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  +
     
    {products_list}

    Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?

    + Powered by + PrestaShop
    + \ No newline at end of file diff --git a/themes/at_movic/modules/freshmail/mails/pl/abandoned-cart.txt b/themes/at_movic/modules/freshmail/mails/pl/abandoned-cart.txt new file mode 100644 index 00000000..7111a2f9 --- /dev/null +++ b/themes/at_movic/modules/freshmail/mails/pl/abandoned-cart.txt @@ -0,0 +1,407 @@ + Koszyk + + + + + + + #outlook a { + padding: 0; + } + + .ReadMsgBody { + width: 100%; + } + + .ExternalClass { + width: 100%; + } + + .ExternalClass * { + line-height: 100%; + } + + body { + margin: 0; + padding: 0; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + } + + table, + td { + border-collapse: collapse; + mso-table-lspace: 0pt; + mso-table-rspace: 0pt; + } + + img { + border: 0; + height: auto; + line-height: 100%; + outline: none; + text-decoration: none; + -ms-interpolation-mode: bicubic; + } + + p { + display: block; + margin: 13px 0; + } + + + + @media only screen and (max-width: 480px) { + @-ms-viewport { + width: 320px; + } + + @viewport { + width: 320px; + } + } + + + + + + + + .shadow { + box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.1); + } + + .label { + font-weight: 700; + } + + .warning { + font-weight: 700; + font-size: 16px; + } + + a { + color: #25B9D7; + text-decoration: underline; + font-weight: 600; + } + + a.light { + font-weight: 400; + } + + span.strong { + font-weight: 600; + } + + @media only screen and (max-width: 480px) { + + body, + .no-bg { + background-color: #fff !important; + } + + .left p { + text-align: left; + display: inline-block + } + } + + + + #outlook a { + padding: 0; + } + + .ReadMsgBody { + width: 100%; + } + + .ExternalClass { + width: 100%; + } + + .ExternalClass * { + line-height: 100%; + } + + body { + margin: 0; + padding: 0; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + } + + table, + td { + border-collapse: collapse; + mso-table-lspace: 0pt; + mso-table-rspace: 0pt; + } + + img { + border: 0; + height: auto; + line-height: 100%; + outline: none; + text-decoration: none; + -ms-interpolation-mode: bicubic; + } + + p { + display: block; + margin: 13px 0; + } + + + @media only screen and (max-width: 480px) { + @-ms-viewport { + width: 320px; + } + + @viewport { + width: 320px; + } + } + + + @import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700); + @import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i); + + + @media only screen and (min-width: 480px) { + .mj-column-per-100 { + width: 100% !important; + max-width: 100%; + } + + .mj-column-px-25 { + width: 25px !important; + max-width: 25px; + } + } + + + + + .shadow { + box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.1); + } + + .label { + font-weight: 700; + } + + .warning { + font-weight: 700; + font-size: 16px; + } + + a { + color: #25B9D7; + text-decoration: underline; + font-weight: 600; + } + + a.light { + font-weight: 400; + } + + span.strong { + font-weight: 600; + } + + @media only screen and (max-width: 480px) { + + body, + .no-bg { + background-color: #fff !important; + } + + .left p { + text-align: left; + display: inline-block + } + } + + + + +  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Aspernatur aut odit aut fugit, sed quia consequuntur magni + dolores eos qui ratione voluptatem sequi nesciunt. Neque porro + quisquam est, qui dolorem ipsum quia dolor sit amet, + consectetur, adipisci velit, sed quia non numquam eius modi + tempora incidunt ut labore et dolore magnam aliquam quaerat + voluptatem. Ut enim ad minima veniam, quis nostrum + exercitationem ullam corporis suscipit laboriosam, nisi ut + aliquid ex ea commodi consequatur? Quis autem vel eum iure + reprehenderit qui in ea voluptate velit esse quam nihil + molestiae consequatur, vel illum qui dolorem eum fugiat quo + voluptas nulla pariatur? + + {discount_code} + + + + + + + + + + + + + + + + + {{ productsList }} + + + + + + + + + + + + + + + + + + + Doko%u0144cz + zakupy + + + + + + + + + + + + + + + + + + + + + + Sed ut perspiciatis unde omnis iste natus error sit voluptatem + accusantium doloremque laudantium, totam rem aperiam, eaque ipsa + quae ab illo inventore veritatis et quasi architecto beatae + vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia + voluptas sit aspernatur aut odit aut fugit, sed quia + consequuntur magni dolores eos qui ratione voluptatem sequi + nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor + sit amet, consectetur, adipisci velit, sed quia non numquam eius + modi tempora incidunt ut labore et dolore magnam aliquam quaerat + voluptatem. Ut enim ad minima veniam, quis nostrum + exercitationem ullam corporis suscipit laboriosam, nisi ut + aliquid ex ea commodi consequatur? Quis autem vel eum iure + reprehenderit qui in ea voluptate velit esse quam nihil + molestiae consequatur, vel illum qui dolorem eum fugiat quo + voluptas nulla pariatur? + + + + + + + + + + + + + + + + + + + + + + + + + + + {shop_name} + + + + + + + Powered by + PrestaShop + + + + + + + + + + + + diff --git a/themes/at_movic/modules/index.php b/themes/at_movic/modules/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/inpostship/mails/pl/point_admin.html b/themes/at_movic/modules/inpostship/mails/pl/point_admin.html new file mode 100644 index 00000000..e09fb6ef --- /dev/null +++ b/themes/at_movic/modules/inpostship/mails/pl/point_admin.html @@ -0,0 +1,105 @@ + + + + + + Wiadomość od {shop_name} + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + +
    + + Witaj !
    +
    +
    +

    + Twój klient dokonał właśnie zamówienia {order_number}.
    Wybrał w nim opcję dostawy {carrier}
    + Paczkomat InPost:
    + {point_code}
    {point_address}
    {point_description}


    +
    + Pozdrowiamy,
    + Zespół {shop_name} +

    +
    +
     
    + + \ No newline at end of file diff --git a/themes/at_movic/modules/inpostship/mails/pl/point_admin.txt b/themes/at_movic/modules/inpostship/mails/pl/point_admin.txt new file mode 100644 index 00000000..e69de29b diff --git a/themes/at_movic/modules/inpostship/mails/pl/point_customer.html b/themes/at_movic/modules/inpostship/mails/pl/point_customer.html new file mode 100644 index 00000000..44887c6e --- /dev/null +++ b/themes/at_movic/modules/inpostship/mails/pl/point_customer.html @@ -0,0 +1,107 @@ + + + + + + Wiadomość od {shop_name} + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + +
    + + Witaj {firstname} {lastname},
    + Dziękujemy za zakupy na stronie {shop_name}. +
    +
    +

    + Informacja dotyczy zamówienia {order_number}
    + Wybrałeś opcję dostawy {carrier}
    + Paczkomat InPost:
    + {point_code}
    {point_address}
    {point_description}


    +
    + Pozdrowiamy,
    + Zespół {shop_name} +

    +
    +
     
    + + \ No newline at end of file diff --git a/themes/at_movic/modules/inpostship/mails/pl/point_customer.txt b/themes/at_movic/modules/inpostship/mails/pl/point_customer.txt new file mode 100644 index 00000000..e69de29b diff --git a/themes/at_movic/modules/inpostship/mails/pl/tracking.html b/themes/at_movic/modules/inpostship/mails/pl/tracking.html new file mode 100644 index 00000000..ebe82aec --- /dev/null +++ b/themes/at_movic/modules/inpostship/mails/pl/tracking.html @@ -0,0 +1,107 @@ + + + + + + Wiadomość od {shop_name} + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + +
    + + Witaj {firstname} {lastname},
    + Dziękujemy za zakupy na stronie {shop_name}. +
    +
    +

    + Twoja paczka od {shop_name} wyruszyła właśnie w podróż do Paczkomatu InPost
    {point_code} {point_address} - {point_description}

    + Od tego momentu możesz śledzić jej drogę klikając w link {tracking_url} lub na stronie {inpost_tracking_url} po wpisaniu numeru paczki {tracking_number}
    +
    + Kolejną wiadomość otrzymasz, gdy Twoja paczka będzie już na Ciebie czekać w wybranym Paczkomacie.
    +
    + Pozdrowiamy,
    + Zespół {shop_name} +

    +
    +
     
    + + \ No newline at end of file diff --git a/themes/at_movic/modules/inpostship/mails/pl/tracking.txt b/themes/at_movic/modules/inpostship/mails/pl/tracking.txt new file mode 100644 index 00000000..88e8b1da --- /dev/null +++ b/themes/at_movic/modules/inpostship/mails/pl/tracking.txt @@ -0,0 +1 @@ +tracking \ No newline at end of file diff --git a/themes/at_movic/modules/leoblog/index.php b/themes/at_movic/modules/leoblog/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leoblog/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leoblog/views/css/index.php b/themes/at_movic/modules/leoblog/views/css/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leoblog/views/css/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leoblog/views/css/leoblog.css b/themes/at_movic/modules/leoblog/views/css/leoblog.css new file mode 100644 index 00000000..09436a19 --- /dev/null +++ b/themes/at_movic/modules/leoblog/views/css/leoblog.css @@ -0,0 +1,665 @@ +/*************************************************** + Mixins Themes +/***************************************************/ +/* Mixin Normal*/ +/* Mixin Clear */ +/* Mixin Border */ +/*background RGBA +============================================*/ +/*************************************************** + Mixins RTL Themes +/***************************************************/ +/************************************ + Override Bootstrap +*************************************/ +/** + * Web Application Prefix Apply For Making Owner Styles + */ +/** + * Blocks Layout Selectors + */ +/***********************************************************************/ +.blogs-container .childrens { + padding: 20px 0; +} + +.blogs-container .product-count { + margin-bottom: 1rem; + padding-top: 0.5rem; + padding-bottom: 0.5rem; + text-align: center; +} + +.blogs-container .pagination .material-icons { + font-size: 15px; + vertical-align: -3px; +} + +.blogs-container .blog-image img { + max-width: 100%; +} + +.blog-detail .blog-image { + text-align: center; +} + +/* Blog Item */ +.blog-item { + position: relative; + padding: 0 0 50px; +} + +.blog-item .blog-image-container { + position: relative; +} + +.blog-item .title { + margin: 0 0 10px; + font-size: 18px; + font-weight: 500; + font-family: "Lato", sans-serif; +} + +.blog-item .title a { + line-height: 24px; + color: #333; + display: block; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; +} + +.blog-item .title a:hover { + color: #666; +} + +.blog-item .blog-info p { + margin: 0; +} + +.blog-item .blog-image { + margin-bottom: 10px; +} + +.blog-item .blog-meta { + color: #999; + margin-bottom: 10px; + font-size: 10px; + text-transform: uppercase; +} + +.blog-item .blog-meta>span { + margin: 0 10px 0 0; +} + +.rtl .blog-item .blog-meta>span { + margin: 0 0 0 10px; +} + +.blog-item .blog-meta a { + color: #999; +} + +.blog-item .blog-meta a:hover { + color: #000; +} + +.blog-item .blog-meta i { + font-size: 16px; + vertical-align: -3px; + margin: 0 5px 0 0; +} + +.rtl .blog-item .blog-meta i { + margin: 0 0 0 5px; +} + +.blog-item .blog-meta i.icon-font { + font-size: 12px; + vertical-align: 0; +} + +.blog-item .blog-shortinfo { + margin-bottom: 0; + padding: 0 0 10px; +} + +.blog-item .more { + border: 0; + background: none; + color: #333; + font-size: 12px; + padding: 5px 0; + background: none; + -webkit-transition: all 0.4s cubic-bezier(0.44, 0.13, 0.48, 0.87); + -o-transition: all 0.4s cubic-bezier(0.44, 0.13, 0.48, 0.87); + transition: all 0.4s cubic-bezier(0.44, 0.13, 0.48, 0.87); +} + +.blog-item .more:active, +.blog-item .more:focus, +.blog-item .more:hover { + background: none; + color: #000; +} + +/* Blog detail */ +.blog-detail { + line-height: 24px; +} + +.blog-detail .blog-title { + margin: 20px 0 10px; + line-height: 1.5; +} + +.blog-detail .blog-description { + padding: 30px; + background: #f9f9f9; + margin: 0 0 30px; +} + +.blog-detail .product-count { + margin-bottom: 1rem; + padding-top: 0.5rem; + padding-bottom: 0.5rem; + text-align: center; +} + +.blog-detail .blog-meta { + margin-bottom: 20px; + font-size: 12px; +} + +.blog-detail .blog-meta a { + color: #999; +} + +.blog-detail .blog-meta a:hover { + color: #000; +} + +.blog-detail .blog-meta>span { + color: #999; + font-size: 12px; + margin: 5px; + display: inline-block; + vertical-align: top; +} + +.blog-detail .blog-meta>span .material-icons { + font-size: 15px; + vertical-align: -2px; +} + +@media (min-width: 576px) { + + .blog-detail .blog-tags, + .blog-detail .social-share { + display: inline-block; + } +} + +.social-wrap:after { + content: ""; + display: block; + clear: both; +} + +.extra-blogs h4 { + margin: 20px 0; +} + +#blog-category>.inner>h3 { + font-size: 13px; + color: #444; + margin: 20px 0; + font-weight: 500; + text-transform: capitalize; +} + +.fb_iframe_widget iframe { + left: 0; + right: 0; + top: 0; +} + +.blog-tags, +.extra-blogs, +.blog-comments, +.social-share, +.blog-comment-block { + margin-bottom: 20px; +} + +.blog-comment-block { + margin-top: 50px; + padding-top: 50px; + border-top: 2px solid #000; +} + +#blog-localengine { + max-width: 600px; + margin: auto; +} + +#blog-localengine h3 { + text-align: center; + font-size: 16px; +} + +@media (min-width: 576px) { + .blog-tags { + float: right; + } + + .rtl .blog-tags { + float: left; + } +} + +.blog-tags a span { + line-height: 1; + padding: 3px 0; + margin: 0 8px; + border-bottom: 1px solid #000; + display: inline-block; + font-size: 12px; +} + +.blog-tags a:hover span { + color: #000; + border-color: #000; +} + +.extra-blogs ul li { + border-bottom: dotted 1px #eee; +} + +.extra-blogs ul li a { + padding: 10px 0; + display: block; +} + +.blog-video-code .inner { + background: #DDD; + padding: 12px; + margin-bottom: 15px; + text-align: center; +} + +.blog-video-code .inner iframe { + max-width: 100%; +} + +/* comment */ +.comment-item { + padding: 12px 0; +} + +.comment-item img { + padding: 0 12px 0 0; + float: left; +} + +.rtl .comment-item img { + padding: 0 0 0 12px; +} + +.rtl .comment-item img { + float: right; +} + +.extra-blogs { + clear: both; +} + +.comment-wrap { + overflow: hidden; + background: #FFFFFF; + border: 1px solid #eee; + padding: 20px; + position: relative; + -webkit-transition: all 0.3s ease-out 0s; + -o-transition: all 0.3s ease-out 0s; + transition: all 0.3s ease-out 0s; +} + +.comment-wrap .comment-meta { + border-bottom: 1px solid #eee; + font-size: 11px; + display: -webkit-box; + display: -moz-box; + display: box; + display: -webkit-flex; + display: -moz-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: justify; + -moz-box-pack: justify; + box-pack: justify; + -webkit-justify-content: space-between; + -moz-justify-content: space-between; + -ms-justify-content: space-between; + -o-justify-content: space-between; + justify-content: space-between; + -ms-flex-pack: justify; + -webkit-box-align: center; + -moz-box-align: center; + box-align: center; + -webkit-align-items: center; + -moz-align-items: center; + -ms-align-items: center; + -o-align-items: center; + align-items: center; + -ms-flex-align: center; + padding-bottom: 10px; + margin-bottom: 12px; +} + +.comment-wrap .comment-infor>span { + font-weight: 600; + margin-right: 5px; +} + +.rtl .comment-wrap .comment-infor>span { + margin-left: 5px; + margin-right: inherit; +} + +.comment-wrap .comment-infor>span>span { + font-weight: normal; + white-space: inherit; +} + +.comment-link { + display: block; +} + +.social-share .social-wrap>div { + float: left; + margin-right: 10px; +} + +.rtl .social-share .social-wrap>div { + float: right; +} + +.rtl .social-share .social-wrap>div { + margin-left: 10px; + margin-right: inherit; +} + +.social-share .social-heading { + padding-right: 12px; +} + +.rtl .social-share .social-heading { + padding-left: 12px; + padding-right: inherit; +} + +.ipts-captcha img { + float: left; + padding-right: 12px; + margin-bottom: 10px; +} + +.rtl .ipts-captcha img { + float: right; +} + +.rtl .ipts-captcha img { + padding-left: 12px; + padding-right: inherit; +} + +.ipts-captcha input { + width: 100px; + height: 35px; +} + +.blog-comment-block .fb-comments { + margin: 0 -8px; +} + +#blog-localengine .comments { + margin-bottom: 30px; +} + +#blog-localengine .btn-submit-comment { + min-width: 110px; +} + +#blog-localengine .form-horizontal { + margin-bottom: 30px; + background: white; +} + +#blog-localengine .form-horizontal .col-lg-3 { + display: none; +} + +#blog-localengine .form-horizontal .col-lg-9 { + width: 100%; +} + +#blog-localengine .form-horizontal>.form-group:last-child { + position: relative; +} + +#blog-localengine .form-horizontal>.form-group:last-child>div { + width: 100%; + text-align: center; +} + +#blog-localengine .form-horizontal label { + display: block; + margin-bottom: 0; + padding-top: 7px; +} + +#blog-localengine .form-horizontal .form-group:last-child { + margin-bottom: 0; +} + +/* Load Submit Comment */ +.leoblog-cssload-container { + width: 100%; + height: 35px; + text-align: center; + display: none; +} + +/* categories menu display on left or right sidebar */ +.blog-menu li { + position: relative; +} + +.blog-menu ul { + margin: 0px; +} + +.blog-menu ul>li>a { + font-weight: 400; + width: 100%; + display: inline-block; + margin: 0; + padding: 10px 0; +} + +.blog-menu ul>li li a { + font-size: 13px; +} + +.blog-menu .collapse-icons { + position: absolute; + top: 5px; + padding: 0; + cursor: pointer; + width: 30px; + height: 30px; + line-height: 30px; + text-align: center; + right: 0; +} + +.rtl .blog-menu .collapse-icons { + left: 0; + right: auto; +} + +.blog-menu .collapse-icons .material-icons { + font-size: 0.9375rem; + vertical-align: 0; +} + +.blog-menu .collapse-icons[aria-expanded="true"] .add { + display: none; +} + +.blog-menu .collapse-icons[aria-expanded="true"] .remove { + display: inline-block; +} + +.blog-menu .collapse-icons .add, +.blog-menu .collapse-icons .remove { + color: #000; +} + +.blog-menu .collapse-icons .add:hover, +.blog-menu .collapse-icons .remove:hover { + color: #000; +} + +.blog-menu .collapse-icons .remove { + display: none; +} + +/*** RSS ***/ +.blog-lastest-rss { + float: right !important; + position: relative; + top: -35px; +} + +.blog-lastest-rss a { + color: #f8991d; +} + +.blog-lastest-rss a:before { + content: "\f09e"; + font-family: "FontAwesome"; + font-size: 30px; + margin-right: 5px; +} + +.rtl .blog-lastest-rss a:before { + margin-left: 5px; + margin-right: inherit; +} + +.blog-lastest-rss a:hover { + color: #000; +} + +/*** Responsive part ***/ +@media (min-width: 576px) { + .comment-link { + font-family: "Lato", sans-serif; + } + + .blogs-container .product-count, + .blog-detail .product-count { + text-align: right; + margin-top: 1rem; + } + + .rtl .blogs-container .product-count, + .rtl .blog-detail .product-count { + text-align: left; + } +} + +@media (max-width: 767px) { + #blog-localengine .form-horizontal label { + text-align: left; + } + + .rtl #blog-localengine .form-horizontal label { + text-align: right; + } + + .blog-detail .pagination, + .blogs-container .pagination { + text-align: center; + } + + .blog-detail .page-item, + .blogs-container .page-item { + display: inline-block; + } + + .blog-video-code iframe { + width: 100%; + } +} + +@media (max-width: 575px) { + .comment-wrap .comment-meta { + display: inline-block; + } + + .comment-wrap .comment-meta>span { + display: inline-block; + margin: 5px 0; + width: 100%; + float: left; + } + + .rtl .comment-wrap .comment-meta>span { + float: right; + } +} + +#blog-listing>h1 { + margin-bottom: 30px; +} + +#blog-listing>h1 span { + color: #000; +} + +.share_button { + display: flex; + flex-wrap: wrap; + align-items: center; + margin: 10px 0; + font-size: 12px; +} + +.share_button ul { + display: flex; + flex-wrap: wrap; +} + +.share_button li a { + display: inline-block; + vertical-align: top; + padding: 0 10px; + margin: 0 0 0 10px; + background: #eee; + border-radius: 4px; +} + +.share_button li a:hover { + background: #000; + color: #fff; +} + +.share_button i.fa.fa-share-alt { + margin: 0 5px 0 0; +} + +/*# sourceMappingURL=leoblog.css.map */ \ No newline at end of file diff --git a/themes/at_movic/modules/leoblog/views/index.php b/themes/at_movic/modules/leoblog/views/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leoblog/views/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leoblog/views/templates/front/default/_listing_blog.tpl b/themes/at_movic/modules/leoblog/views/templates/front/default/_listing_blog.tpl new file mode 100644 index 00000000..97410093 --- /dev/null +++ b/themes/at_movic/modules/leoblog/views/templates/front/default/_listing_blog.tpl @@ -0,0 +1,108 @@ +{* + * Leo Prestashop SliderShow for Prestashop 1.6.x + * + * @package leosliderlayer + * @version 3.0 + * @author http://www.leotheme.com + * @copyright Copyright (C) October 2013 LeoThemes.com <@emai:leotheme@gmail.com> + * .All rights reserved. + * @license GNU General Public License version 2 +*} + +
    +
    + {if $config->get('listing_show_title','1')} +

    + {$blog.title|escape:'html':'UTF-8'} +

    + {/if} +
    + {if $config->get('listing_show_author','1')&&!empty($blog.author)} + + {l s='Posted By' d='Shop.Theme.Global'}: + {$blog.author|escape:'html':'UTF-8'} + + {/if} + + {if $config->get('listing_show_category','1')} + + {l s='In' d='Shop.Theme.Global'}: + {$blog.category_title|escape:'html':'UTF-8'} + + {/if} + + {if $config->get('listing_show_created','1')} + + + + + {/if} + + {if isset($blog.comment_count)&&$config->get('listing_show_counter','1')} + + {l s='Comment' d='Shop.Theme.Global'}: + {$blog.comment_count|intval} + + {/if} + + {if $config->get('listing_show_hit','1')} + + {l s='Hit' d='Shop.Theme.Global'}: + {$blog.hits|intval} + + {/if} +
    + {if $blog.image && $config->get('listing_show_image',1)} +
    + +
    + {/if} +
    +
    + {if $config->get('listing_show_description','1')} +
    + {$blog.description|strip_tags:'UTF-8'|truncate:160:'...' nofilter}{* HTML form , no escape necessary *} +
    + {/if} + {if $config->get('listing_show_readmore',1)} +

    + {l s='Read more' d='Shop.Theme.Global'} +

    + {/if} +
    + +
    + {l s='Sunday' d='Shop.Theme.Global'} + {l s='Monday' d='Shop.Theme.Global'} + {l s='Tuesday' d='Shop.Theme.Global'} + {l s='Wednesday' d='Shop.Theme.Global'} + {l s='Thursday' d='Shop.Theme.Global'} + {l s='Friday' d='Shop.Theme.Global'} + {l s='Saturday' d='Shop.Theme.Global'} + + {l s='January' d='Shop.Theme.Global'} + {l s='February' d='Shop.Theme.Global'} + {l s='March' d='Shop.Theme.Global'} + {l s='April' d='Shop.Theme.Global'} + {l s='May' d='Shop.Theme.Global'} + {l s='June' d='Shop.Theme.Global'} + {l s='July' d='Shop.Theme.Global'} + {l s='August' d='Shop.Theme.Global'} + {l s='September' d='Shop.Theme.Global'} + {l s='October' d='Shop.Theme.Global'} + {l s='November' d='Shop.Theme.Global'} + {l s='December' d='Shop.Theme.Global'} + +
    +
    diff --git a/themes/at_movic/modules/leoblog/views/templates/front/default/index.php b/themes/at_movic/modules/leoblog/views/templates/front/default/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/leoblog/views/templates/front/default/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/leoblog/views/templates/front/index.php b/themes/at_movic/modules/leoblog/views/templates/front/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/leoblog/views/templates/front/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/leoblog/views/templates/index.php b/themes/at_movic/modules/leoblog/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/leoblog/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/leobootstrapmenu/img/index.php b/themes/at_movic/modules/leobootstrapmenu/img/index.php new file mode 100644 index 00000000..d5c9bff9 --- /dev/null +++ b/themes/at_movic/modules/leobootstrapmenu/img/index.php @@ -0,0 +1,35 @@ + + * @copyright 2007-2019 PrestaShop SA and Contributors + * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leobootstrapmenu/index.php b/themes/at_movic/modules/leobootstrapmenu/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leobootstrapmenu/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leobootstrapmenu/views/css/index.php b/themes/at_movic/modules/leobootstrapmenu/views/css/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leobootstrapmenu/views/css/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leobootstrapmenu/views/css/leomenusidebar.css b/themes/at_movic/modules/leobootstrapmenu/views/css/leomenusidebar.css new file mode 100644 index 00000000..d1c2eb80 --- /dev/null +++ b/themes/at_movic/modules/leobootstrapmenu/views/css/leomenusidebar.css @@ -0,0 +1,3 @@ + + +/*# sourceMappingURL=leomenusidebar.css.map */ diff --git a/themes/at_movic/modules/leobootstrapmenu/views/css/megamenu.css b/themes/at_movic/modules/leobootstrapmenu/views/css/megamenu.css new file mode 100644 index 00000000..3951073b --- /dev/null +++ b/themes/at_movic/modules/leobootstrapmenu/views/css/megamenu.css @@ -0,0 +1,3 @@ + + +/*# sourceMappingURL=megamenu.css.map */ diff --git a/themes/at_movic/modules/leobootstrapmenu/views/index.php b/themes/at_movic/modules/leobootstrapmenu/views/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leobootstrapmenu/views/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leofeature/index.php b/themes/at_movic/modules/leofeature/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leofeature/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leofeature/views/css/front.css b/themes/at_movic/modules/leofeature/views/css/front.css new file mode 100644 index 00000000..8d69e51f --- /dev/null +++ b/themes/at_movic/modules/leofeature/views/css/front.css @@ -0,0 +1,2906 @@ +/*************************************************** + Mixins Themes +/***************************************************/ +/* Mixin Normal*/ +/* Mixin Clear */ +/* Mixin Border */ +/*background RGBA +============================================*/ +/*************************************************** + Mixins RTL Themes +/***************************************************/ +/************************************ + Override Bootstrap +*************************************/ +/** + * Web Application Prefix Apply For Making Owner Styles + */ +/** + * Blocks Layout Selectors + */ +/***********************************************************************/ +.leo-bt-cart.disable { + /* cursor: not-allowed; */ + /* opacity: .65; */ +} + +.leo-bt-cart.disabled:focus { + background: #acaaa6; +} + +.leo-modal .modal-content { + border-radius: 0; +} + +.leo-modal-cart .modal-dialog, +.leo-modal-compare .modal-dialog, +.leo-modal-wishlist .modal-dialog { + margin: 250px auto; +} + +.leo-modal-cart .modal-dialog a:hover, +.leo-modal-compare .modal-dialog a:hover, +.leo-modal-wishlist .modal-dialog a:hover { + color: #666666; +} + +.leo-modal .modal-title .material-icons { + margin-right: 5px; +} + +.rtl .leo-modal .modal-title .material-icons { + margin-left: 5px; + margin-right: inherit; +} + +.leo-modal-cart .modal-title { + color: #fff; + font-size: 1.125rem; + display: none; +} + +.leo-modal-cart .modal-header { + border: none; +} + +.leo-modal .modal-header.info-mess, +.leo-modal .modal-header.warning-mess { + background: #2FB5D2; +} + +.leo-modal .modal-header.block-mess { + background: #F39D72; +} + +.leo-loading, +.leo-modal-review-loading { + display: none; +} + +.compare .cssload-speeding-wheel, +.wishlist .cssload-speeding-wheel, +.quickview .cssload-speeding-wheel { + display: none; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + margin: auto; +} + +.cssload-speeding-wheel { + width: 20px; + height: 20px; + margin: 0 auto; + border: 2px solid #999; + border-radius: 50%; + border-left-color: transparent; + border-right-color: transparent; + animation: cssload-spin 1000ms infinite ease-in-out; + -o-animation: cssload-spin 1000ms infinite ease-in-out; + -ms-animation: cssload-spin 1000ms infinite ease-in-out; + -webkit-animation: cssload-spin 1000ms infinite ease-in-out; + -moz-animation: cssload-spin 1000ms infinite ease-in-out; + display: none; +} + +@keyframes cssload-spin { + 100% { + transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@-o-keyframes cssload-spin { + 100% { + -o-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@-ms-keyframes cssload-spin { + 100% { + -ms-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@-webkit-keyframes cssload-spin { + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@-moz-keyframes cssload-spin { + 100% { + -moz-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +.leo-bt-select-attr, +.leo-dropdown-attr { + width: 100%; +} + +.leo-select-attr.selected, +.leo-select-attr.selected.disable, +.leo-select-attr:hover { + background: #000; + color: #fff; +} + +.leo-select-attr.disable { + background: #EBEBEB; +} + +.leo-select-attr { + padding: 5px 10px !important; + text-align: left; + white-space: normal; + font-size: 12px; +} + +.rtl .leo-select-attr { + text-align: right; +} + +.leo-dropdown-attr { + padding: 0px; + z-index: 999; + max-height: 130px; + overflow-x: hidden; + overflow-y: auto; +} + +/*******************DONGND CSS FOR CART END*****************************/ +/*******************DONGND CSS FOR REVIEWS BEGIN*****************************/ +.leo-modal-review .modal-title, +.leo-modal-review .leo-modal-send-wishlist .modal-title { + text-transform: none; + font-size: 13px; + font-weight: 500; +} + +.leo-modal-review .modal-dialog { + max-width: 650px; +} + +.leo-modal-review .product-info { + text-align: center; +} + +.leo-modal-review .product_desc { + margin-top: 20px; + text-align: justify; + font-size: 13px; +} + +.leo-modal-review .product_desc p { + display: none; +} + +.leo-modal-review .product_desc .product_name { + color: #444; + text-align: center; + text-transform: capitalize; + font-size: 13px; + display: block; +} + +.leo-modal-review .product_desc .product_name strong { + font-weight: 500; +} + +.leo-modal-review .btn { + min-width: 150px; + text-align: center; + position: relative; +} + +.leo-modal-review .btn .cssload-speeding-wheel { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + display: none; + margin: auto; +} + +.leo-modal-review .btn.active .leo-modal-review-bt-text { + display: none; +} + +.leo-modal-review .leo-fake-button { + display: none; +} + +.cancel a { + margin: 0 5px 0 0; + width: 14px; + height: 14px; + position: relative; + display: inline-block; +} + +.rtl .cancel a { + margin: 0 0 0 5px; +} + +.cancel a:before { + content: "\f056"; + font-family: "FontAwesome"; + position: absolute; + top: 0; + left: 0; + color: #e34747; +} + +.rtl .cancel a:before { + right: 0; + left: auto; +} + +.cancel, +.star { + overflow: hidden; + float: left; + margin: 0 1px; + cursor: pointer; + font-size: 12px; + line-height: 14px; +} + +.rtl .cancel, +.rtl .star { + float: right; +} + +div.star:before { + content: "\f005"; + color: #ccc; + font-family: "FontAwesome"; + display: inline-block; +} + +div.star.star_on:before, +div.star.star_hover:before { + content: "\f005"; + color: #FFD314; + font-family: "FontAwesome"; + display: inline-block; +} + +#criterions_list { + list-style-type: none; +} + +#criterions_list .star_content { + display: inline-block; +} + +#criterions_list label { + display: inline; + float: left; + margin: 0 10px 0 0; + line-height: 13px; +} + +.rtl #criterions_list label { + float: right; +} + +.rtl #criterions_list label { + margin: 0 0 0 10px; +} + +.star a { + display: block; + position: absolute; + text-indent: -5000px; +} + +.new_review_form_content #criterions_list { + padding-bottom: 5px; + list-style-type: none; +} + +.new_review_form_content .form-group.has-error input, +.new_review_form_content .form-group.has-error textarea { + outline: 2px solid #ff4c4c; +} + +@media (max-width: 575px) { + .new_review_form_content { + margin-top: 10px; + text-align: center; + } + + .new_review_form_content #criterions_list li { + display: inline-block; + } + + .new_review_form_content .form-new-review .form-control-label { + text-align: center !important; + } +} + +.open-review-form { + display: none; +} + +.leo-modal-review .has-success, +.leo-modal-review .has-danger { + text-align: center; +} + +.leo-modal-review .has-success label, +.leo-modal-review .has-danger label { + font-size: 1.125rem; + display: inline; +} + +.leo-list-product-reviews { + text-align: center; + margin-top: 10px; + margin-bottom: 10px; +} + +.leo-list-product-reviews .star_content, +.leo-list-product-reviews .star, +#leo_product_reviews_block_extra .star_content, +#leo_product_reviews_block_extra .star, +.review_author .star_content, +.review_author .star, +.product-rating .star_content, +.product-rating .star { + cursor: default; +} + +.leo-list-product-reviews-wraper { + display: inline-block; +} + +#leo_product_reviews_block_extra .reviews_note>span { + float: left; + margin: 0 10px 0 0; +} + +.rtl #leo_product_reviews_block_extra .reviews_note>span { + float: right; +} + +.rtl #leo_product_reviews_block_extra .reviews_note>span { + margin: 0 0 0 10px; +} + +#leo_product_reviews_block_extra .star_content { + float: left; +} + +.rtl #leo_product_reviews_block_extra .star_content { + float: right; +} + +#leo_product_reviews_block_extra .reviews_note { + display: -webkit-box; + display: -moz-box; + display: box; + display: -webkit-flex; + display: -moz-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -moz-box-align: center; + box-align: center; + -webkit-align-items: center; + -moz-align-items: center; + -ms-align-items: center; + -o-align-items: center; + align-items: center; + -ms-flex-align: center; + font-size: 13px; +} + +.reviews_advices { + margin: 20px 0; + font-size: 13px; +} + +.reviews_advices a { + color: #888; +} + +.reviews_advices a:hover { + color: #000; +} + +@media (min-width: 481px) { + .reviews_advices li { + display: inline-block; + } +} + +.reviews_advices li i { + font-size: 16px; + vertical-align: -4px; +} + +@media (min-width: 481px) { + .reviews_advices li.last { + margin-left: 10px; + border-left: 1px solid #eee; + padding-left: 10px; + line-height: 2; + } + + .rtl .reviews_advices li.last { + margin-right: 10px; + margin-left: inherit; + } + + .rtl .reviews_advices li.last { + border-right: 1px solid #eee; + border-left: inherit; + } + + .rtl .reviews_advices li.last { + padding-right: 10px; + padding-left: inherit; + } +} + +@media (max-width: 480px) { + .reviews_advices li.last { + margin-top: 10px; + } +} + +#product_reviews_block_tab .review { + margin-bottom: 10px; + border-bottom: 1px solid #e5e5e5; + padding-bottom: 10px; +} + +@media (min-width: 576px) { + #product_reviews_block_tab .review_author { + border-right: 1px solid #eee; + } + + .rtl #product_reviews_block_tab .review_author { + border-left: 1px solid #eee; + border-right: inherit; + } +} + +#product_reviews_block_tab .btn { + padding: 0 5px; + border: 0; + background: none; + color: #ccc; +} + +#product_reviews_block_tab .btn.report_btn { + padding: 5px 0; +} + +#product_reviews_block_tab .btn:hover { + color: #000; +} + +#product_reviews_block_tab .report_btn.disabled { + background: #fff; + color: #acaaa6; +} + +.usefulness_btn.active, +.usefulness_btn.active:hover { + color: #fff; + background-color: #5bc0de; + border-color: #5bc0de; +} + +.review_button .btn.active { + display: inline-block; +} + +/*******************DONGND CSS FOR REVIEWS END*****************************/ +/*******************DONGND CSS FOR COMPARE BEGIN*****************************/ +#product_comparison { + border: none; +} + +@media (min-width: 1200px) { + #product_comparison { + overflow: hidden; + } +} + +.compare_extra_information { + min-width: 200px; +} + +.comparison_infos { + text-align: center; +} + +.leo-productscompare-item { + position: relative; +} + +.leo-productscompare-item .delete-productcompare { + position: absolute; + right: 0px; + top: 5px; + z-index: 99; +} + +.rtl .leo-productscompare-item .delete-productcompare { + left: 0px; + right: auto; +} + +.leo-productscompare-item .thumbnail-container { + height: 100%; + border: 0; + margin: 0; + padding: 40px 0 0; + z-index: 1; +} + +.leo-productscompare-item .product-description { + position: relative; + width: 100%; + height: 100%; +} + +.leo-productscompare-item .delete-productcompare .leo-compare-button { + float: right; +} + +.rtl .leo-productscompare-item .delete-productcompare .leo-compare-button { + float: left; +} + +.product-rating { + display: inline-block; +} + +.footer_link .btn i { + vertical-align: -3px; +} + +.leo-productscompare-item .thumbnail-container .product-image { + margin-bottom: 10px; +} + +.leo-productscompare-item .thumbnail-container .button-container:before { + left: 0 !important; + right: 0 !important; + margin: auto; +} + +.leo-productscompare-item .thumbnail-container .button-container .leo-bt-cart-content span { + display: inline-block; +} + +.leo-productscompare-item .thumbnail-container .leo-bt-cart { + margin-bottom: 10px; + height: 40px; + padding: 0 15px; + line-height: 40px; +} + +.leo-productscompare-item .thumbnail-container .leo-bt-cart .cssload-speeding-wheel { + background: none; +} + +.leo-productscompare-item .thumbnail-container .leo-bt-cart i { + display: none; +} + +.leo-productscompare-item .thumbnail-container .product-price-and-shipping .aeuc_unit_price_label { + position: static; +} + +.leo-productscompare-item .product-description { + width: 290px !important; + margin: auto; +} + +.leo-productscompare-item .product-description .leo_cart_quantity { + display: inline-block; + width: 50px; + text-align: center; + padding: 5px; +} + +.leo-productscompare-item .delete-productcompare .leo-compare-button { + float: none !important; + border: none !important; + padding: 5px 10px; + background: none; + color: #ccc; +} + +.leo-productscompare-item .delete-productcompare .leo-compare-button:hover { + color: #000; +} + +.leo-productscompare-item .delete-productcompare .leo-compare-button:focus { + outline: 0 !important; +} + +.leo-compare-review-dropdown .btn { + color: #FFFFFF; + background-color: #000; + border-color: #000; + font-size: 10px; +} + +.leo-compare-review-dropdown .btn:hover { + color: #FFFFFF; + background-color: #666666; + border-color: #666666; +} + +.leo-compare-review-dropdown.open .btn { + color: #FFFFFF !important; + background-color: #666666; + border-color: #666666; +} + +.leo-compare-review-dropdown.open .dropdown-toggle:after { + border-bottom: 0; + border-top: 0.3em solid; +} + +.leo-compare-review-dropdown .dropdown-menu { + left: 0; + right: 0; +} + +.leo-compare-review-dropdown .dropdown-item { + white-space: normal; + padding: 10px 15px !important; + max-width: 300px; + max-height: 300px; + overflow: auto; + color: #888; + border-bottom: 1px solid #ddd; +} + +.leo-compare-review-dropdown .dropdown-item:nth-child(2n) { + background: #f9f9f9; +} + +.leo-compare-review-dropdown .dropdown-item:last-child { + border: 0; +} + +.leo-compare-review-dropdown .dropdown-item strong { + font-weight: 500; + font-size: 80%; + color: #666; + text-transform: capitalize; +} + +.leo-compare-review-dropdown .review_title { + font-size: 13px; + color: #000; + text-transform: capitalize; + margin: 0 0 5px; +} + +.leo-compare-review-dropdown .review_content { + font-size: 12px; + line-height: 1.5; +} + +/*******************DONGND CSS FOR COMPARE END*****************************/ +/*******************DONGND CSS FOR WISHLIST BEGIN*****************************/ +.list-wishlist { + margin: 20px 0; + overflow-x: auto; +} + +@media (max-width: 991px) { + .list-wishlist>table { + width: 991px; + } +} + +.list-wishlist table tbody>tr:nth-child(odd) { + background: #ebebeb; +} + +.list-wishlist table tbody>tr:nth-child(even) { + background: #f6f6f6; +} + +.list-wishlist table th, +.list-wishlist table td { + vertical-align: middle; +} + +.leo-save-wishlist-loading { + display: none; +} + +.list-wishlist tr, +.leo-wishlistproduct-item { + -moz-transition: background-color 1.5s; + -webkit-transition: background-color 1.5s; + -o-transition: background-color 1.5s; + transition: background-color 1.5s; +} + +.list-wishlist tr.new, +.list-wishlist tr.active, +.list-wishlist tr.show.active { + background-color: #4880D2 !important; +} + +.leo-wishlistproduct-item { + text-align: center; + margin-bottom: 50px; +} + +@media (min-width: 992px) { + .leo-wishlistproduct-item:nth-child(4n + 1) { + clear: both; + } +} + +@media (max-width: 991px) and (min-width: 768px) { + .leo-wishlistproduct-item { + width: 33.33%; + } + + .leo-wishlistproduct-item:nth-child(3n + 1) { + clear: both; + } +} + +@media (max-width: 767px) and (min-width: 481px) { + .leo-wishlistproduct-item { + width: 50%; + } + + .leo-wishlistproduct-item:nth-child(2n + 1) { + clear: both; + } +} + +.wishlist-product-action .leo-wishlist-product-save-button, +.wishlist-product-action .leo-wishlist-button-dropdown { + width: auto; +} + +.wishlist-product-action .leo-wishlist-button:before { + display: none; +} + +.wishlist-product-action .btn { + margin-bottom: 10px; + padding: 0 1.25rem; + width: auto; + height: 40px; + line-height: 40px; + width: 100%; +} + +.leo-wishlist-button-dropdown { + position: relative; +} + +.leo-wishlist-button-dropdown .leo-list-wishlist { + top: auto; + bottom: 100%; + font-size: 13px; + max-height: 125px; + overflow-y: auto; + border-radius: 0; + width: 100%; +} + +.leo-wishlist-button-dropdown .move-wishlist-item, +.leo-wishlist-button-dropdown .wishlist-item { + border-radius: 0; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + width: 100%; + text-align: left; + padding: 5px 15px !important; + text-transform: capitalize; + font-size: 12px; + border-bottom: 1px solid #eee; +} + +.rtl .leo-wishlist-button-dropdown .move-wishlist-item, +.rtl .leo-wishlist-button-dropdown .wishlist-item { + text-align: right; +} + +.leo-wishlist-button-dropdown .move-wishlist-item:last-child, +.leo-wishlist-button-dropdown .wishlist-item:last-child { + border-bottom: 0; +} + +.leo-wishlist-button-dropdown .move-wishlist-item:hover, +.leo-wishlist-button-dropdown .wishlist-item:hover { + color: #000; + background: none; +} + +.leo-wishlist-button-dropdown .move-wishlist-item.added, +.leo-wishlist-button-dropdown .wishlist-item.added { + color: #000; + background: none; +} + +.leo-wishlist-button-dropdown .move-wishlist-item.added:before, +.leo-wishlist-button-dropdown .wishlist-item.added:before { + content: "\f00c"; + font-family: "FontAwesome"; + margin: 0 5px 0 0; +} + +.rtl .leo-wishlist-button-dropdown .move-wishlist-item.added:before, +.rtl .leo-wishlist-button-dropdown .wishlist-item.added:before { + margin: 0 0 0 5px; +} + +.leo-wishlist-button-dropdown .move-wishlist-item.added:hover, +.leo-wishlist-button-dropdown .wishlist-item.added:hover { + color: #000; + background: none; +} + +.leo-modal-wishlist .modal-footer { + display: none; +} + +.leo-modal-wishlist.enable-action .modal-footer { + display: block; +} + +.leo-modal-wishlist-loading { + display: none; +} + +.leo-list-wishlist { + z-index: 999; + padding: 0px; + margin: 0px; + border: 0px; +} + +.leo-wishlist-button.dropdown-toggle::after { + display: none; +} + +.leo-wishlist-button-dropdown { + display: block; +} + +.wishlist-item.added, +.wishlist-item.added:hover { + background-color: #2fb5d2; + color: #fff; +} + +.wishlist-item:hover, +.move-wishlist-item:hover { + background-color: #f7f7f9; +} + +.view-wishlist-product { + float: left; +} + +.rtl .view-wishlist-product { + float: right; +} + +.view-wishlist-product i { + margin-right: 5px; + vertical-align: -4px; + font-size: 19px; +} + +.rtl .view-wishlist-product i { + margin-left: 5px; + margin-right: inherit; +} + +.list-wishlist tr.show { + background-color: #d9edf7 !important; +} + +.leo-view-wishlist-product-loading { + display: none; + float: right; +} + +.rtl .leo-view-wishlist-product-loading { + float: left; +} + +.leo-wishlist-product { + margin-bottom: 20px; +} + +.leo-wishlist-product .button-container { + position: relative; + margin-bottom: 15px; +} + +.leo-wishlist-product .thumbnail-container .product-price-and-shipping .aeuc_unit_price_label { + position: static; + display: block; +} + +.delete-wishlist-product .leo-wishlist-button { + float: right; + padding: 10px 0; + background: none; + color: #ccc; +} + +.rtl .delete-wishlist-product .leo-wishlist-button { + float: left; +} + +.delete-wishlist-product .leo-wishlist-button:hover { + color: #000; +} + +.send-wishlist { + display: none; +} + +.leo-fake-send-wishlist-button { + display: none; +} + +.wishlist-product-info .form-control { + background: #ebebeb; + border-radius: 0; +} + +.wishlist-product-info .form-group label { + text-align: center; +} + +.wishlist-product-info label { + text-align: center; +} + +.send-wishlist { + margin-bottom: 20px; +} + +.wishlist_email_status_loading { + border: 2px solid #414141; + border-left-color: transparent; + border-right-color: transparent; +} + +.wishlist_email_status_loading, +.send_wishlist_msg, +.leo-modal-send-wishlist-loading { + display: none; +} + +.send_wishlist_success { + color: #5cb85c; +} + +.send_wishlist_error { + color: #f0ad4e; +} + +.send_wishlist_form_content .has-success input, +.send_wishlist_form_content .has-warning input { + pointer-events: none; +} + +.leo-wishlist-button-delete { + float: right; +} + +.rtl .leo-wishlist-button-delete { + float: left; +} + +#mywishlist>h2:first-letter { + text-transform: uppercase; +} + +#mywishlist .footer_links li { + display: inline-block; + margin-bottom: 10px; +} + +#mywishlist .footer_links li .btn { + background: #fff; + color: #292929; +} + +#mywishlist .footer_links li .btn:hover { + background: #fff; + color: #888; +} + +#mywishlist .footer_links li i { + vertical-align: -4px; + margin-right: 5px; +} + +.rtl #mywishlist .footer_links li i { + margin-left: 5px; + margin-right: inherit; +} + +.leo-modal-send-wishlist .modal-footer .btn { + float: right; + min-width: 120px; +} + +.rtl .leo-modal-send-wishlist .modal-footer .btn { + float: left; +} + +@media (max-width: 480px) { + .leo-modal-send-wishlist .modal-footer .btn { + width: 100%; + margin: 2px 0 !important; + } +} + +.leo-modal-send-wishlist .modal-footer .leo-modal-reset-send-wishlist-bt { + float: left; +} + +.rtl .leo-modal-send-wishlist .modal-footer .leo-modal-reset-send-wishlist-bt { + float: right; +} + +.leo-modal-send-wishlist .modal-footer .leo-modal-send-wishlist-bt { + margin-right: 20px; +} + +.rtl .leo-modal-send-wishlist .modal-footer .leo-modal-send-wishlist-bt { + margin-left: 20px; + margin-right: inherit; +} + +/*******************DONGND CSS FOR WISHLIST END*****************************/ +/*******************DONGND CSS FOR DROPDOWN CART BEGIN*****************************/ +@media (min-width: 992px) { + #_desktop_cart:hover .leo-dropdown-cart { + visibility: visible; + opacity: 1; + filter: alpha(opacity=100); + -webkit-transform: translateY(0px); + -moz-transform: translateY(0px); + -ms-transform: translateY(0px); + -o-transform: translateY(0px); + transform: translateY(0px); + } +} + +#_desktop_cart .leo-dropdown-cart-content { + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); +} + +.leo-dropdown-cart { + position: absolute; +} + +.leo-dropdown-cart.defaultcart { + right: 0; +} + +.rtl .leo-dropdown-cart.defaultcart { + left: 0; + right: auto; +} + +.leo-dropdown-cart.dropdown, +.leo-dropdown-cart.dropup { + visibility: hidden; + opacity: 0; + filter: alpha(opacity=0); + z-index: -1; + transition: all .2s; +} + +.leo-dropdown-cart.dropdown.show, +.leo-dropdown-cart.dropup.show { + visibility: visible; + opacity: 1; + filter: alpha(opacity=100); + -webkit-transform: translateY(0px); + -moz-transform: translateY(0px); + -ms-transform: translateY(0px); + -o-transform: translateY(0px); + transform: translateY(0px); +} + +.leo-dropdown-cart.dropdown { + top: 100%; + -webkit-transform: translateY(5px); + -moz-transform: translateY(5px); + -ms-transform: translateY(5px); + -o-transform: translateY(5px); + transform: translateY(5px); + z-index: 999; +} + +.leo-dropdown-cart.dropup { + top: 100%; + -webkit-transform: translateY(5px); + -moz-transform: translateY(5px); + -ms-transform: translateY(5px); + -o-transform: translateY(5px); + transform: translateY(5px); +} + +.leo-dropdown-cart.flycart.dropup, +.leo-dropdown-cart.flycart.dropdown { + bottom: 100%; + margin-bottom: 10px; +} + +.leo-fly-cart.solo.enable-dropdown.offset-left .leo-dropdown-cart.flycart { + left: 0; +} + +.leo-fly-cart.solo.enable-dropdown.offset-right .leo-dropdown-cart.flycart { + right: 0; +} + +.leo-dropdown-cart-content { + background: #fff; + z-index: 99; + min-width: 265px; + right: 0; + box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); +} + +.leo-dropdown-cart-content .leo-dropdown-list-item.active-scrollbar { + overflow: auto; +} + +.leo-dropdown-cart-content a.leo-dropdown-customization, +.leo-dropdown-cart-content a.leo-dropdown-combination { + color: #2fb5d2; +} + +.leo-dropdown-list-item { + margin-bottom: 0px; +} + +.leo-cart-dropdown-action a.btn { + color: #FFFFFF; + width: 100%; + font-size: 12px; + margin-top: 10px; + background: #ccc; + border: 0; + padding: 10px 15px; +} + +.leo-cart-dropdown-action a.btn:hover, +.leo-cart-dropdown-action a.btn:focus, +.leo-cart-dropdown-action a.btn:active:focus { + background: #333; + color: #FFFFFF; +} + +.leo-cart-dropdown-action a.btn.cart-dropdow-checkout { + background: #000; +} + +.leo-cart-dropdown-action a.btn.cart-dropdow-checkout:hover, +.leo-cart-dropdown-action a.btn.cart-dropdow-checkout:focus, +.leo-cart-dropdown-action a.btn.cart-dropdow-checkout:active:focus { + background: #b5262c; + color: #FFFFFF; +} + +.leo-dropdown-cart-subtotals, +.leo-dropdown-cart-total { + text-align: left; +} + +.rtl .leo-dropdown-cart-subtotals, +.rtl .leo-dropdown-cart-total { + text-align: right; +} + +.leo-dropdown-cart-subtotals .value, +.leo-dropdown-cart-total .value { + float: right; + color: #2c2c2c; + text-align: right; +} + +.rtl .leo-dropdown-cart-subtotals .value, +.rtl .leo-dropdown-cart-total .value { + float: left; +} + +.rtl .leo-dropdown-cart-subtotals .value, +.rtl .leo-dropdown-cart-total .value { + text-align: left; +} + +.leo-dropdown-cart-subtotals .label, +.leo-dropdown-cart-total .label { + float: left; + color: #999; + font-size: 13px; + text-transform: capitalize; + text-align: left; +} + +.rtl .leo-dropdown-cart-subtotals .label, +.rtl .leo-dropdown-cart-total .label { + float: right; +} + +.rtl .leo-dropdown-cart-subtotals .label, +.rtl .leo-dropdown-cart-total .label { + text-align: right; +} + +.leo-dropdown-cart-subtotals { + border-bottom: 1px solid #eee; + padding: 20px 20px 15px; + border-top: 1px solid #eee; +} + +.leo-dropdown-cart-subtotals>div { + margin-bottom: 5px; +} + +.leo-cart-item-img, +.leo-cart-item-info { + float: left; +} + +.rtl .leo-cart-item-img, +.rtl .leo-cart-item-info { + float: right; +} + +.leo-cart-item-img { + width: 30%; + margin-right: 15px; +} + +.rtl .leo-cart-item-img { + margin-left: 15px; + margin-right: inherit; +} + +.leo-cart-item-info { + width: 60%; + text-align: left; +} + +.rtl .leo-cart-item-info { + text-align: right; +} + +.leo-cart-item-info .product-name { + margin-bottom: 0; +} + +.leo-cart-item-info .product-name a { + font-size: 13px; +} + +.leo-cart-item-info .product-price { + font-size: 13px; + color: #333; + display: block; +} + +.leo-cart-item-info .product-price>div { + display: inline-block; + vertical-align: top; + padding: 0; +} + +.leo-cart-item-info .product-price .unit-price-cart { + color: #999; +} + +.leo-cart-item-info .product-discount .regular-price { + margin: 0; + font-size: 13px; +} + +.leo-cart-item-info .product-discount span { + display: inline-block; +} + +.leo-cart-item-info .discount-percentage { + font-size: 11px; + position: relative; + color: #000; + padding: 0 4px; + margin: 0 2px; +} + +.leo-cart-item-info .discount-percentage:before { + content: "("; + position: absolute; + left: 0; + top: 0; +} + +.rtl .leo-cart-item-info .discount-percentage:before { + right: 0; + left: auto; +} + +.leo-cart-item-info .discount-percentage:after { + content: ")"; + position: absolute; + right: 0; + top: 0; +} + +.rtl .leo-cart-item-info .discount-percentage:after { + left: 0; + right: auto; +} + +.leo-cart-item-info .current-price { + display: inline-block; + padding: 5px 0 0; +} + +.leo-dropdown-list-item { + padding-top: 10px; +} + +.leo-dropdown-cart-item { + position: relative; + padding: 10px 0px 10px 20px; + -webkit-transition: background-color 0.5s linear; + -o-transition: background-color 0.5s linear; + transition: background-color 0.5s linear; +} + +.leo-dropdown-cart-item .leo-dropdown-additional { + position: absolute; + top: 70%; + left: 0; + width: 100%; + opacity: 0; + filter: alpha(opacity=0); + z-index: -1; + -webkit-transition: all 0.5s ease 0s; + -o-transition: all 0.5s ease 0s; + transition: all 0.5s ease 0s; + background-color: #e5e5e5; + padding: 0 10px 10px; +} + +.leo-dropdown-cart-item.show-additional .leo-dropdown-additional { + top: 100%; + z-index: 9999; + opacity: 1; + filter: alpha(opacity=100); +} + +.leo-dropdown-cart-item.high-light, +.leo-dropdown-cart-item.show-combination, +.leo-dropdown-cart-item.show-customization, +.leo-dropdown-cart-item.show-additional { + background-color: #f9f9f9; + z-index: 9999; +} + +.leo-dropdown-additional .view-customization { + margin-top: 5px; +} + +.leo-dropdown-additional .view-combination, +.leo-dropdown-additional .view-customization { + padding-bottom: 5px; + font-weight: 600; + text-align: left; + border-top: 1px solid #fff; +} + +.rtl .leo-dropdown-additional .view-combination, +.rtl .leo-dropdown-additional .view-customization { + text-align: right; +} + +.leo-remove-from-cart { + position: absolute; + top: 10px; + right: 5px; + color: #ccc; +} + +.rtl .leo-remove-from-cart { + left: 5px; + right: auto; +} + +.leo-remove-from-cart:hover { + color: #000; +} + +.leo-remove-from-cart i.material-icons { + font-size: 0; + width: 20px; + height: 20px; + text-align: center; + line-height: 20px; +} + +.leo-remove-from-cart i.material-icons:before { + content: "\f00d"; + font-family: FontAwesome; + font-size: 12px; + display: inline-block; +} + +.leo-dropdown-additional, +.view-additional { + clear: both; + text-align: left; +} + +.rtl .leo-dropdown-additional, +.rtl .view-additional { + text-align: right; +} + +.view-additional { + position: absolute; + right: 10px; + bottom: 36px; +} + +.rtl .view-additional { + left: 10px; + right: auto; +} + +.leo-cart-dropdown-action { + text-align: center; + padding: 20px; +} + +#header .header-nav .cart-preview .leo-dropdown-cart-item .view-leo-dropdown-additional:focus { + color: #232323; + text-decoration: none; + outline: none; +} + +/*****************addition arrow BEGIN***********************/ +.view-leo-dropdown-additional { + width: 25px; + height: 25px; + background: #2c2c2c; + position: relative; + cursor: pointer; +} + +.view-leo-dropdown-additional.show { + background: #000; +} + +.view-leo-dropdown-additional.show:before { + -webkit-transform: rotate(-45deg); + -moz-transform: rotate(-45deg); + -ms-transform: rotate(-45deg); + -o-transform: rotate(-45deg); + transform: rotate(-45deg); +} + +.view-leo-dropdown-additional.show:after { + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); +} + +.view-leo-dropdown-additional:before, +.view-leo-dropdown-additional:after { + content: ""; + display: block; + width: 10px; + height: 3px; + background: white; + position: absolute; + top: 12px; + -webkit-transition: transform 0.3s; + -o-transition: transform 0.3s; + transition: transform 0.3s; +} + +.view-leo-dropdown-additional:before { + right: 10px; + border-top-left-radius: 5px; + border-bottom-left-radius: 5px; + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); +} + +.view-leo-dropdown-additional:after { + right: 5px; + -webkit-transform: rotate(-45deg); + -moz-transform: rotate(-45deg); + -ms-transform: rotate(-45deg); + -o-transform: rotate(-45deg); + transform: rotate(-45deg); + border-top-right-radius: 5px; + border-bottom-right-radius: 5px; +} + +/*****************addition arrow END***********************/ +.leo-dropdown-overlay { + display: none; + min-width: 100%; + min-height: 100%; + height: 100%; + top: 0; + left: 0; + background: rgba(255, 255, 255, 0.75); + position: absolute; + z-index: 300; +} + +/***********loading wheel BEGIN*************/ +.leo-dropdown-cssload-speeding-wheel, +.leo-fly-cssload-speeding-wheel { + display: none; + position: absolute; + left: 46%; + top: 40%; + width: 30px; + height: 30px; + margin: 0 auto; + border: 2px solid #222; + border-radius: 50%; + border-left-color: transparent; + border-right-color: transparent; + animation: cssload-spin 1200ms infinite linear; + -o-animation: cssload-spin 1200ms infinite linear; + -ms-animation: cssload-spin 1200ms infinite linear; + -webkit-animation: cssload-spin 1200ms infinite linear; + -moz-animation: cssload-spin 1200ms infinite linear; +} + +.leo-fly-cssload-speeding-wheel { + left: 0; + top: 0; + width: 24px; + height: 24px; +} + +.leo-blockcart.cart-preview span.leo-dropdown-cssload-speeding-wheel { + width: 20px; + height: 20px; + border: 2px solid #fff; + border-left-color: transparent; + border-right-color: transparent; + vertical-align: middle; + position: relative; + left: 0; + top: 0; +} + +@keyframes cssload-spin { + 100% { + transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@-o-keyframes cssload-spin { + 100% { + -o-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@-ms-keyframes cssload-spin { + 100% { + -ms-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@-webkit-keyframes cssload-spin { + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@-moz-keyframes cssload-spin { + 100% { + -moz-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +/************loading piano BEGIN****************/ +.cssload-piano { + display: none !important; + margin: auto; + width: 5px; + height: 8px; + font-size: 8px; + position: absolute; + top: 6px; + right: 0; +} + +.cssload-piano>div { + height: 100%; + width: 100%; + display: block; + margin-bottom: 0.6em; + animation: stretchdelay 0.88s infinite ease-in-out; + -o-animation: stretchdelay 0.88s infinite ease-in-out; + -ms-animation: stretchdelay 0.88s infinite ease-in-out; + -webkit-animation: stretchdelay 0.88s infinite ease-in-out; + -moz-animation: stretchdelay 0.88s infinite ease-in-out; +} + +.cssload-piano .cssload-rect2 { + animation-delay: -0.65s; + -o-animation-delay: -0.65s; + -ms-animation-delay: -0.65s; + -webkit-animation-delay: -0.65s; + -moz-animation-delay: -0.65s; +} + +.cssload-piano .cssload-rect3 { + animation-delay: -0.42s; + -o-animation-delay: -0.42s; + -ms-animation-delay: -0.42s; + -webkit-animation-delay: -0.42s; + -moz-animation-delay: -0.42s; +} + +@keyframes stretchdelay { + + 0%, + 40%, + 100% { + transform: scaleX(0.8); + background-color: #2e5865; + box-shadow: 0 0 0 rgba(10, 10, 10, 0.1); + } + + 20% { + transform: scaleX(1); + background-color: white; + box-shadow: 0 5px 6px rgba(10, 10, 10, 0.4); + } +} + +@-o-keyframes stretchdelay { + + 0%, + 40%, + 100% { + -o-transform: scaleX(0.8); + background-color: #2e5865; + box-shadow: 0 0 0 rgba(10, 10, 10, 0.1); + } + + 20% { + -o-transform: scaleX(1); + background-color: white; + box-shadow: 0 5px 6px rgba(10, 10, 10, 0.4); + } +} + +@-ms-keyframes stretchdelay { + + 0%, + 40%, + 100% { + -ms-transform: scaleX(0.8); + background-color: #2e5865; + box-shadow: 0 0 0 rgba(10, 10, 10, 0.1); + } + + 20% { + -ms-transform: scaleX(1); + background-color: white; + box-shadow: 0 5px 6px rgba(10, 10, 10, 0.4); + } +} + +@-webkit-keyframes stretchdelay { + + 0%, + 40%, + 100% { + -webkit-transform: scaleX(0.8); + background-color: #2e5865; + box-shadow: 0 0 0 rgba(10, 10, 10, 0.1); + } + + 20% { + -webkit-transform: scaleX(1); + background-color: white; + box-shadow: 0 5px 6px rgba(10, 10, 10, 0.4); + } +} + +@-moz-keyframes stretchdelay { + + 0%, + 40%, + 100% { + -moz-transform: scaleX(0.8); + background-color: #2e5865; + box-shadow: 0 0 0 rgba(10, 10, 10, 0.1); + } + + 20% { + -moz-transform: scaleX(1); + background-color: white; + box-shadow: 0 5px 6px rgba(10, 10, 10, 0.4); + } +} + +/************loading piano END****************/ +/********* notification BEGIN *********/ +.leo-notification { + display: none; + position: fixed; +} + +.leo-notification.active { + display: block; + z-index: 99999; +} + +.leo-notification .notification-wrapper { + width: 100%; + max-height: 100px; +} + +.leo-notification .notification-wrapper.disable { + max-height: 0; + margin-bottom: 0; + -webkit-transition: all 0.7s; + -o-transition: all 0.7s; + transition: all 0.7s; +} + +.notification { + position: relative; + padding: 10px 15px; + text-align: center; + width: 100%; + margin: 0 auto; + color: white; + line-height: 25px; + cursor: pointer; + visibility: hidden; + z-index: -1; + opacity: 0; + filter: alpha(opacity=0); + -webkit-transform: translate(0px, -50px); + -moz-transform: translate(0px, -50px); + -ms-transform: translate(0px, -50px); + -o-transform: translate(0px, -50px); + transform: translate(0px, -50px); +} + +.notification.show { + -webkit-transform: translate(0px, 0px); + -moz-transform: translate(0px, 0px); + -ms-transform: translate(0px, 0px); + -o-transform: translate(0px, 0px); + transform: translate(0px, 0px); + -webkit-transition: all 0.7s; + -o-transition: all 0.7s; + transition: all 0.7s; + visibility: visible; + z-index: 99999; + opacity: 1; + filter: alpha(opacity=100); +} + +.notification.closed { + -webkit-transform: translate(0px, -50px); + -moz-transform: translate(0px, -50px); + -ms-transform: translate(0px, -50px); + -o-transform: translate(0px, -50px); + transform: translate(0px, -50px); + -webkit-transition: 0.7s; + -o-transition: 0.7s; + transition: 0.7s; + visibility: hidden; + z-index: -1; + opacity: 0; + filter: alpha(opacity=0); +} + +.notification .notification-title { + margin-right: 15px; + padding: 0px 15px; + line-height: 30px; + display: inline-block; +} + +.notification .notification-close { + background: rgba(255, 255, 255, 0.2); + padding: 0px 10px; + float: right; + line-height: 20px; + display: inline-block; + color: white; + position: absolute; + bottom: 13px; + right: 13px; +} + +.rtl .notification .notification-close { + float: left; +} + +.rtl .notification .notification-close { + left: 13px; + right: auto; +} + +.notification .notification-close:hover { + cursor: pointer; +} + +.leo-temp { + display: none; +} + +.notification.notification-success { + background: rgba(46, 204, 113, 0.8); +} + +.notification.notification-success .notification-title { + background: #27ae60; +} + +.notification.notification-error { + background: rgba(231, 76, 60, 0.8); +} + +.notification.notification-error .notification-title { + background: #c0392b; +} + +.notification.notification-warning { + background: rgba(241, 196, 15, 0.8); +} + +.notification.notification-warning .notification-title { + background: #f39c12; +} + +.notification.notification-normal { + background: rgba(52, 152, 219, 0.8); +} + +.notification.notification-normal .notification-title { + background: #2980b9; +} + +.notification .noti { + display: none; +} + +.notification .noti.active { + display: block; +} + +.notification-success .noti-special { + text-transform: capitalize; +} + +/********* notification END*********/ +.leo-input-product-quantity { + width: 50px; + display: inline-block; +} + +.leo-cart-item-info .leo-bt-product-quantity { + cursor: pointer; + display: inline-block; + border: 0; + height: 25px; + vertical-align: top; + font-size: 14px; + color: #999; +} + +.leo-cart-item-info .leo-bt-product-quantity:hover { + color: #000; +} + +.leo-cart-item-info .leo-bt-product-quantity i { + width: 20px; + height: 100%; + vertical-align: top; + line-height: 25px; + text-align: center; + font-size: 13px; +} + +.leo-cart-item-info .product-quantity { + font-size: 0; +} + +.leo-cart-item-info .product-quantity .input-group { + height: 25px; + line-height: 25px; + margin: 0; + padding: 0; + border: 0; + font-size: 13px; + border-left: 0; + border-right: 0; + display: inline-block; + outline: 0; + text-align: center; + background: none; +} + +_::-moz-svg-foreign-content, +:root .leo-cart-item-info .input-group { + margin: 0 -4px; +} + +.leo-cart-item-info .product-quantity { + margin-top: 10px; +} + +/*******************DONGND CSS FOR DROPDOWN CART END*****************************/ +/*******************DONGND CSS FOR FLY CART BEGIN*****************************/ +.leo-fly-cart-icon-wrapper { + padding: 10px; + cursor: pointer; +} + +.leo-fly-cart-icon-wrapper i { + display: none; +} + +.leo-fly-cart-icon-wrapper a { + width: 40px; + height: 40px; + line-height: 38px; + border-radius: 50%; + text-align: center; + position: relative; + padding: 0; + display: block; + background-color: #fff; + box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.15); + font-size: 16px; + color: #000; +} + +.leo-fly-cart-icon-wrapper a:after { + content: "\e655"; + font-family: 'themify'; + pointer-events: none; +} + +.leo-fly-cart-icon-wrapper a:hover:after { + top: -3px; +} + +.leo-fly-cart-total { + position: absolute; + top: 2px; + right: 2px; + font-size: 12px; + color: #fff; + background: #222; + padding: 0 5px; + border-radius: 50%; + -webkit-transition: all 0.2s linear; + -moz-transition: all 0.2s linear; + -ms-transition: all 0.2s linear; + -o-transition: all 0.2s linear; + transition: all 0.2s linear; + min-width: 20px; + height: 20px; + text-align: center; + line-height: 20px; + box-shadow: 0 0 0 2px #fff; + z-index: 2; +} + +.rtl .leo-fly-cart-total { + left: 2px; + right: auto; +} + +.leo-fly-cart .leo-dropdown-cart-content { + left: 0; +} + +/***************CSS FOR LOADING FLY CART BEGIN **********************/ +.leo-fly-cart-cssload-loader { + display: none; + width: 60px; + height: 60px; + line-height: 60px; + position: absolute; + bottom: 0; + left: 0; + box-sizing: border-box; + text-align: center; + z-index: 0; + text-transform: uppercase; +} + +.leo-fly-cart-cssload-loader:before, +.leo-fly-cart-cssload-loader:after { + opacity: 0; + filter: alpha(opacity=0); + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + content: "\0020"; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-radius: 42px; + border: 1px solid #2fb5d2; + box-shadow: 0 0 10px #2fb5d2, inset 0 0 10px #2fb5d2; + -o-box-shadow: 0 0 10px #2fb5d2, inset 0 0 10px #2fb5d2; + -ms-box-shadow: 0 0 10px #2fb5d2, inset 0 0 10px #2fb5d2; + -webkit-box-shadow: 0 0 10px #2fb5d2, inset 0 0 10px #2fb5d2; + -moz-box-shadow: 0 0 10px #2fb5d2, inset 0 0 10px #2fb5d2; +} + +.rtl .leo-fly-cart-cssload-loader:before, +.rtl .leo-fly-cart-cssload-loader:after { + right: 0; + left: auto; +} + +.leo-fly-cart-cssload-loader:after { + z-index: 1; + animation: cssload-gogoloader 2.3s infinite 1.15s; + -o-animation: cssload-gogoloader 2.3s infinite 1.15s; + -ms-animation: cssload-gogoloader 2.3s infinite 1.15s; + -webkit-animation: cssload-gogoloader 2.3s infinite 1.15s; + -moz-animation: cssload-gogoloader 2.3s infinite 1.15s; +} + +.leo-fly-cart-cssload-loader:before { + z-index: 2; + animation: cssload-gogoloader 2.3s infinite; + -o-animation: cssload-gogoloader 2.3s infinite; + -ms-animation: cssload-gogoloader 2.3s infinite; + -webkit-animation: cssload-gogoloader 2.3s infinite; + -moz-animation: cssload-gogoloader 2.3s infinite; +} + +@keyframes cssload-gogoloader { + 0% { + -webkit-transform: scale(0); + -moz-transform: scale(0); + -ms-transform: scale(0); + -o-transform: scale(0); + transform: scale(0); + opacity: 0; + filter: alpha(opacity=0); + } + + 50% { + opacity: 1; + filter: alpha(opacity=100); + } + + 100% { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: scale(1); + opacity: 0; + filter: alpha(opacity=0); + } +} + +@-o-keyframes cssload-gogoloader { + 0% { + -o-transform: scale(0); + opacity: 0; + filter: alpha(opacity=0); + } + + 50% { + opacity: 1; + filter: alpha(opacity=100); + } + + 100% { + -o-transform: scale(1); + opacity: 0; + filter: alpha(opacity=0); + } +} + +@-ms-keyframes cssload-gogoloader { + 0% { + -ms-transform: scale(0); + opacity: 0; + filter: alpha(opacity=0); + } + + 50% { + opacity: 1; + filter: alpha(opacity=100); + } + + 100% { + -ms-transform: scale(1); + opacity: 0; + filter: alpha(opacity=0); + } +} + +@-webkit-keyframes cssload-gogoloader { + 0% { + -webkit-transform: scale(0); + opacity: 0; + filter: alpha(opacity=0); + } + + 50% { + opacity: 1; + filter: alpha(opacity=100); + } + + 100% { + -webkit-transform: scale(1); + opacity: 0; + filter: alpha(opacity=0); + } +} + +@-moz-keyframes cssload-gogoloader { + 0% { + -moz-transform: scale(0); + opacity: 0; + filter: alpha(opacity=0); + } + + 50% { + opacity: 1; + filter: alpha(opacity=100); + } + + 100% { + -moz-transform: scale(1); + opacity: 0; + filter: alpha(opacity=0); + } +} + +/***************CSS FOR LOADING FLY CART END **********************/ +/***************CSS FOR FLY CART SLIDE BAR BEGIN **********************/ +.leo-fly-cart-mask { + position: fixed; + z-index: 9999; + top: 0; + left: 0; + overflow: hidden; + width: 0; + height: 0; + background-color: #000; + opacity: 0; + filter: alpha(opacity=0); + transition: opacity 0.8s, width 0s 0.8s, height 0s 0.8s; + -webkit-transition: opacity 0.8s, width 0s 0.8s, height 0s 0.8s; + -moz-transition: opacity 0.8s, width 0s 0.8s, height 0s 0.8s; + -ms-transition: opacity 0.8s, width 0s 0.8s, height 0s 0.8s; + -o-transition: opacity 0.8s, width 0s 0.8s, height 0s 0.8s; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} + +.rtl .leo-fly-cart-mask { + right: 0; + left: auto; +} + +.leo-fly-cart-mask.active { + width: 100%; + height: 100%; + -webkit-transition: opacity 0.3s; + -o-transition: opacity 0.3s; + transition: opacity 0.3s; +} + +body.leoflycart-active-slidebar { + /* overflow: hidden; + padding-right: 17px; */ +} + +body.leoflycart-active-push main { + -webkit-transition: all 0.3s ease; + -o-transition: all 0.3s ease; + transition: all 0.3s ease; +} + +.leo-fly-cart-slidebar .leo-dropdown-cart { + position: relative; + margin-right: 0; +} + +.leo-fly-cart-slidebar .leo-dropdown-cart-content { + position: relative; +} + +.leo-fly-cart-slidebar { + z-index: 99999; + position: fixed; + background: #fff; + -webkit-transition: all 0.2s ease; + -o-transition: all 0.2s ease; + transition: all 0.2s ease; + visibility: hidden; + display: none; +} + +.leo-fly-cart-slidebar.slidebar_left { + display: block; + height: 100%; + top: 0; + left: 0; + -webkit-transform: translateX(-100%); + -moz-transform: translateX(-100%); + -ms-transform: translateX(-100%); + -o-transform: translateX(-100%); + transform: translateX(-100%); +} + +.rtl .leo-fly-cart-slidebar.slidebar_left { + right: 0; + left: auto; +} + +.leo-fly-cart-slidebar.slidebar_right { + display: block; + height: 100%; + top: 0; + right: 0; + -webkit-transform: translateX(100%); + -moz-transform: translateX(100%); + -ms-transform: translateX(100%); + -o-transform: translateX(100%); + transform: translateX(100%); +} + +.rtl .leo-fly-cart-slidebar.slidebar_right { + left: 0; + right: auto; +} + +.leo-fly-cart-slidebar.slidebar_left.active, +.leo-fly-cart-slidebar.slidebar_right.active { + visibility: visible; + -webkit-transform: translateX(0); + -moz-transform: translateX(0); + -ms-transform: translateX(0); + -o-transform: translateX(0); + transform: translateX(0); +} + +.leo-fly-cart-slidebar.slidebar_top { + display: block; + width: 100%; + top: 0; + left: 0; + -webkit-transform: translateY(-100%); + -moz-transform: translateY(-100%); + -ms-transform: translateY(-100%); + -o-transform: translateY(-100%); + transform: translateY(-100%); +} + +.rtl .leo-fly-cart-slidebar.slidebar_top { + right: 0; + left: auto; +} + +.leo-fly-cart-slidebar.slidebar_bottom { + display: block; + width: 100%; + bottom: 0; + left: 0; + -webkit-transform: translateY(100%); + -moz-transform: translateY(100%); + -ms-transform: translateY(100%); + -o-transform: translateY(100%); + transform: translateY(100%); + opacity: 0; +} + +.rtl .leo-fly-cart-slidebar.slidebar_bottom { + right: 0; + left: auto; +} + +.leo-fly-cart-slidebar.slidebar_top.active, +.leo-fly-cart-slidebar.slidebar_bottom.active { + visibility: visible; + -webkit-transform: translateY(0); + -moz-transform: translateY(0); + -ms-transform: translateY(0); + -o-transform: translateY(0); + transform: translateY(0); + opacity: 1; +} + +.leo-dropdown-bottom { + padding-top: 10px; +} + +.leo-dropdown-bottom .leo-dropdown-cart-total { + padding: 20px 20px 0; + font-size: 20px; + font-family: "Lato", sans-serif; +} + +#_desktop_cart .leo-dropdown-bottom .leo-dropdown-cart-total>.row { + display: -webkit-box; + display: -moz-box; + display: box; + display: -webkit-flex; + display: -moz-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -moz-box-align: center; + box-align: center; + -webkit-align-items: center; + -moz-align-items: center; + -ms-align-items: center; + -o-align-items: center; + align-items: center; + -ms-flex-align: center; +} + +.leo-fly-cart-slidebar.active-scroll .leo-dropdown-bottom { + background: #fff; + position: absolute; + width: 100%; +} + +.leo-fly-cart-slidebar.active-scroll.slidebar_top .leo-dropdown-cart-item.last .view-leo-dropdown-additional, +.leo-fly-cart-slidebar.active-scroll.slidebar_bottom .leo-dropdown-cart-item.last .view-leo-dropdown-additional { + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); + transform: rotate(90deg); +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-item, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-item { + display: inline-block; + border-bottom: none; + border-right: 1px solid #eee; + vertical-align: top; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-item.show-additional .leo-dropdown-additional, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-item.show-additional .leo-dropdown-additional { + left: 100%; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-item.last.show-additional .leo-dropdown-additional, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-item.last.show-additional .leo-dropdown-additional { + border-left: none; + border-right: 1px solid #fff; + left: -100%; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-content, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-content { + border: none; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-bottom, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-bottom { + float: right; + padding-top: 0; +} + +.rtl .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-bottom, +.rtl .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-bottom { + float: left; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-total, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-total { + float: left; + border-left: 1px #eee solid; + border-right: 1px #eee solid; +} + +.rtl .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-total, +.rtl .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-total { + float: right; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-cart-dropdown-action, +.leo-fly-cart-slidebar.slidebar_bottom .leo-cart-dropdown-action { + float: left; + padding: 5px 20px 0; +} + +.rtl .leo-fly-cart-slidebar.slidebar_top .leo-cart-dropdown-action, +.rtl .leo-fly-cart-slidebar.slidebar_bottom .leo-cart-dropdown-action { + float: right; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-cart-dropdown-action .cart-dropdow-button, +.leo-fly-cart-slidebar.slidebar_bottom .leo-cart-dropdown-action .cart-dropdow-button { + display: block; + margin: 10px 0; + font-family: "Lato", sans-serif; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-list-item, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-list-item { + list-style: none; + padding: 0; + margin: 0; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-list-item-warpper, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-list-item-warpper { + float: left; +} + +.rtl .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-list-item-warpper, +.rtl .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-list-item-warpper { + float: right; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-list-item-warpper.active-scrollbar, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-list-item-warpper.active-scrollbar { + overflow-x: auto; +} + +.leo-fly-cart-slidebar.slidebar_top.active-scroll .leo-dropdown-bottom, +.leo-fly-cart-slidebar.slidebar_bottom.active-scroll .leo-dropdown-bottom { + width: auto; + top: 0; + right: 0; +} + +.rtl .leo-fly-cart-slidebar.slidebar_top.active-scroll .leo-dropdown-bottom, +.rtl .leo-fly-cart-slidebar.slidebar_bottom.active-scroll .leo-dropdown-bottom { + left: 0; + right: auto; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-additional, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-additional { + top: 0; + height: 100%; + border-left: 1px solid #fff; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-additional>div.label:first-child, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-additional>div.label:first-child { + border-top: none; +} + +.leo-fly-cart-slidebar.slidebar_top .view-leo-dropdown-additional, +.leo-fly-cart-slidebar.slidebar_bottom .view-leo-dropdown-additional { + -webkit-transform: rotate(-90deg); + -moz-transform: rotate(-90deg); + -ms-transform: rotate(-90deg); + -o-transform: rotate(-90deg); + transform: rotate(-90deg); +} + +.leo-fly-cart-slidebar.slidebar_left .leo-dropdown-cart-content, +.leo-fly-cart-slidebar.slidebar_right .leo-dropdown-cart-content { + border: none; +} + +.leo-fly-cart-slidebar .leo-fly-cart { + position: absolute; + visibility: hidden; + opacity: 0; + filter: alpha(opacity=0); + z-index: -1; + -webkit-transition: all 0.3s linear; + -o-transition: all 0.3s linear; + transition: all 0.3s linear; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-fly-cart { + top: 50%; + right: 50%; +} + +.rtl .leo-fly-cart-slidebar.slidebar_top .leo-fly-cart { + left: 50%; + right: auto; +} + +.leo-fly-cart-slidebar.slidebar_top.active .leo-fly-cart { + top: 100%; +} + +.leo-fly-cart-slidebar.slidebar_left .leo-fly-cart { + top: 10px; + left: 50%; +} + +.leo-fly-cart-slidebar.slidebar_left.active .leo-fly-cart { + left: 100%; +} + +.leo-fly-cart-slidebar.slidebar_right .leo-fly-cart { + top: 10px; + right: 50%; +} + +.leo-fly-cart-slidebar.slidebar_right.active .leo-fly-cart { + right: 100%; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-item.first .leo-dropdown-additional, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-item.first .leo-dropdown-additional { + left: 0; + right: auto; +} + +.rtl .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-item.first .leo-dropdown-additional, +.rtl .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-item.first .leo-dropdown-additional { + right: 0; + left: auto; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-item.first.show-additional .leo-dropdown-additional, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-item.first.show-additional .leo-dropdown-additional { + left: 100%; + right: auto; +} + +.rtl .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-item.first.show-additional .leo-dropdown-additional, +.rtl .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-item.first.show-additional .leo-dropdown-additional { + right: 100%; + left: auto; +} + +.leo-fly-cart-wapper { + position: relative; +} + +/***************CSS FOR FLY CART SLIDE BAR END **********************/ +/*******************DONGND CSS FOR FLY CART END*****************************/ +.product-line-info .value { + color: #000; +} + +.leo-fly-cart-slidebar .leo-dropdown-cart-subtotals, +.leo-fly-cart-slidebar .leo-dropdown-cart-total { + padding: 10px 20px; +} + +.leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-item.last, +.leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-item.last { + border-right: none; +} + +.leo-fly-cart { + z-index: 8; +} + +.leo-fly-cart .leo-dropdown-cart.dropup { + bottom: 100%; + top: auto; +} + +@media (max-width: 767px) and (min-width: 568px) { + + .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-list-item-warpper.active-scrollbar, + .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-list-item-warpper.active-scrollbar { + width: 70% !important; + } + + .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-bottom, + .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-bottom { + position: static; + width: 30% !important; + display: block; + } + + .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-total, + .leo-fly-cart-slidebar.slidebar_bottom .leo-cart-dropdown-action, + .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-total, + .leo-fly-cart-slidebar.slidebar_top .leo-cart-dropdown-action { + width: 100%; + } + + .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-total, + .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-total { + height: 115px; + } + + .leo-fly-cart-slidebar.slidebar_bottom .leo-cart-dropdown-action, + .leo-fly-cart-slidebar.slidebar_top .leo-cart-dropdown-action { + position: absolute; + left: 0; + right: 0; + top: 100%; + margin: auto; + padding-top: 0; + } + + .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-content, + .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-content { + margin-bottom: 70px; + } +} + +@media (max-width: 567px) { + + .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-list-item-warpper.active-scrollbar, + .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-list-item-warpper.active-scrollbar { + width: 100% !important; + float: none !important; + } + + .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-bottom, + .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-bottom { + position: static; + width: 100%; + float: none !important; + display: block; + } + + .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-total, + .leo-fly-cart-slidebar.slidebar_bottom .leo-cart-dropdown-action, + .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-total, + .leo-fly-cart-slidebar.slidebar_top .leo-cart-dropdown-action { + width: 100%; + } +} + +@media (max-width: 480px) { + + .leo-fly-cart-slidebar.slidebar_left .leo-dropdown-cart-content, + .leo-fly-cart-slidebar.slidebar_right .leo-dropdown-cart-content { + min-width: 250px; + } +} + +.rtl .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-item.show-additional .leo-dropdown-additional, +.rtl .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-item.show-additional .leo-dropdown-additional { + border-right: 1px solid #fff; + border-left: none; + left: auto; + right: 100%; +} + +.rtl .leo-dropdown-cart-item .leo-dropdown-additional { + left: auto; + right: 0; +} + +.rtl .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-item, +.rtl .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-item { + border-left: 1px solid #e5e5e5; + border-right: none; +} + +.rtl .leo-fly-cart-slidebar.slidebar_top .leo-dropdown-cart-item.last, +.rtl .leo-fly-cart-slidebar.slidebar_bottom .leo-dropdown-cart-item.last { + border-left: none; +} + +.leo-quicklogin-modal { + font-size: 13px; +} + +.leo-quicklogin-modal h3 { + font-size: 18px; + text-transform: capitalize; + margin: 0 0 20px; +} + +.leo-quicklogin-modal label, +.leo-quicklogin-modal .label { + font-size: 12px; +} + +.leo-quicklogin-modal .modal-footer { + padding: 0; + border-top: 0; +} + +@media (min-width: 576px) { + .leo-quicklogin-modal .modal-dialog { + max-width: 360px; + margin: 60px auto; + } +} + +.leo-quicklogin-modal .lql-form-content input { + border: 1px solid #e5e5e5; + background: #fff; + outline: 0; +} + +.leo-quicklogin-modal .lql-form-content input:before { + content: ""; + position: absolute; + top: 0; + left: 9px; + bottom: 0; + cursor: pointer; + z-index: 2; + width: 120px; +} + +.leo-quicklogin-modal .lql-form-content input:focus { + border-color: #999; +} + +.leo-quicklogin-modal .lql-form-content-element>div:first-child { + display: -webkit-box; + display: -moz-box; + display: box; + display: -webkit-flex; + display: -moz-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -moz-box-align: center; + box-align: center; + -webkit-align-items: center; + -moz-align-items: center; + -ms-align-items: center; + -o-align-items: center; + align-items: center; + -ms-flex-align: center; +} + +.leo-quicklogin-modal .lql-form-content-element .form-control-label { + padding: 0 5px; + margin: 0; +} + +.leo-quicklogin-modal .lql-social-login { + margin: 0; + padding: 20px 15px 10px; + border-top: 1px dashed #e5e5e5; +} + +.leo-quicklogin-modal .lql-social-login .btn { + font-size: 0; + margin: 0 2px 2px 0; + width: 40px; + height: 40px; + padding: 0; + text-align: center; + line-height: 40px; + position: relative; +} + +.rtl .leo-quicklogin-modal .lql-social-login .btn { + margin: 0 0 2px 2px; +} + +.leo-quicklogin-modal .lql-social-login .btn.facebook-login-bt { + background: #2d4486; +} + +.leo-quicklogin-modal .lql-social-login .btn.facebook-login-bt:hover { + background: #FFFFFF; + border: 1px solid #2d4486; + color: #2d4486; +} + +.leo-quicklogin-modal .lql-social-login .btn.google-login-bt { + background: #de332c; +} + +.leo-quicklogin-modal .lql-social-login .btn.google-login-bt:hover { + background: #FFFFFF; + border: 1px solid #de332c; + color: #de332c; +} + +.leo-quicklogin-modal .lql-social-login .btn.twitter-login-bt { + background: #33add6; +} + +.leo-quicklogin-modal .lql-social-login .btn.twitter-login-bt:hover { + background: #FFFFFF; + border: 1px solid #33add6; + color: #33add6; +} + +.leo-quicklogin-modal .lql-social-login .btn .fa { + font-size: 14px; + margin: auto !important; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + line-height: 40px; +} + +.ApQuicklogin>a { + height: 45px; + line-height: 45px; + display: inline-block; + font-size: 12px; + padding: 0 15px; + min-width: 40px; +} + +.ApQuicklogin>a i { + font-size: 24px; + vertical-align: -5px; +} + +/*# sourceMappingURL=front.css.map */ \ No newline at end of file diff --git a/themes/at_movic/modules/leofeature/views/css/index.php b/themes/at_movic/modules/leofeature/views/css/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leofeature/views/css/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leofeature/views/index.php b/themes/at_movic/modules/leofeature/views/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leofeature/views/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leofeature/views/templates/hook/index.php b/themes/at_movic/modules/leofeature/views/templates/hook/index.php new file mode 100644 index 00000000..8442d6e9 --- /dev/null +++ b/themes/at_movic/modules/leofeature/views/templates/hook/index.php @@ -0,0 +1,35 @@ + +* @copyright 2007-2015 PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/leofeature/views/templates/hook/leo_cart_button.tpl b/themes/at_movic/modules/leofeature/views/templates/hook/leo_cart_button.tpl new file mode 100644 index 00000000..a1cec5b4 --- /dev/null +++ b/themes/at_movic/modules/leofeature/views/templates/hook/leo_cart_button.tpl @@ -0,0 +1,28 @@ +{* +* @Module Name: Leo Feature +* @Website: leotheme.com.com - prestashop template provider +* @author Leotheme +* @copyright Leotheme +* @description: Leo feature for prestashop 1.7: ajax cart, review, compare, wishlist at product list +*} + +
    +
    + + + + + + + + + +
    +
    + diff --git a/themes/at_movic/modules/leofeature/views/templates/hook/leo_compare_button.tpl b/themes/at_movic/modules/leofeature/views/templates/hook/leo_compare_button.tpl new file mode 100644 index 00000000..da32ac33 --- /dev/null +++ b/themes/at_movic/modules/leofeature/views/templates/hook/leo_compare_button.tpl @@ -0,0 +1,16 @@ +{* +* @Module Name: Leo Feature +* @Website: leotheme.com.com - prestashop template provider +* @author Leotheme +* @copyright Leotheme +* @description: Leo feature for prestashop 1.7: ajax cart, review, compare, wishlist at product list +*} + \ No newline at end of file diff --git a/themes/at_movic/modules/leofeature/views/templates/index.php b/themes/at_movic/modules/leofeature/views/templates/index.php new file mode 100644 index 00000000..8442d6e9 --- /dev/null +++ b/themes/at_movic/modules/leofeature/views/templates/index.php @@ -0,0 +1,35 @@ + +* @copyright 2007-2015 PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/leoproductsearch/index.php b/themes/at_movic/modules/leoproductsearch/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leoproductsearch/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leoproductsearch/views/css/index.php b/themes/at_movic/modules/leoproductsearch/views/css/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leoproductsearch/views/css/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leoproductsearch/views/css/leosearch.css b/themes/at_movic/modules/leoproductsearch/views/css/leosearch.css new file mode 100644 index 00000000..40a7da66 --- /dev/null +++ b/themes/at_movic/modules/leoproductsearch/views/css/leosearch.css @@ -0,0 +1,317 @@ +/*************************************************** + Mixins Themes +/***************************************************/ +/* Mixin Normal*/ +/* Mixin Clear */ +/* Mixin Border */ +/*background RGBA +============================================*/ +/*************************************************** + Mixins RTL Themes +/***************************************************/ +/************************************ + Override Bootstrap +*************************************/ +/** + * Web Application Prefix Apply For Making Owner Styles + */ +/** + * Blocks Layout Selectors + */ +/***********************************************************************/ +/* block top search */ +#search_block_top { + position: absolute; + right: 26%; + top: 34px; } + +#search_block_top p { + padding: 0; } + +#search_block_top #search_query_top { + padding: 0 5px; + height: 23px; + width: 300px; + /* 310 */ + border: 1px solid #666; + border-right: 0 !important; + color: #666; + background: url(img/bg_search_input.png) repeat-x 0 0 #fff; + float: left; } + +#search_block_top .button { + border: none; + border-radius: 0; + color: #fff; + text-transform: uppercase; + background: url(img/bg_search_submit.png) repeat-x 0 0 #101010; + float: left; + height: 25px; } + +span.no-result { + padding: 10px; } + +form#searchbox { + padding-top: 5px; } + +form#searchbox label { + color: #333; + margin-bottom: 1px; } + +form#searchbox input#leo_search_query_block { + border: 1px solid #CCCCCC; + -webkit-border-radius: 3px !important; + -moz-border-radius: 3px !important; + border-radius: 3px !important; + height: 18px; + margin-top: 10px; } + +form#searchbox input#search_button { + padding: 1px 4px; } + +.list-cate-wrapper { + position: relative; } + +.list-cate { + width: 100%; + padding: 0px; } + +.cate-item { + display: block; + padding: 10px; } + +#leosearchtopbox a.cate-item.active, #leosearchtopbox a.cate-item:hover, #leosearchbox a.cate-item.active, #leosearchbox a.cate-item:hover { + background: #000; + color: #fff; } + +#dropdownListCate, #dropdownListCateTop { + cursor: pointer; + display: block; + padding: 5px 0px 5px 5px; } + +#leosearchtopbox #dropdownListCateTop:hover, #leosearchbox #dropdownListCate:hover { + color: #414141; } + +#leo_search_block_top { + margin: 10px 0; + border-radius: 23px; + background: #fff; } + #leo_search_block_top .title_block { + display: none; } + #leo_search_block_top form > label { + display: none; } + #leo_search_block_top label[for="search_query_block"] { + display: none; } + #leo_search_block_top .block_content { + position: relative; + display: flex; } + #leo_search_block_top .list-cate-wrapper { + width: 150px; + height: 45px; + display: none; } + #leo_search_block_top .list-cate-wrapper:before { + content: ""; + width: 1px; + height: 25px; + position: absolute; + top: 10px; + right: 0; } + .rtl #leo_search_block_top .list-cate-wrapper:before { + left: 0; + right: auto; } + #leo_search_block_top .list-cate-wrapper .select-title { + height: 45px; + overflow: hidden; + line-height: 45px; + text-transform: capitalize; + color: #999; } + #leo_search_block_top .list-cate-wrapper .select-title i { + position: absolute; + top: 14px; + right: 10px; } + .rtl #leo_search_block_top .list-cate-wrapper .select-title i { + left: 10px; + right: auto; } + #leo_search_block_top .list-cate-wrapper .dropdown-menu { + font-size: 13px; + max-height: 230px; + overflow: auto; + overflow-x: hidden; } + #leo_search_block_top #dropdownListCateTop { + padding: 0 25px; + position: relative; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + display: none !important; } + #leo_search_block_top #dropdownListCateTop i { + font-size: 14px; } + #leo_search_block_top .form-control { + background: #fff; + border: 0; + height: 45px; + line-height: 45px; + padding: 0 65px 0 20px; + border-radius: 23px; + outline: 0; + font-size: 13px; + box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1); + transition: all .3s; } + .rtl #leo_search_block_top .form-control { + padding: 0 20px 0 65px; } + #leo_search_block_top .form-control:focus { + box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2); } + @media (max-width: 767px) { + #leo_search_block_top .form-control { + font-size: 13px; + padding: 0 55px 0 20px; } + .rtl #leo_search_block_top .form-control { + padding: 0 20px 0 55px; } } + #leo_search_block_top .cssload-speeding-wheel { + position: absolute; + top: 13px; + right: 70px; } + .rtl #leo_search_block_top .cssload-speeding-wheel { + left: 70px; + right: auto; } + #leo_search_block_top .btn { + width: 60px; + height: 45px; + line-height: 45px; + border: 0; + padding: 0; + font-size: 16px; + text-align: center; + background: #f7f2f2; + color: #222; + position: absolute; + top: 0; + right: -2px; + -moz-border-radius: 0 23px 23px 0; + -webkit-border-radius: 0 23px 23px 0; + border-radius: 0 23px 23px 0; } + @media (max-width: 767px) { + #leo_search_block_top .btn { + width: 50px; } } + .rtl #leo_search_block_top .btn { + left: -2px; + right: auto; } + .rtl #leo_search_block_top .btn { + -moz-border-radius: 23px 0 0 23px; + -webkit-border-radius: 23px 0 0 23px; + border-radius: 23px 0 0 23px; } + #leo_search_block_top .btn:hover { + color: #000; } + #leo_search_block_top .btn i { + font-size: 0px; + width: 24px; + height: 24px; + line-height: 1; + text-align: center; + overflow: hidden; } + #leo_search_block_top .btn i:before { + content: "\e610"; + font-family: 'themify'; + font-size: 21px; } + +.leoproductsearch-result { + position: relative; + width: 100%; } + .leoproductsearch-result .ac_results { + border: 0; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + text-align: left; + margin-top: 2px; + max-height: 540px; + overflow: auto; } + .rtl .leoproductsearch-result .ac_results { + text-align: right; } + .leoproductsearch-result .ac_results li { + display: flex; + align-items: center; + padding: 2px; + cursor: pointer; } + .leoproductsearch-result .ac_results li .lps-result-img { + width: 40px; + min-width: 40px; + margin: 0 10px 0 0; } + .rtl .leoproductsearch-result .ac_results li .lps-result-img { + margin: 0 0 0 10px; } + .leoproductsearch-result .ac_results li .lps-result-title { + color: #333; + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-line-clamp: 1; + -webkit-box-orient: vertical; } + .leoproductsearch-result .ac_results .ac_over { + background: #000; } + .leoproductsearch-result .ac_results .ac_over .lps-result-title { + color: #fff; } + +.search-value-title { + padding: 5px 15px; + background: #f5f5f5; + color: #999; + text-transform: uppercase; + font-size: 12px; } + +.all-search-product a { + display: block; + padding: 10px 10px; + font-size: 10px; + text-transform: uppercase; } + +.leoproductsearch-result .ac_results { + padding-bottom: 0; } + +.search-in-cat li a { + display: block; + padding: 5px 10px; } + +.ac_results .search-in-cat ul { + padding: 8px 0; + font-size: 12px; } + +.ac_results .search-in-cat li { + display: block !important; + padding: 0 !important; } + +.leoproductsearch-result .ac_results .no-products { + padding: 10px 15px; } + +.leoproductsearch-result li { + font-size: inherit; } + +.ac_results .search-in-suggest ul { + padding: 8px 10px 6px; + font-size: 12px; } + +.ac_results .search-in-suggest li { + display: inline-block !important; + margin: 0 2px 2px 0; + vertical-align: top; } + +.search-in-suggest li a { + background: #f5f5f5; + display: inline-block; + padding: 5px 10px; + border-radius: 15px; } + +.search-in-suggest li a:hover { + background: #222; + color: #fff; } + +.search-in-suggest li a:first-letter { + text-transform: uppercase; } + +.leoproductsearch-result .search-in-product li { + padding: 5px 10px; } + +.leoproductsearch-result .search-in-product ul { + padding: 5px 0; } + +.leoproductsearch-result .ac_results li .lps-result-img { + width: 50px; } + +/*# sourceMappingURL=leosearch.css.map */ diff --git a/themes/at_movic/modules/leoproductsearch/views/index.php b/themes/at_movic/modules/leoproductsearch/views/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leoproductsearch/views/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leoslideshow/index.php b/themes/at_movic/modules/leoslideshow/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leoslideshow/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leoslideshow/views/css/iView/index.php b/themes/at_movic/modules/leoslideshow/views/css/iView/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leoslideshow/views/css/iView/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leoslideshow/views/css/iView/iview.css b/themes/at_movic/modules/leoslideshow/views/css/iView/iview.css new file mode 100644 index 00000000..1642976a --- /dev/null +++ b/themes/at_movic/modules/leoslideshow/views/css/iView/iview.css @@ -0,0 +1,420 @@ +/*************************************************** + Mixins Themes +/***************************************************/ +/* Mixin Normal*/ +/* Mixin Clear */ +/* Mixin Border */ +/*background RGBA +============================================*/ +/*************************************************** + Mixins RTL Themes +/***************************************************/ +/************************************ + Override Bootstrap +*************************************/ +/** + * Web Application Prefix Apply For Making Owner Styles + */ +/** + * Blocks Layout Selectors + */ +/***********************************************************************/ +/*Preview Admin */ +#module-leoslideshow-preview .container { + width: 100%; +} + +#module-leoslideshow-preview .content-only { + overflow: hidden; +} + +#module-leoslideshow-preview #leo-paneltool { + display: none; +} + +/* The slider */ +.iviewSlider { + overflow: hidden; +} + +/* The timer in the Slider */ +.iview-timer { + position: absolute; + z-index: 100; + cursor: pointer; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; +} + +.iview-timer div { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; +} + +/* The Preloader in the Slider */ +.iview-preloader { + position: absolute; + z-index: 9; + border: #000000 1px solid; + padding: 1px; + width: 100px; + height: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; +} + +.iview-preloader div { + background: #000000; + float: left; + width: 0px; + height: 3px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; +} + +/* The strips and boxes in the Slider */ +.iview-strip, +.iview-block { + display: block; + position: absolute; + z-index: 5; +} + +/* Direction nav styles (e.g. Next & Prev) */ +.iview-directionNav a { + position: absolute; + top: 50%; + z-index: 1; + cursor: pointer; + margin-top: -30px; + color: transparent !important; + text-align: center; + font-size: 0px; + width: 60px; + height: 60px; + line-height: 60px; + background: rgba(0, 0, 0, 0.2); + transition: all 0.4s; + box-shadow: none; + border: 0; +} + +@media (max-width: 767px) { + .iview-directionNav a { + width: 30px; + height: 30px; + line-height: 30px; + margin-top: -15px; + } +} + +.iview-directionNav a:before { + content: ""; + font-family: "FontAwesome"; + font-size: 30px; + color: #fff; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + -webkit-transition: all 0.4s; + -o-transition: all 0.4s; + transition: all 0.4s; +} + +.iview-directionNav a:hover { + background: rgba(0, 0, 0, 0.5); +} + +.iview-directionNav a:hover:before { + color: #fff; +} + +.iview-directionNav a.iview-prevNav { + left: -50px; +} + +.iview-directionNav a.iview-prevNav:before { + content: "\f104"; +} + +.iview-directionNav a.iview-nextNav { + right: -50px; +} + +.iview-directionNav a.iview-nextNav:before { + content: "\f105"; +} + +.iview .iview-directionNav a.iview-prevNav { + left: 40px; + transform: translateX(-40px); + opacity: 0; +} + +@media (max-width: 767px) { + .iview .iview-directionNav a.iview-prevNav { + left: 19px; + } +} + +.iview .iview-directionNav a.iview-nextNav { + right: 40px; + transform: translateX(40px); + opacity: 0; +} + +@media (max-width: 767px) { + .iview .iview-directionNav a.iview-nextNav { + right: 19px; + } +} + +.ApSlideShow:hover .iview-directionNav a { + transform: translateX(0); + opacity: 1; +} + +/* Control nav styles (e.g. 1,2,3...) */ +.iview-controlNav { + text-align: center; +} + +.iview-controlNav div.iview-items { + z-index: 5; + position: absolute; + text-align: center; + display: inline-block; + vertical-align: top; + width: auto; + bottom: 30px; +} + +@media (max-width: 991px) { + .iview-controlNav div.iview-items { + bottom: 10px; + } +} + +.iview-controlNav div.iview-items ul { + margin-bottom: 0px; +} + +.iview-controlNav div.iview-items ul li { + display: inline-block; + position: relative; + height: 10px; + padding: 0px; +} + +.iview-controlNav div.iview-items ul li a.iview-control { + text-indent: -9999px; + display: inline-block; + cursor: pointer; + margin: 0px 5px; + width: 12px; + height: 12px; + border-radius: 6px; + vertical-align: bottom; + transition: all .4s; + border: 3px solid rgba(255, 255, 255, 0.5); + background: none; +} + +.iview-controlNav div.iview-items ul li a.iview-control:hover { + border-color: #fff; +} + +.iview-controlNav div.iview-items ul li a.iview-control.active { + background: #fff; + border-color: #fff; +} + +.iview-controlNav div.iview-items.customHtmlBullet { + padding: 0px; + height: 96px; + width: 100%; + background: #FFF; + position: absolute; + left: 0; + bottom: 0; + text-align: left; + z-index: 3; +} + +.iview-controlNav div.iview-items.customHtmlBullet ul li { + width: 33%; + height: 96px; + float: left; + padding: 0; +} + +.iview-controlNav div.iview-items.customHtmlBullet a.iview-control { + padding: 20px 25px 20px 16%; + float: left; + width: 100%; + height: 100%; + color: #333; + background: none; + text-transform: uppercase; + border-left: 1px solid #DDD; + -webkit-border-radius: 0; + -moz-border-radius: 0; + -ms-border-radius: 0; + -o-border-radius: 0; + border-radius: 0; + text-indent: inherit; + margin: 0; +} + +.iview-controlNav div.iview-items.customHtmlBullet a.iview-control.active, +.iview-controlNav div.iview-items.customHtmlBullet a.iview-control:hover { + background: #fafafa; + cursor: pointer; +} + +.iview-controlNav div.iview-items.customHtmlBullet a.iview-control.active:after, +.iview-controlNav div.iview-items.customHtmlBullet a.iview-control:hover:after { + font-family: "FontAwesome"; + content: "\f0d8"; + position: absolute; + top: -33px; + right: auto; + left: 50%; + margin-left: -10px; + font-size: 40px; + color: #fafafa; +} + +.iview-controlNav div.iview-items.customHtmlBullet a.iview-control.active span, +.iview-controlNav div.iview-items.customHtmlBullet a.iview-control:hover span { + background-color: #000; + color: #FFFFFF; +} + +.iview-controlNav div.iview-items.customHtmlBullet a.iview-control h5 { + color: #333; + font-size: 13px; + font-weight: 400; + font-family: "Lato", sans-serif; + line-height: 20px; +} + +.iview-controlNav div.iview-items.customHtmlBullet a.iview-control span { + -webkit-border-radius: 100%; + -moz-border-radius: 100%; + -ms-border-radius: 100%; + -o-border-radius: 100%; + border-radius: 100%; + -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16); + -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16); + -o-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16); + -ms-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16); + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16); + background: #eaeaea; + width: 56px; + height: 56px; + line-height: 56px; + color: #333; + display: inline-block; + text-align: center; + font-family: "Lato", sans-serif; + font-size: 18px; + margin: 0 18px 0 0; + float: left; +} + +.iview-controlNav div.iview-items.customHtmlBullet a.iview-control p { + margin: 0; + color: #999; +} + +.iview-controlNav.iview-thumbnail div.iview-items { + bottom: 0; +} + +.iview-controlNav.iview-thumbnail div.iview-items ul li { + width: 200px; + height: auto; + overflow: hidden; + vertical-align: bottom; +} + +.iview-controlNav.iview-thumbnail div.iview-items ul li a { + width: 100%; + height: auto; + margin: 0; + text-indent: inherit; + background: transparent; + -webkit-transition: all 0.3s ease-out; + -o-transition: all 0.3s ease-out; + transition: all 0.3s ease-out; +} + +.iview-controlNav.iview-thumbnail div.iview-items ul li a.active, +.iview-controlNav.iview-thumbnail div.iview-items ul li a:hover { + -webkit-transform: scale(1.1); + -moz-transform: scale(1.1); + -ms-transform: scale(1.1); + -o-transform: scale(1.1); + transform: scale(1.1); +} + +.iview-controlNav.iview-thumbnail div.iview-items ul li a img { + max-width: 100%; + height: auto; +} + +/* The video show in the Slider */ +.iview-video-show { + background: #000; + position: absolute; + width: 100%; + height: 100%; + z-index: 101; +} + +.iview-video-show .iview-video-container { + position: relative; + width: 100%; + height: 100%; +} + +.iview-video-show .iview-video-container a.iview-video-close { + position: absolute; + right: 10px; + top: 10px; + background: #222; + color: #FFFFFF; + text-align: center; + line-height: 29px; + font-size: 22px; + font-weight: 600; + overflow: hidden; + width: 20px; + height: 20px; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + -ms-border-radius: 15px; + -o-border-radius: 15px; + border-radius: 15px; +} + +.iview-video-show .iview-video-container a.iview-video-close:hover { + background: #444; +} + +/*# sourceMappingURL=iview.css.map */ \ No newline at end of file diff --git a/themes/at_movic/modules/leoslideshow/views/css/iView/skin_4_responsive/index.php b/themes/at_movic/modules/leoslideshow/views/css/iView/skin_4_responsive/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leoslideshow/views/css/iView/skin_4_responsive/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leoslideshow/views/css/iView/skin_4_responsive/style.css b/themes/at_movic/modules/leoslideshow/views/css/iView/skin_4_responsive/style.css new file mode 100644 index 00000000..40fa3c08 --- /dev/null +++ b/themes/at_movic/modules/leoslideshow/views/css/iView/skin_4_responsive/style.css @@ -0,0 +1,76 @@ +/*************************************************** + Mixins Themes +/***************************************************/ +/* Mixin Normal*/ +/* Mixin Clear */ +/* Mixin Border */ +/*background RGBA +============================================*/ +/*************************************************** + Mixins RTL Themes +/***************************************************/ +/************************************ + Override Bootstrap +*************************************/ +/** + * Web Application Prefix Apply For Making Owner Styles + */ +/** + * Blocks Layout Selectors + */ +/***********************************************************************/ +#iview { + display: block; + min-width: 300px; + position: relative; + overflow: hidden; } + +#iview .iviewSlider { + display: block; + overflow: hidden; + background: transparent; } + +.iview-preloader { + border: #666 1px solid; + width: 150px div; + width-background: #666; } + +.iview-timer { + border-radius: 10px; + position: absolute; } + .iview-timer div { + border-radius: 10px; } + +.iview .iview-tooltip { + display: none; + position: absolute; + background: url("../../../img/iView/tooltip.png") no-repeat; } + .iview .iview-tooltip div.holder { + display: block; + width: 124px; + height: 84px; + overflow: hidden; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; } + .iview .iview-tooltip div.holder div.container { + display: block; + width: 4000px; } + .iview .iview-tooltip div.holder div.container div { + float: left; + display: block; + overflow: hidden; + width: 124px; + height: 84px; + left: -50%; + text-align: center; } + .rtl .iview .iview-tooltip div.holder div.container div { + float: right; } + .iview .iview-tooltip div.holder div.container div img { + height: 84px; + margin: 0 auto; + max-width: 100%; } + +/*# sourceMappingURL=style.css.map */ diff --git a/themes/at_movic/modules/leoslideshow/views/css/index.php b/themes/at_movic/modules/leoslideshow/views/css/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leoslideshow/views/css/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leoslideshow/views/css/typo/index.php b/themes/at_movic/modules/leoslideshow/views/css/typo/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leoslideshow/views/css/typo/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/leoslideshow/views/css/typo/typo.css b/themes/at_movic/modules/leoslideshow/views/css/typo/typo.css new file mode 100644 index 00000000..039514b7 --- /dev/null +++ b/themes/at_movic/modules/leoslideshow/views/css/typo/typo.css @@ -0,0 +1,939 @@ +/*----------------------------------------------------------------------------- + + - Revolution Slider 1.5.3 - + + Screen Stylesheet + +version: 2.1 +date: 09/18/11 +last update: 06.12.2012 +author: themepunch +email: info@themepunch.com +website: http://www.themepunch.com +-----------------------------------------------------------------------------*/ +/*----------------------------------------------------------------------------- + + - Revolution Slider 2.0 Captions - + + Screen Stylesheet + +version: 1.4.5 +date: 09/18/11 +last update: 06.12.2012 +author: themepunch +email: info@themepunch.com +website: http://www.themepunch.com +-----------------------------------------------------------------------------*/ +/*************************************************** + Mixins Themes +/***************************************************/ +/* Mixin Normal*/ +/* Mixin Clear */ +/* Mixin Border */ +/*background RGBA +============================================*/ +/*************************************************** + Mixins RTL Themes +/***************************************************/ +/************************************ + Override Bootstrap +*************************************/ +/** + * Web Application Prefix Apply For Making Owner Styles + */ +/** + * Blocks Layout Selectors + */ +/***********************************************************************/ +.layerslider-wrapper { + margin: 0 auto; + position: relative; + z-index: 9; } + +.rev_slider { + position: relative; + overflow: hidden; + height: 300px; + width: 940px; + z-index: 9; } + +.bannercontainer { + position: relative; + margin: 0px auto; + overflow: hidden; + /* BUTTONS */ + /* BUTTON COLORS */ + /* SET THE ANIMATION EVEN MORE SMOOTHER ON ANDROID */ + /* SOME CAPTION MODIFICATION AT START */ + /* IE8 HACKS */ + /* SHADOWS */ + /* FULLSCREEN VIDEO */ + /* NAVIGATION */ + /** BULLETS **/ + /** SQUARE BULLETS **/ + /** SQUARE BULLETS **/ + /** navbar NAVIGATION VERSION **/ + /** navbar NAVIGATION VERSION **/ + /* TP ARROWS */ + /* TP THUMBS */ + /* TP BANNER TIMER */ + /* RESPONSIVE SETTINGS */ + /* BASIC SETTINGS FOR THE BANNER */ + /* CAPTION SLIDELINK **/ } + .bannercontainer .banner-fullwidth { + width: 100% !important; + max-height: 500px !important; } + .bannercontainer .fullwidthbanner { + max-height: 500px !important; + overflow: hidden !important; + padding: 0; + position: relative; } + .bannercontainer.banner-fullwidth { + width: 100% !important; } + .bannercontainer div.caption { + cursor: pointer; } + .bannercontainer .tp-hide-revslider, .bannercontainer .tp-caption.tp-hidden-caption { + visibility: hidden !important; + display: none !important; } + .bannercontainer .tp-caption { + z-index: 1; + position: absolute; + text-shadow: none; + border: none; + font-weight: 400; + margin: 0; + white-space: nowrap; } + .bannercontainer .tp-caption.border-top { + border-top: 1px solid; } + .bannercontainer .tp-caption.border-bottom { + border-bottom: 1px solid; } + .bannercontainer .tp-caption.lh-10 { + line-height: 1; } + .bannercontainer .tp-caption.lh-11 { + line-height: 1.1; } + .bannercontainer .tp-caption.lh-12 { + line-height: 1.2; } + .bannercontainer .tp-caption.lh-13 { + line-height: 1.3; } + .bannercontainer .tp-caption.lh-14 { + line-height: 1.4; } + .bannercontainer .tp-caption.lh-15 { + line-height: 1.5; } + .bannercontainer .tp-caption.lh-16 { + line-height: 1.6; } + .bannercontainer .tp-caption.lh-17 { + line-height: 1.7; } + .bannercontainer .tp-caption.lh-18 { + line-height: 1.8; } + .bannercontainer .tp-caption.lh-19 { + line-height: 1.9; } + .bannercontainer .tp-caption.lh-20 { + line-height: 2; } + .bannercontainer .tp-caption.fw-300 { + font-weight: 300; } + .bannercontainer .tp-caption.fw-400 { + font-weight: 400; } + .bannercontainer .tp-caption.fw-500 { + font-weight: 500; } + .bannercontainer .tp-caption.fw-600 { + font-weight: 600; } + .bannercontainer .tp-caption.fw-700 { + font-weight: 700; } + .bannercontainer .tp-caption.fw-800 { + font-weight: 800; } + .bannercontainer .tp-caption.fw-900 { + font-weight: 900; } + .bannercontainer .tp-caption.italic { + font-style: italic; } + .bannercontainer .tp-caption.ls-1 { + letter-spacing: 0.1em; } + .bannercontainer .tp-caption.ls-2 { + letter-spacing: 0.2em; } + .bannercontainer .tp-caption.ls-3 { + letter-spacing: 0.3em; } + .bannercontainer .tp-caption.ls-4 { + letter-spacing: 0.41em; } + .bannercontainer .tp-caption.ls-5 { + letter-spacing: 0.5em; } + .bannercontainer .tp-caption.ls-6 { + letter-spacing: 0.6em; } + .bannercontainer .tp-caption.ls-7 { + letter-spacing: 0.7em; } + .bannercontainer .tp-caption.ls-8 { + letter-spacing: 0.8em; } + .bannercontainer .tp-caption.ls-9 { + letter-spacing: 0.9em; } + .bannercontainer .tp-caption.center { + text-align: center; + width: 100% !important; } + .bannercontainer .tp-caption.center.btn, .bannercontainer .tp-caption.center.btn2, .bannercontainer .tp-caption.center.btn3 { + pointer-events: none; } + .bannercontainer .tp-caption.center.btn .caption-layer, + .bannercontainer .tp-caption.center.btn .caption-contain, .bannercontainer .tp-caption.center.btn2 .caption-layer, + .bannercontainer .tp-caption.center.btn2 .caption-contain, .bannercontainer .tp-caption.center.btn3 .caption-layer, + .bannercontainer .tp-caption.center.btn3 .caption-contain { + display: inline-block; + pointer-events: auto; } + .bannercontainer .tp-caption.width-20 { + width: 20% !important; } + .bannercontainer .tp-caption.width-30 { + width: 30% !important; } + .bannercontainer .tp-caption.width-40 { + width: 40% !important; } + .bannercontainer .tp-caption.width-50 { + width: 50% !important; } + .bannercontainer .tp-caption.width-60 { + width: 60% !important; } + .bannercontainer .tp-caption.width-70 { + width: 70% !important; } + .bannercontainer .tp-caption.width-80 { + width: 80% !important; } + .bannercontainer .tp-caption.width-90 { + width: 90% !important; } + .bannercontainer .tp-caption.width-100 { + width: 100% !important; } + .bannercontainer .tp-caption.slide-video { + height: 100% !important; } + .bannercontainer .tp-caption.slide-video .caption-layer, + .bannercontainer .tp-caption.slide-video .caption-contain { + height: 100% !important; } + .bannercontainer .tp-caption.slide-video .caption-layer iframe, + .bannercontainer .tp-caption.slide-video .caption-contain iframe { + width: 100%; + height: 100%; } + .bannercontainer .tp-caption.btn { + background: none !important; + padding: 0; + border: 0 !important; } + .bannercontainer .tp-caption.btn .caption-layer, + .bannercontainer .tp-caption.btn .caption-contain { + height: 45px; + line-height: 45px; + font-size: 14px; + font-weight: 600; + padding: 0 40px; + color: #fff; + background: #282828; + border: 0; } + .bannercontainer .tp-caption.btn .caption-layer:hover, + .bannercontainer .tp-caption.btn .caption-contain:hover { + background: #666; + color: #fff; } + .bannercontainer .tp-caption.btn2 .caption-layer, + .bannercontainer .tp-caption.btn2 .caption-contain { + height: 50px; + line-height: 50px; + padding: 0 50px; + color: #fff; + border: 1px solid; } + .bannercontainer .tp-caption.btn2 .caption-layer:hover, + .bannercontainer .tp-caption.btn2 .caption-contain:hover { + background: rgba(255, 255, 255, 0.5); + color: #000; + border-color: rgba(255, 255, 255, 0.5); } + .bannercontainer .tp-caption.btn3 .caption-layer, + .bannercontainer .tp-caption.btn3 .caption-contain { + display: inline-block; + position: relative; + padding: 10px 10px 10px 70px; } + .bannercontainer .tp-caption.btn3 .caption-layer:before, + .bannercontainer .tp-caption.btn3 .caption-contain:before { + content: ""; + position: absolute; + border-top: 2px solid; + width: 50px; + left: 0; + top: 46%; + transition: all .4s; } + .bannercontainer .tp-caption.btn3 .caption-layer:hover:before, + .bannercontainer .tp-caption.btn3 .caption-contain:hover:before { + left: 5px; } + .bannercontainer .tp-caption.big_white { + color: #FFF; + font-weight: 700; + font-size: 18px; + line-height: 18px; + letter-spacing: 5px; } + .bannercontainer .tp-caption.big_orange { + color: #fff; + font-weight: 400; + font-size: 13px; + line-height: 13px; + padding: 5px 12px; + background-color: #e0525c; } + .bannercontainer .tp-caption.big_black { + color: #000; + font-size: 50px; + line-height: 50px; + font-weight: 700; } + .bannercontainer .tp-caption.medium_grey { + color: #555; + font-size: 14px; + line-height: 25px; + text-transform: none; } + .bannercontainer .tp-caption.slide_label { + font-size: 14px; + line-height: 30px; + padding: 0 15px; + text-transform: uppercase; + font-weight: normal; + background-color: #d8a17b; + color: #fff; } + .bannercontainer .tp-caption.small_text { + color: #000; + font-weight: 400; + font-size: 14px; + line-height: 20px; + letter-spacing: 11px; } + .bannercontainer .tp-caption.medium_text { + color: #fff; + font-weight: 400; + font-size: 36px; + line-height: 30px; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.75); } + .bannercontainer .tp-caption.large_text { + color: #fff; + font-weight: normal; + font-size: 16px; + line-height: 16px; } + .bannercontainer .tp-caption.large_text:before { + content: ""; + position: absolute; + left: 0; + width: 50px; + height: 2px; + bottom: 40px; + background-color: #FFFFFF; } + .bannercontainer .tp-caption.large_black_text { + color: #000; + font-weight: 400; + font-size: 24px; + line-height: 24px; + text-transform: none; } + .bannercontainer .tp-caption.very_large_text { + color: #fff; + font-weight: 600; + font-size: 60px; + line-height: 60px; + text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25); + letter-spacing: 0.2em; } + .bannercontainer .tp-caption.very_large_black_text { + color: #000; + font-size: 60px; + line-height: 60px; } + .bannercontainer .tp-caption.bold_red_text { + color: #d31e00; + font-weight: 400; + font-size: 24px; + line-height: 20px; } + .bannercontainer .tp-caption.bold_brown_text { + color: #a04606; + font-weight: 800; + font-size: 20px; + line-height: 20px; } + .bannercontainer .tp-caption.bold_green_text { + color: #5b9830; + font-weight: 800; + font-size: 20px; + line-height: 20px; } + .bannercontainer .tp-caption.very_big_white { + color: #FFFFFF; + font-size: 65px; + font-weight: 400; + text-transform: none; + line-height: 65px; } + .bannercontainer .tp-caption.very_big_black { + color: #000; + font-weight: 700; + font-size: 84px; + line-height: 84px; } + .bannercontainer .tp-caption.cus_black { + color: #232323; + font-weight: 700; + font-size: 54px; + line-height: 54px; } + .bannercontainer .tp-caption.cus_color { + color: #fff; + font-weight: 400; + font-size: 16px; + line-height: 25px; + text-transform: none; + width: 570px; + text-align: center; + white-space: inherit; } + .bannercontainer .tp-caption.boxshadow { + -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); + -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); + -o-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); + -ms-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); + box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); } + .bannercontainer .tp-caption.black { + color: #000; + font-weight: 700; + font-size: 14px; + line-height: 14px; + letter-spacing: 5px; } + .bannercontainer .tp-caption.black:before { + background: #000; + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); + content: ""; + height: 218px; + left: 37px; + position: absolute; + top: -66px; + width: 11px; + z-index: -1; } + .bannercontainer .tp-caption.white { + font-size: 14px; + color: #FFFFFF; + letter-spacing: 1px; + font-weight: 400; + text-transform: none; + line-height: 30px; } + .bannercontainer .tp-caption.noshadow { + text-shadow: none; } + .bannercontainer .tp-caption.btn-shopnow { + text-align: center; + line-height: 24px; + min-width: 220px; + min-height: 44px; } + .bannercontainer .tp-caption.btn-shopnow .fa { + margin-right: 5px; } + .bannercontainer .tp-caption.fullscreenvideo { + left: 0px; + top: 0px; + position: absolute; + width: 100%; + height: 100%; } + .bannercontainer .tp-caption.fullscreenvideo iframe { + width: 100% !important; + height: 100% !important; } + .bannercontainer .tp-caption .caption-layer, + .bannercontainer .tp-caption .caption-contain { + width: auto !important; } + .bannercontainer .tp_inner_padding { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + max-height: none !important; } + .bannercontainer .tp-button { + padding: 0 15px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + height: 35px; + cursor: pointer; + color: #fff !important; + font-size: 15px; + line-height: 35px !important; + letter-spacing: -1px; + text-transform: uppercase; } + .bannercontainer .button.big { + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6); + font-weight: 600; + padding: 9px 20px; + font-size: 19px; + line-height: 57px !important; } + .bannercontainer .purchase:hover, .bannercontainer .button:hover, .bannercontainer .button.big:hover { + background-position: bottom, 15px 11px; } + @media only screen and (min-width: 480px) and (max-width: 767px) { + .bannercontainer .button { + padding: 4px 8px 3px; + line-height: 25px !important; + font-size: 11px !important; + font-weight: normal; } + .bannercontainer a.button { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + @media only screen and (min-width: 0px) and (max-width: 479px) { + .bannercontainer .button { + padding: 2px 5px 2px; + line-height: 20px !important; + font-size: 10px !important; } + .bannercontainer a.button { + -webkit-transition: none; + -o-transition: none; + transition: none; } } + .bannercontainer .button.green, .bannercontainer .button:hover.green, .bannercontainer .purchase.green, .bannercontainer .purchase:hover.green { + background-color: #21a117; + -moz-box-shadow: 0px 3px 0px 0px #104d0b; + -webkit-box-shadow: 0px 3px 0px 0px #104d0b; + -o-box-shadow: 0px 3px 0px 0px #104d0b; + -ms-box-shadow: 0px 3px 0px 0px #104d0b; + box-shadow: 0px 3px 0px 0px #104d0b; } + .bannercontainer .button.blue, .bannercontainer .button:hover.blue, .bannercontainer .purchase.blue, .bannercontainer .purchase:hover.blue { + background-color: #1d78cb; + -moz-box-shadow: 0px 3px 0px 0px #0f3e68; + -webkit-box-shadow: 0px 3px 0px 0px #0f3e68; + -o-box-shadow: 0px 3px 0px 0px #0f3e68; + -ms-box-shadow: 0px 3px 0px 0px #0f3e68; + box-shadow: 0px 3px 0px 0px #0f3e68; } + .bannercontainer .button.red, .bannercontainer .button:hover.red, .bannercontainer .purchase.red, .bannercontainer .purchase:hover.red { + background-color: #cb1d1d; + -moz-box-shadow: 0px 3px 0px 0px #7c1212; + -webkit-box-shadow: 0px 3px 0px 0px #7c1212; + -o-box-shadow: 0px 3px 0px 0px #7c1212; + -ms-box-shadow: 0px 3px 0px 0px #7c1212; + box-shadow: 0px 3px 0px 0px #7c1212; } + .bannercontainer .button.orange, .bannercontainer .button:hover.orange, .bannercontainer .purchase.orange, .bannercontainer .purchase:hover.orange { + background-color: #ff7700; + -moz-box-shadow: 0px 3px 0px 0px #a34c00; + -webkit-box-shadow: 0px 3px 0px 0px #a34c00; + -o-box-shadow: 0px 3px 0px 0px #a34c00; + -ms-box-shadow: 0px 3px 0px 0px #a34c00; + box-shadow: 0px 3px 0px 0px #a34c00; } + .bannercontainer .button.darkgrey, .bannercontainer .button.grey, .bannercontainer .button:hover.darkgrey, .bannercontainer .button:hover.grey, .bannercontainer .purchase.darkgrey, .bannercontainer .purchase:hover.darkgrey { + background-color: #555; + -moz-box-shadow: 0px 3px 0px 0px #222; + -webkit-box-shadow: 0px 3px 0px 0px #222; + -o-box-shadow: 0px 3px 0px 0px #222; + -ms-box-shadow: 0px 3px 0px 0px #222; + box-shadow: 0px 3px 0px 0px #222; } + .bannercontainer .button.lightgrey, .bannercontainer .button:hover.lightgrey, .bannercontainer .purchase.lightgrey, .bannercontainer .purchase:hover.lightgrey { + background-color: #888; + -moz-box-shadow: 0px 3px 0px 0px #555; + -webkit-box-shadow: 0px 3px 0px 0px #555; + -o-box-shadow: 0px 3px 0px 0px #555; + -ms-box-shadow: 0px 3px 0px 0px #555; + box-shadow: 0px 3px 0px 0px #555; } + .bannercontainer .tp-simpleresponsive .slotholder *, .bannercontainer .tp-simpleresponsive img { + -webkit-transform: translateZ(0); + -webkit-backface-visibility: hidden; + -webkit-perspective: 1000; } + .bannercontainer .tp-simpleresponsive .caption, .bannercontainer .tp-simpleresponsive .tp-caption { + opacity: 0; + filter: alpha(opacity=0); + position: absolute; + visibility: hidden; } + .bannercontainer .tp-simpleresponsive img { + max-width: none; } + .bannercontainer .noFilterClass { + filter: none !important; } + .bannercontainer .tp-bannershadow { + margin-left: auto; + margin-right: auto; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } + .bannercontainer .tp-bannershadow.tp-shadow1 { + background: url(../assets/shadow1.png) no-repeat; + background-size: 100%; + width: 890px; + height: 60px; + bottom: -30px; } + .bannercontainer .tp-bannershadow.tp-shadow2 { + background: url(../assets/shadow2.png) no-repeat; + background-size: 100%; + width: 890px; + height: 110px; + bottom: -60px; } + .bannercontainer .tp-bannershadow.tp-shadow3 { + background: url(../assets/shadow3.png) no-repeat; + background-size: 100%; + width: 890px; + height: 60px; + bottom: -60px; } + .bannercontainer .caption.fullscreenvideo { + left: 0px; + top: 0px; + position: absolute; + width: 100%; + height: 100%; } + .bannercontainer .caption iframe { + width: 100% !important; + height: 100% !important; } + .bannercontainer .tpclear { + clear: both; } + .bannercontainer .tp-bullets { + z-index: 25; + position: absolute; + opacity: 1; + filter: alpha(opacity=100); + -webkit-transition: opacity 0.2s ease-out; + -o-transition: opacity 0.2s ease-out; + transition: opacity 0.2s ease-out; } + .bannercontainer .tp-bullets.hidebullets { + opacity: 0; + filter: alpha(opacity=0); } + .bannercontainer .tp-bullets.simplebullets.navbar { + border: 1px solid #666; + border-bottom: 1px solid #444; + background: url(../assets/boxed_bgtile.png); + height: 40px; + padding: 0px 10px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; } + .bannercontainer .tp-bullets.simplebullets.navbar-old { + background: url(../assets/navigdots_bgtile.png); + height: 35px; + padding: 0px 10px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; } + .bannercontainer .tp-bullets.simplebullets.round .bullet { + cursor: pointer; + position: relative; + background: url(../assets/bullet.png) no-Repeat top left; + width: 20px; + height: 20px; + margin-right: 0px; + float: left; + margin-top: -10px; + margin-left: 3px; } + .bannercontainer .tp-bullets.simplebullets.round .bullet.last { + margin-right: 3px; } + .bannercontainer .tp-bullets.simplebullets.round-old .bullet { + cursor: pointer; + position: relative; + background: url(../assets/bullets.png) no-Repeat bottom left; + width: 23px; + height: 23px; + margin-right: 0px; + float: left; + margin-top: -12px; } + .bannercontainer .tp-bullets.simplebullets.round-old .bullet.last { + margin-right: 0px; } + .bannercontainer .tp-bullets.simplebullets.square .bullet { + cursor: pointer; + position: relative; + background: url(../assets/bullets2.png) no-Repeat bottom left; + width: 19px; + height: 19px; + margin-right: 0px; + float: left; + margin-top: -10px; } + .bannercontainer .tp-bullets.simplebullets.square .bullet.last { + margin-right: 0px; } + .bannercontainer .tp-bullets.simplebullets.square-old .bullet { + cursor: pointer; + position: relative; + background: url(../assets/bullets2.png) no-Repeat bottom left; + width: 19px; + height: 19px; + margin-right: 0px; + float: left; + margin-top: -10px; } + .bannercontainer .tp-bullets.simplebullets.square-old .bullet.last { + margin-right: 0px; } + .bannercontainer .tp-bullets.simplebullets.navbar .bullet { + cursor: pointer; + position: relative; + background: url(../assets/bullet_boxed.png) no-Repeat top left; + width: 18px; + height: 19px; + margin-right: 5px; + float: left; + margin-top: 10px; } + .bannercontainer .tp-bullets.simplebullets.navbar .bullet.first { + margin-left: 0px !important; } + .bannercontainer .tp-bullets.simplebullets.navbar .bullet.last { + margin-right: 0px !important; } + .bannercontainer .tp-bullets.simplebullets.navbar-old .bullet { + cursor: pointer; + position: relative; + background: url(../assets/navigdots.png) no-Repeat bottom left; + width: 15px; + height: 15px; + margin-left: 5px !important; + margin-right: 5px !important; + float: left; + margin-top: 10px; } + .bannercontainer .tp-bullets.simplebullets.navbar-old .bullet.first { + margin-left: 0px !important; } + .bannercontainer .tp-bullets.simplebullets.navbar-old .bullet.last { + margin-right: 0px !important; } + .bannercontainer .tp-bullets.simplebullets .bullet:hover, .bannercontainer .tp-bullets.simplebullets .bullet.selected { + background-position: top left; } + .bannercontainer .tp-bullets.simplebullets.round .bullet:hover, .bannercontainer .tp-bullets.simplebullets.round .bullet.selected, .bannercontainer .tp-bullets.simplebullets.navbar .bullet:hover, .bannercontainer .tp-bullets.simplebullets.navbar .bullet.selected { + background-position: bottom left; } + .bannercontainer .tparrows { + opacity: 1; + filter: alpha(opacity=100); + -webkit-transition: opacity 0.2s ease-out; + -o-transition: opacity 0.2s ease-out; + transition: opacity 0.2s ease-out; } + .bannercontainer .tparrows.hidearrows { + opacity: 0; + filter: alpha(opacity=0); } + .bannercontainer .tp-leftarrow { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/large_left.png) no-Repeat top left; + width: 40px; + height: 40px; } + .bannercontainer .tp-rightarrow { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/large_right.png) no-Repeat top left; + width: 40px; + height: 40px; } + .bannercontainer .tp-leftarrow.round { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/small_left.png) no-Repeat top left; + width: 19px; + height: 14px; + margin-right: 0px; + float: left; + margin-top: -7px; } + .bannercontainer .tp-rightarrow.round { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/small_right.png) no-Repeat top left; + width: 19px; + height: 14px; + margin-right: 0px; + float: left; + margin-top: -7px; } + .bannercontainer .tp-leftarrow.round-old { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/arrow_left.png) no-Repeat top left; + width: 26px; + height: 26px; + margin-right: 0px; + float: left; + margin-top: -13px; } + .bannercontainer .tp-rightarrow.round-old { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/arrow_right.png) no-Repeat top left; + width: 26px; + height: 26px; + margin-right: 0px; + float: left; + margin-top: -13px; } + .bannercontainer .tp-leftarrow.navbar { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/small_left_boxed.png) no-Repeat top left; + width: 20px; + height: 15px !important; + min-height: 15px !important; + float: left; + margin-right: 6px; + margin-top: 12px; } + .bannercontainer .tp-rightarrow.navbar { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/small_right_boxed.png) no-Repeat top left; + width: 20px; + height: 15px !important; + min-height: 15px !important; + float: left; + margin-left: 6px; + margin-top: 12px; } + .bannercontainer .tp-leftarrow.navbar-old { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/arrowleft.png) no-Repeat top left; + width: 9px; + height: 16px; + float: left; + margin-right: 6px; + margin-top: 10px; } + .bannercontainer .tp-rightarrow.navbar-old { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/arrowright.png) no-Repeat top left; + width: 9px; + height: 16px; + float: left; + margin-left: 6px; + margin-top: 10px; } + .bannercontainer .tp-leftarrow.navbar-old:hover, .bannercontainer .tp-rightarrow.navbar-old:hover { + background-position: left -16px; } + .bannercontainer .tp-leftarrow.navbar-old.thumbswitharrow { + margin-right: 10px; } + .bannercontainer .tp-rightarrow.navbar-old.thumbswitharrow { + margin-left: 0px; } + .bannercontainer .tp-leftarrow.square { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/arrow_left2.png) no-repeat top left; + width: 12px; + height: 17px; + float: left; + margin-right: 0px; + margin-top: -9px; } + .bannercontainer .tp-rightarrow.square { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/arrow_right2.png) no-repeat top left; + width: 12px; + height: 17px; + float: left; + margin-left: 0px; + margin-top: -9px; } + .bannercontainer .tp-leftarrow.square-old { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/arrow_left2.png) no-repeat top left; + width: 12px; + height: 17px; + float: left; + margin-right: 0px; + margin-top: -9px; } + .bannercontainer .tp-rightarrow.square-old { + z-index: 100; + cursor: pointer; + position: relative; + background: url(../assets/arrow_right2.png) no-repeat top left; + width: 12px; + height: 17px; + float: left; + margin-left: 0px; + margin-top: -9px; } + .bannercontainer .tp-leftarrow.square-old:hover, .bannercontainer .tp-rightarrow.square-old:hover { + background-position: left -17px; } + .bannercontainer .tp-leftarrow.default { + z-index: 20; + cursor: pointer; + position: relative; + background: url(../assets/large_left.png) no-repeat 0 0; + width: 40px; + height: 40px; + left: 0; } + .bannercontainer .tp-rightarrow.default { + z-index: 20; + cursor: pointer; + position: relative; + background: url(../assets/large_right.png) no-repeat 0 0; + width: 40px; + height: 40px; + right: 0; } + .bannercontainer .tp-leftarrow.default:hover, .bannercontainer .tp-rightarrow.default:hover { + background-position: left -40px; } + .bannercontainer .tp-leftarrow:hover, .bannercontainer .tp-rightarrow:hover { + background-position: left -14px; } + .bannercontainer .tp-bullets.tp-thumbs { + z-index: 1000; + position: absolute; + padding: 3px; + background-color: #fff; + width: 500px; + height: 50px; + /* THE DIMENSIONS OF THE THUMB CONTAINER */ + margin-top: -50px; } + .bannercontainer .fullwidthbanner-container .tp-thumbs { + padding: 3px; } + .bannercontainer .tp-bullets.tp-thumbs .tp-mask { + width: 500px; + height: 50px; + /* THE DIMENSIONS OF THE THUMB CONTAINER */ + overflow: hidden; + position: relative; } + .bannercontainer .tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer { + width: 5000px; + position: absolute; } + .bannercontainer .tp-bullets.tp-thumbs .bullet { + width: 100px; + height: 50px; + /* THE DIMENSION OF A SINGLE THUMB */ + cursor: pointer; + overflow: hidden; + background: none; + margin: 0; + float: left; + opacity: 0.5; + filter: alpha(opacity=50); + -webkit-transition: all 0.2s ease-out; + -o-transition: all 0.2s ease-out; + transition: all 0.2s ease-out; } + .bannercontainer .tp-bullets.tp-thumbs .bullet:hover, .bannercontainer .tp-bullets.tp-thumbs .bullet.selected { + opacity: 1; + filter: alpha(opacity=100); } + .bannercontainer .tp-thumbs img { + width: 100%; } + .bannercontainer .tp-bannertimer { + width: 100%; + height: 10px; + background: url(../assets/timer.png) red; + position: absolute; + z-index: 200; } + .bannercontainer .tp-bannertimer.tp-bottom { + bottom: 0px !important; + height: 5px; } + @media only screen and (min-width: 480px) and (max-width: 767px) { + .bannercontainer .responsive .tp-bullets.tp-thumbs { + width: 300px !important; + height: 30px !important; } + .bannercontainer .responsive .tp-bullets.tp-thumbs .tp-mask { + width: 300px !important; + height: 30px !important; } + .bannercontainer .responsive .tp-bullets.tp-thumbs .bullet { + width: 60px !important; + height: 30px !important; } } + @media only screen and (min-width: 0px) and (max-width: 479px) { + .bannercontainer .responsive .tp-bullets { + display: none; } + .bannercontainer .responsive .tparrows { + display: none; } } + .bannercontainer .tp-simpleresponsive img { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } + .bannercontainer .tp-simpleresponsive a { + text-decoration: none; } + .bannercontainer .tp-simpleresponsive ul { + list-style: none; + padding: 0; + margin: 0; } + .bannercontainer .tp-simpleresponsive > ul > li { + list-stye: none; + position: absolute; + visibility: hidden; } + .bannercontainer .caption.slidelink a div, .bannercontainer .tp-caption.slidelink a div { + width: 10000px; + height: 10000px; + background: url(../assets/coloredbg.png) repeat; } + .bannercontainer .tp-loader { + background: url(../assets/loader.gif) no-repeat 10px 10px; + background-color: #fff; + margin: -22px -22px; + top: 50%; + left: 50%; + z-index: 10000; + position: absolute; + width: 44px; + height: 44px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; } + .bannercontainer .tp-transparentimg { + content: "url(../assets/transparent.png)"; } + .bannercontainer .tp-3d { + -webkit-transform-style: preserve-3d; + -webkit-transform-origin: 50% 50%; } + +/*# sourceMappingURL=typo.css.map */ diff --git a/themes/at_movic/modules/leoslideshow/views/index.php b/themes/at_movic/modules/leoslideshow/views/index.php new file mode 100644 index 00000000..30fe14f7 --- /dev/null +++ b/themes/at_movic/modules/leoslideshow/views/index.php @@ -0,0 +1,36 @@ + +* @copyright PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/ps_advertising/index.php b/themes/at_movic/modules/ps_advertising/index.php new file mode 100644 index 00000000..833ebff9 --- /dev/null +++ b/themes/at_movic/modules/ps_advertising/index.php @@ -0,0 +1,35 @@ + +* @copyright PrestaShop SA +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/modules/ps_advertising/ps_advertising.tpl b/themes/at_movic/modules/ps_advertising/ps_advertising.tpl new file mode 100644 index 00000000..f4d8cac2 --- /dev/null +++ b/themes/at_movic/modules/ps_advertising/ps_advertising.tpl @@ -0,0 +1,28 @@ +{** + * 2007-2018 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +
    + {$adv_title} +
    diff --git a/themes/at_movic/modules/ps_banner/index.php b/themes/at_movic/modules/ps_banner/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_banner/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_banner/ps_banner.tpl b/themes/at_movic/modules/ps_banner/ps_banner.tpl new file mode 100644 index 00000000..459e2a10 --- /dev/null +++ b/themes/at_movic/modules/ps_banner/ps_banner.tpl @@ -0,0 +1,31 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + diff --git a/themes/at_movic/modules/ps_bestsellers/index.php b/themes/at_movic/modules/ps_bestsellers/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_bestsellers/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_bestsellers/views/index.php b/themes/at_movic/modules/ps_bestsellers/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_bestsellers/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_bestsellers/views/templates/hook/index.php b/themes/at_movic/modules/ps_bestsellers/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_bestsellers/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_bestsellers/views/templates/hook/ps_bestsellers.tpl b/themes/at_movic/modules/ps_bestsellers/views/templates/hook/ps_bestsellers.tpl new file mode 100644 index 00000000..136b97e0 --- /dev/null +++ b/themes/at_movic/modules/ps_bestsellers/views/templates/hook/ps_bestsellers.tpl @@ -0,0 +1,37 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + diff --git a/themes/at_movic/modules/ps_bestsellers/views/templates/index.php b/themes/at_movic/modules/ps_bestsellers/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_bestsellers/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_brandlist/index.php b/themes/at_movic/modules/ps_brandlist/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_brandlist/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_brandlist/views/index.php b/themes/at_movic/modules/ps_brandlist/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_brandlist/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_brandlist/views/templates/_partials/brand_form.tpl b/themes/at_movic/modules/ps_brandlist/views/templates/_partials/brand_form.tpl new file mode 100644 index 00000000..e89e604e --- /dev/null +++ b/themes/at_movic/modules/ps_brandlist/views/templates/_partials/brand_form.tpl @@ -0,0 +1,33 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +
    + +
    diff --git a/themes/at_movic/modules/ps_brandlist/views/templates/_partials/brand_text.tpl b/themes/at_movic/modules/ps_brandlist/views/templates/_partials/brand_text.tpl new file mode 100644 index 00000000..05b1fc1f --- /dev/null +++ b/themes/at_movic/modules/ps_brandlist/views/templates/_partials/brand_text.tpl @@ -0,0 +1,36 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +
      + {foreach from=$brands item=brand name=brand_list} + {if $smarty.foreach.brand_list.iteration <= $text_list_nb} +
    • + + {$brand['name']} + +
    • + {/if} + {/foreach} +
    diff --git a/themes/at_movic/modules/ps_brandlist/views/templates/_partials/index.php b/themes/at_movic/modules/ps_brandlist/views/templates/_partials/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_brandlist/views/templates/_partials/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_brandlist/views/templates/hook/index.php b/themes/at_movic/modules/ps_brandlist/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_brandlist/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_brandlist/views/templates/hook/ps_brandlist.tpl b/themes/at_movic/modules/ps_brandlist/views/templates/hook/ps_brandlist.tpl new file mode 100644 index 00000000..a73187a5 --- /dev/null +++ b/themes/at_movic/modules/ps_brandlist/views/templates/hook/ps_brandlist.tpl @@ -0,0 +1,41 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +
    +
    +

    + {if $display_link_brand}{/if} + {l s='Brands' d='Shop.Theme.Catalog'} + {if $display_link_brand}{/if} +

    +
    + {if $brands} + {include file="module:ps_brandlist/views/templates/_partials/$brand_display_type.tpl" brands=$brands} + {else} +

    {l s='No brand' d='Shop.Theme.Catalog'}

    + {/if} +
    +
    +
    diff --git a/themes/at_movic/modules/ps_brandlist/views/templates/index.php b/themes/at_movic/modules/ps_brandlist/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_brandlist/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_categoryproducts/index.php b/themes/at_movic/modules/ps_categoryproducts/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_categoryproducts/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_categoryproducts/views/index.php b/themes/at_movic/modules/ps_categoryproducts/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_categoryproducts/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_categoryproducts/views/templates/hook/index.php b/themes/at_movic/modules/ps_categoryproducts/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_categoryproducts/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_categoryproducts/views/templates/hook/ps_categoryproducts.tpl b/themes/at_movic/modules/ps_categoryproducts/views/templates/hook/ps_categoryproducts.tpl new file mode 100644 index 00000000..348dc5e2 --- /dev/null +++ b/themes/at_movic/modules/ps_categoryproducts/views/templates/hook/ps_categoryproducts.tpl @@ -0,0 +1,92 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    +
    + {l s='You might also like' d='Shop.Theme.Catalog'} +
    +
    +
    +
    +
    + {foreach from=$products item="product"} +
    + {block name='product_miniature'} + {if isset($productProfileDefault) && $productProfileDefault} + {* exits THEME_NAME/profiles/profile_name.tpl -> load template*} + {hook h='displayLeoProfileProduct' product=$product profile=$productProfileDefault} + {else} + {include file='catalog/_partials/miniatures/product.tpl' product=$product} + {/if} + {/block} +
    + {/foreach} +
    +
    +
    +
    +
    + \ No newline at end of file diff --git a/themes/at_movic/modules/ps_categoryproducts/views/templates/index.php b/themes/at_movic/modules/ps_categoryproducts/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_categoryproducts/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_categorytree/index.php b/themes/at_movic/modules/ps_categorytree/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_categorytree/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_categorytree/views/index.php b/themes/at_movic/modules/ps_categorytree/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_categorytree/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_categorytree/views/templates/hook/index.php b/themes/at_movic/modules/ps_categorytree/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_categorytree/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_categorytree/views/templates/hook/ps_categorytree.tpl b/themes/at_movic/modules/ps_categorytree/views/templates/hook/ps_categorytree.tpl new file mode 100644 index 00000000..f6db2552 --- /dev/null +++ b/themes/at_movic/modules/ps_categorytree/views/templates/hook/ps_categorytree.tpl @@ -0,0 +1,102 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + +{function name="categories" nodes=[] depth=0} + {strip} + {if $nodes|count} +
      + {foreach from=$nodes item=node} +
    • + {if $depth===0} + {$node.name} + {if $node.children} + +
      + {categories nodes=$node.children depth=$depth+1} +
      + {/if} + {else} + {$node.name} + {if $node.children} + + + + +
      + {categories nodes=$node.children depth=$depth+1} +
      + {/if} + {/if} +
    • + {/foreach} + {if $depth===0} + {if $language.iso_code =='pl'} + {if $category.id == 85 || $category.id == 86} +
    • + Gadżety +
    • +
    • + Karty upominkowe +
    • + {/if} + {if $category.id == 86} +
    • + Bielizna termoaktywna dziecięca +
    • + {/if} + {/if} + {if $language.iso_code =='gb'} + {if $category.id == 85 || $category.id == 86} +
    • + Gadgets +
    • +
    • + Gift card +
    • + {/if} + {if $category.id == 86} +
    • + Children's thermoactive underwear +
    • + {/if} + {/if} + {/if} +
    + {/if} + {/strip} +{/function} + +
    +

    {$categories.name}

    +
    +
      +
    • {categories nodes=$categories.children}
    • +
    +
    +
    diff --git a/themes/at_movic/modules/ps_categorytree/views/templates/index.php b/themes/at_movic/modules/ps_categorytree/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_categorytree/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_contactinfo/index.php b/themes/at_movic/modules/ps_contactinfo/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_contactinfo/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_contactinfo/nav.tpl b/themes/at_movic/modules/ps_contactinfo/nav.tpl new file mode 100644 index 00000000..7812640f --- /dev/null +++ b/themes/at_movic/modules/ps_contactinfo/nav.tpl @@ -0,0 +1,42 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + diff --git a/themes/at_movic/modules/ps_contactinfo/ps_contactinfo-rich.tpl b/themes/at_movic/modules/ps_contactinfo/ps_contactinfo-rich.tpl new file mode 100644 index 00000000..3dffa3f0 --- /dev/null +++ b/themes/at_movic/modules/ps_contactinfo/ps_contactinfo-rich.tpl @@ -0,0 +1,114 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +
    +

    {l s='Store information' d='Shop.Theme.Global'}

    +
    +
    +
    {$contact_infos.address.formatted nofilter}
    +
    +
    +
    NIP: 872 15 61 537
    REGON: 850480401
    KRS: 0000210964 +
    +
    + {if $contact_infos.phone} +
    +
    +
    +
    + {l s='Call us:' d='Shop.Theme.Global'}
    + {l s='Show phone number' d='Shop.Theme.Global'} +
    +
    + {/if} + {if $contact_infos.fax} +
    +
    +
    +
    + {l s='Fax:' d='Shop.Theme.Global'}
    + {$contact_infos.fax} +
    +
    + {/if} + {if $contact_infos.email} +
    +
    +
    + +
    + {/if} +
    +
    +
    + +
    +
    +{literal} + + +{/literal} \ No newline at end of file diff --git a/themes/at_movic/modules/ps_contactinfo/ps_contactinfo.tpl b/themes/at_movic/modules/ps_contactinfo/ps_contactinfo.tpl new file mode 100644 index 00000000..bdbcb699 --- /dev/null +++ b/themes/at_movic/modules/ps_contactinfo/ps_contactinfo.tpl @@ -0,0 +1,84 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + diff --git a/themes/at_movic/modules/ps_crossselling/index.php b/themes/at_movic/modules/ps_crossselling/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_crossselling/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_crossselling/views/index.php b/themes/at_movic/modules/ps_crossselling/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_crossselling/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_crossselling/views/templates/hook/index.php b/themes/at_movic/modules/ps_crossselling/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_crossselling/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_crossselling/views/templates/hook/ps_crossselling.tpl b/themes/at_movic/modules/ps_crossselling/views/templates/hook/ps_crossselling.tpl new file mode 100644 index 00000000..9694bdd3 --- /dev/null +++ b/themes/at_movic/modules/ps_crossselling/views/templates/hook/ps_crossselling.tpl @@ -0,0 +1,95 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + + + + \ No newline at end of file diff --git a/themes/at_movic/modules/ps_crossselling/views/templates/index.php b/themes/at_movic/modules/ps_crossselling/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_crossselling/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_currencyselector/index.php b/themes/at_movic/modules/ps_currencyselector/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_currencyselector/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_currencyselector/ps_currencyselector.tpl b/themes/at_movic/modules/ps_currencyselector/ps_currencyselector.tpl new file mode 100644 index 00000000..fa2e70ea --- /dev/null +++ b/themes/at_movic/modules/ps_currencyselector/ps_currencyselector.tpl @@ -0,0 +1,45 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + \ No newline at end of file diff --git a/themes/at_movic/modules/ps_customeraccountlinks/index.php b/themes/at_movic/modules/ps_customeraccountlinks/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_customeraccountlinks/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_customeraccountlinks/ps_customeraccountlinks.tpl b/themes/at_movic/modules/ps_customeraccountlinks/ps_customeraccountlinks.tpl new file mode 100644 index 00000000..4408cfd1 --- /dev/null +++ b/themes/at_movic/modules/ps_customeraccountlinks/ps_customeraccountlinks.tpl @@ -0,0 +1,51 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + diff --git a/themes/at_movic/modules/ps_customersignin/index.php b/themes/at_movic/modules/ps_customersignin/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_customersignin/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_customersignin/ps_customersignin.tpl b/themes/at_movic/modules/ps_customersignin/ps_customersignin.tpl new file mode 100644 index 00000000..b4183243 --- /dev/null +++ b/themes/at_movic/modules/ps_customersignin/ps_customersignin.tpl @@ -0,0 +1,138 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + diff --git a/themes/at_movic/modules/ps_emailalerts/index.php b/themes/at_movic/modules/ps_emailalerts/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_emailalerts/mails/gb/customer_qty.html b/themes/at_movic/modules/ps_emailalerts/mails/gb/customer_qty.html new file mode 100644 index 00000000..1721d4a9 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/gb/customer_qty.html @@ -0,0 +1,719 @@ + + + + + Customer Quantity + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + {product} is now available. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Good news, this item is back in stock! +
    +
    +
    + Click on the following link to visit the product page and order it: {product} +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailalerts/mails/gb/customer_qty.txt b/themes/at_movic/modules/ps_emailalerts/mails/gb/customer_qty.txt new file mode 100644 index 00000000..e0a99bcf --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/gb/customer_qty.txt @@ -0,0 +1,13 @@ +{shop_url} + +Hi, + +{product} is now available. + +Good news, this item is back in stock! + +Click on the following link to visit the product page and order it: [{product}]({product_link}) + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailalerts/mails/gb/new_order.html b/themes/at_movic/modules/ps_emailalerts/mails/gb/new_order.html new file mode 100644 index 00000000..229fd2ef --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/gb/new_order.html @@ -0,0 +1,1297 @@ + + + + + New Order + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Congratulations! +
    +
    +
    + A new order was placed on REDLINE by the following customer: {firstname} {lastname} ({email})
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order details +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Order: {order_name} Placed on {date} +
    +
    +
    + Payment: {payment} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + + + + + + + + + + + {items} + + + + + + + + + + + + + + + + + + + + + + + + +
    ReferenceProductUnit priceQuantityTotal price
    + Products + {total_products}
    + Discounts + {total_discounts}
    + Gift-wrapping + {total_wrapping}
    + Shipping + {total_shipping}
    + Including total tax + {total_tax_paid}
    + Total paid + {total_paid}
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + + Carrier +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Carrier: {carrier} +
    +
    +
    + Payment: {payment} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + +
    + + + + + + + +
    +

    + + Delivery address +

    +

    {delivery_block_html}

    +
     
    +
    + + + + + + +
    +

    + + Billing address +

    +

    {invoice_block_html}

    +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Customer message: +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {message}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    +
    + REDLINE +
    +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + \ No newline at end of file diff --git a/themes/at_movic/modules/ps_emailalerts/mails/gb/new_order.txt b/themes/at_movic/modules/ps_emailalerts/mails/gb/new_order.txt new file mode 100644 index 00000000..a2c2b8b1 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/gb/new_order.txt @@ -0,0 +1,41 @@ +{shop_url} + +Congratulations! + +A new order was placed on {shop_name} by the following customer: {firstname} {lastname} ({email}) + +Order details + +Order: {order_name} Placed on {date} + +Payment: {payment} + +Reference Product Unit price Quantity Total price {items} +Products {total_products} +Discounts {total_discounts} +Gift-wrapping {total_wrapping} +Shipping {total_shipping} +Including total tax {total_tax_paid} +Total paid {total_paid} + +Carrier + +Carrier: {carrier} + +Payment: {payment} + +Delivery address + +{delivery_block_html} + +Billing address + +{invoice_block_html} + +Customer message: + +{message} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailalerts/mails/gb/order_changed.html b/themes/at_movic/modules/ps_emailalerts/mails/gb/order_changed.html new file mode 100644 index 00000000..0e01c482 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/gb/order_changed.html @@ -0,0 +1,778 @@ + + + + + Order changed + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order ID {order_name} - Order changed +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Your order with the reference {order_name} from {shop_name} has been changed by the merchant. +
    +
    +
    + Go to your customer account to learn more about it. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailalerts/mails/gb/order_changed.txt b/themes/at_movic/modules/ps_emailalerts/mails/gb/order_changed.txt new file mode 100644 index 00000000..48c17ec9 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/gb/order_changed.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Order ID {order_name} - Order changed + +Your order with the reference {order_name} from {shop_name} has been changed by the merchant. + +Go to your customer account to learn more about it. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailalerts/mails/gb/productcoverage.html b/themes/at_movic/modules/ps_emailalerts/mails/gb/productcoverage.html new file mode 100644 index 00000000..cfb0cace --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/gb/productcoverage.html @@ -0,0 +1,651 @@ + + + + + Product coverage + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Your stock cover is now less than the specified minimum of: {warning_coverage} +
    +
    +
    + Current stock cover: {current_coverage}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailalerts/mails/gb/productcoverage.txt b/themes/at_movic/modules/ps_emailalerts/mails/gb/productcoverage.txt new file mode 100644 index 00000000..a6bbb31c --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/gb/productcoverage.txt @@ -0,0 +1,11 @@ +{shop_url} + +Hi, + +Your stock cover is now less than the specified minimum of: {warning_coverage} + +Current stock cover: {current_coverage} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailalerts/mails/gb/productoutofstock.html b/themes/at_movic/modules/ps_emailalerts/mails/gb/productoutofstock.html new file mode 100644 index 00000000..ee3d7192 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/gb/productoutofstock.html @@ -0,0 +1,723 @@ + + + + + Product out of stock + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + {product} is almost out of stock. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + There are now less than {last_qty} items in stock. +
    +
    +
    + Remaining stock: {qty}
    +
    +
    + Replenish your inventory, go to the Catalog > Stocks section of your back office to manage your stock. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailalerts/mails/gb/productoutofstock.txt b/themes/at_movic/modules/ps_emailalerts/mails/gb/productoutofstock.txt new file mode 100644 index 00000000..6ce317a8 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/gb/productoutofstock.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi, + +{product} is almost out of stock. + +There are now less than {last_qty} items in stock. + +Remaining stock: {qty} + +Replenish your inventory, go to the Catalog > Stocks section of your back office to manage your stock. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailalerts/mails/gb/return_slip.html b/themes/at_movic/modules/ps_emailalerts/mails/gb/return_slip.html new file mode 100644 index 00000000..46bcf90b --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/gb/return_slip.html @@ -0,0 +1,1116 @@ + + + + + Return Slip + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Hi, +
    +
    +
    + You have received a new return request for REDLINE. +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Return Details +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Order: {order_name} Placed on {date} +
    +
    +
    + Customer: {firstname} {lastname}, ({email}) +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + + + + + + + {items} +
    ReferenceProductQuantity
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + +
    + + + + + + + +
    +

    + + Delivery address +

    +

    {delivery_block_html}

    +
     
    +
    + + + + + + +
    +

    + + Billing address +

    +

    {invoice_block_html}

    +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Customer message: +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {message}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    +
    + REDLINE +
    +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + \ No newline at end of file diff --git a/themes/at_movic/modules/ps_emailalerts/mails/gb/return_slip.txt b/themes/at_movic/modules/ps_emailalerts/mails/gb/return_slip.txt new file mode 100644 index 00000000..268da4d4 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/gb/return_slip.txt @@ -0,0 +1,29 @@ +{shop_url} + +Hi, + +You have received a new return request for {shop_name}. + +Return Details + +Order: {order_name} Placed on {date} + +Customer: {firstname} {lastname}, ({email}) + +Reference Product Quantity {items} + +Delivery address + +{delivery_block_html} + +Billing address + +{invoice_block_html} + +Customer message: + +{message} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailalerts/mails/pl/customer_qty.html b/themes/at_movic/modules/ps_emailalerts/mails/pl/customer_qty.html new file mode 100644 index 00000000..487f0bb6 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/pl/customer_qty.html @@ -0,0 +1,719 @@ + + + + + Ilość klientów + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + {product} jest teraz dostępny. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Dobra wiadomość, ten produkt jest ponownie dostępny! +
    +
    +
    + Kliknij następujący link, aby odwiedzić stronę produktu i zamówić: {product} +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailalerts/mails/pl/customer_qty.txt b/themes/at_movic/modules/ps_emailalerts/mails/pl/customer_qty.txt new file mode 100644 index 00000000..7d955448 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/pl/customer_qty.txt @@ -0,0 +1,13 @@ +{shop_url} + +Witaj, + +{product} jest teraz dostępny. + +Dobra wiadomość, ten produkt jest ponownie dostępny! + +Kliknij następujący link, aby odwiedzić stronę produktu i zamówić: [{product}]({product_link}) + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailalerts/mails/pl/new_order.html b/themes/at_movic/modules/ps_emailalerts/mails/pl/new_order.html new file mode 100644 index 00000000..c109b4c6 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/pl/new_order.html @@ -0,0 +1,1272 @@ + + + + + Nowe zamówienie + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + + +
    +
    Gratulacje!
    +
    +
    Nowe zamówienie w REDLINE zostało złożone przez klienta: {firstname} {lastname} ({email})
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + + + +
    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    Szczegóły zamówienia
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + +
    +
    Zamówienie: {order_name} Złożone w {date}
    +
    +
    Płatność: {payment}
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + + + + + + {items} + + + + + + + + + + + + + + + + + + + + + +
    IndeksProduktCena jednostkowaIlośćCena końcowa
    Produkty{total_products}
    Rabat{total_discounts}
    Wysyłka{total_shipping}
    Podatek{total_tax_paid}
    Suma{total_paid}
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    Przewoźnik
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + +
    +
    Przewoźnik: {carrier} {point_code}
    +
    +
    Płatność: {payment}
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    + + + + + + + +
    +

    Adres dostawy

    +

    {delivery_block_html}

    +
     
    +
    + + + + + + +
    +

    Adres do faktury

    +

    {customfields}

    +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    Wiadomość klienta:
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    {message}
    +
    +
    +
    + +
    +
    + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + + + +
    + +
    +
    Powered by PrestaShop
    +
    +
    + +
    +
    + + + +
    + + + \ No newline at end of file diff --git a/themes/at_movic/modules/ps_emailalerts/mails/pl/new_order.txt b/themes/at_movic/modules/ps_emailalerts/mails/pl/new_order.txt new file mode 100644 index 00000000..2b070f47 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/pl/new_order.txt @@ -0,0 +1,41 @@ +{shop_url} + +Gratulacje! + +Nowe zamówienie w {shop_name} zostało złożone przez klienta: {firstname} {lastname} ({email}) + +Szczegóły zamówienia + +Zamówienie: {order_name} Złożone w {date} + +Płatność: {payment} + +Indeks Produkt Cena jednostkowa Ilość Cena końcowa {items} +Produkty {total_products} +Rabaty {total_discounts} +Pakowanie prezentowe {total_wrapping} +Wysyłka {total_shipping} +Z podatkiem {total_tax_paid} +Zapłacono w sumie {total_paid} + +Przewoźnik + +Przewoźnik: {carrier} + +Płatność: {payment} + +Adres dostawy + +{delivery_block_html} + +Adres do faktury + +{invoice_block_html} + +Wiadomość klienta: + +{message} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailalerts/mails/pl/order_changed.html b/themes/at_movic/modules/ps_emailalerts/mails/pl/order_changed.html new file mode 100644 index 00000000..ea8d9075 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/pl/order_changed.html @@ -0,0 +1,778 @@ + + + + + Zamówienie zmienione + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Numer zamówienia {order_name} - Zamówienie zmienione +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Twoje zamówienie o numerze {order_name} z {shop_name} zostało zmienione przez sprzedawcę. +
    +
    +
    + Przejdź do swojego konta klienta, aby dowiedzieć się więcej na ten temat. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailalerts/mails/pl/order_changed.txt b/themes/at_movic/modules/ps_emailalerts/mails/pl/order_changed.txt new file mode 100644 index 00000000..91cd4db8 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/pl/order_changed.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Numer zamówienia {order_name} - Zamówienie zmienione + +Twoje zamówienie o numerze {order_name} z {shop_name} zostało zmienione przez sprzedawcę. + +Przejdź do swojego konta klienta, aby dowiedzieć się więcej na ten temat. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailalerts/mails/pl/productcoverage.html b/themes/at_movic/modules/ps_emailalerts/mails/pl/productcoverage.html new file mode 100644 index 00000000..dffe0166 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/pl/productcoverage.html @@ -0,0 +1,651 @@ + + + + + Zapas produktu + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Twoje pokrycie zapasów jest teraz mniejsze niż określone minimum: {warning_coverage} +
    +
    +
    + Obecne pokrycie zapasów: {current_coverage}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailalerts/mails/pl/productcoverage.txt b/themes/at_movic/modules/ps_emailalerts/mails/pl/productcoverage.txt new file mode 100644 index 00000000..971472a8 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/pl/productcoverage.txt @@ -0,0 +1,11 @@ +{shop_url} + +Witaj, + +Twoje pokrycie zapasów jest teraz mniejsze niż określone minimum: {warning_coverage} + +Obecne pokrycie zapasów: {current_coverage} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailalerts/mails/pl/productoutofstock.html b/themes/at_movic/modules/ps_emailalerts/mails/pl/productoutofstock.html new file mode 100644 index 00000000..fec4a3b7 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/pl/productoutofstock.html @@ -0,0 +1,723 @@ + + + + + Produkt niedostępny + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + {product} jest prawie niedostępny. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + W magazynie jest teraz mniej niż {last_qty} przedmiotów. +
    +
    +
    + Pozostałe zapasy: {qty}
    +
    +
    + Uzupełnij zapasy, przejdź do sekcji Katalog > Zapasy swojego panelu administracyjnego, aby zarządzać zapasami. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailalerts/mails/pl/productoutofstock.txt b/themes/at_movic/modules/ps_emailalerts/mails/pl/productoutofstock.txt new file mode 100644 index 00000000..af0c5703 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/pl/productoutofstock.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj, + +{product} jest prawie niedostępny. + +W magazynie jest teraz mniej niż {last_qty} przedmiotów. + +Pozostałe zapasy: {qty} + +Uzupełnij zapasy, przejdź do sekcji Katalog > Zapasy swojego panelu administracyjnego, aby zarządzać zapasami. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailalerts/mails/pl/return_slip.html b/themes/at_movic/modules/ps_emailalerts/mails/pl/return_slip.html new file mode 100644 index 00000000..9e16d7a0 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/pl/return_slip.html @@ -0,0 +1,1114 @@ + + + + + Formularz zwrotu + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Witaj, +
    +
    +
    + Odebrano nowe żądanie zwrotu do {shop_name}. +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Szczegóły zwrotu +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Zamówienie: {order_name} Złożone w {date}
    +
    +
    + Klient: {firstname} {lastname}, ({email})
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + + + + + + + {items} +
    IndeksProduktIlość
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + +
    + + + + + + + +
    +

    + + Adres dostawy +

    +

    {delivery_block_html}

    +
     
    +
    + + + + + + +
    +

    + + Adres do faktury +

    +

    {invoice_block_html}

    +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Wiadomość klienta: +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {message}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailalerts/mails/pl/return_slip.txt b/themes/at_movic/modules/ps_emailalerts/mails/pl/return_slip.txt new file mode 100644 index 00000000..14a34f19 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/mails/pl/return_slip.txt @@ -0,0 +1,29 @@ +{shop_url} + +Witaj, + +Odebrano nowe żądanie zwrotu do {shop_name}. + +Szczegóły zwrotu + +Zamówienie: {order_name} Złożone w {date} + +Klient: {firstname} {lastname}, ({email}) + +Indeks Produkt Ilość {items} + +Adres dostawy + +{delivery_block_html} + +Adres do faktury + +{invoice_block_html} + +Wiadomość klienta: + +{message} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailalerts/views/index.php b/themes/at_movic/modules/ps_emailalerts/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_emailalerts/views/templates/hook/index.php b/themes/at_movic/modules/ps_emailalerts/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_emailalerts/views/templates/hook/my-account-footer.tpl b/themes/at_movic/modules/ps_emailalerts/views/templates/hook/my-account-footer.tpl new file mode 100644 index 00000000..3ca3c371 --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/views/templates/hook/my-account-footer.tpl @@ -0,0 +1,30 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +
  • + + {l s='My alerts' d='Shop.Theme.Catalog'} + +
  • diff --git a/themes/at_movic/modules/ps_emailalerts/views/templates/hook/my-account.tpl b/themes/at_movic/modules/ps_emailalerts/views/templates/hook/my-account.tpl new file mode 100644 index 00000000..b9228a0f --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/views/templates/hook/my-account.tpl @@ -0,0 +1,32 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + + + + {l s='My alerts' d='Shop.Theme.Catalog'} + + diff --git a/themes/at_movic/modules/ps_emailalerts/views/templates/index.php b/themes/at_movic/modules/ps_emailalerts/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_emailalerts/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_emailsubscription/index.php b/themes/at_movic/modules/ps_emailsubscription/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_conf.html b/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_conf.html new file mode 100644 index 00000000..b0b4f831 --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_conf.html @@ -0,0 +1,645 @@ + + + + + Newsletter Confirmation + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Thank you for subscribing to our newsletter. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_conf.txt b/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_conf.txt new file mode 100644 index 00000000..3f74f68e --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_conf.txt @@ -0,0 +1,9 @@ +{shop_url} + +Hi, + +Thank you for subscribing to our newsletter. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_verif.html b/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_verif.html new file mode 100644 index 00000000..e27c71e4 --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_verif.html @@ -0,0 +1,646 @@ + + + + + Newsletter Verification + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Thank you for subscribing to our newsletter. Please click on the following link to confirm your request:
    + {verif_url} +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_verif.txt b/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_verif.txt new file mode 100644 index 00000000..76ccd2ee --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_verif.txt @@ -0,0 +1,10 @@ +{shop_url} + +Hi, + +Thank you for subscribing to our newsletter. Please click on the following link to confirm your request: +{verif_url} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_voucher.html b/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_voucher.html new file mode 100644 index 00000000..89089051 --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_voucher.html @@ -0,0 +1,712 @@ + + + + + Newsletter Voucher + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Subscribing to newsletter +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Thank you for subscribing to our newsletter. We are pleased to offer you the following voucher: {discount} +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_voucher.txt b/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_voucher.txt new file mode 100644 index 00000000..932d88e5 --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/mails/gb/newsletter_voucher.txt @@ -0,0 +1,11 @@ +{shop_url} + +Hi, + +Subscribing to newsletter + +Thank you for subscribing to our newsletter. We are pleased to offer you the following voucher: {discount} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_conf.html b/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_conf.html new file mode 100644 index 00000000..54b37b8e --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_conf.html @@ -0,0 +1,645 @@ + + + + + Potwierdzenie Newslettera + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Dziękujemy za zapisanie się do naszego newslettera +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_conf.txt b/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_conf.txt new file mode 100644 index 00000000..6aa98eca --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_conf.txt @@ -0,0 +1,9 @@ +{shop_url} + +Witaj, + +Dziękujemy za zapisanie się do naszego newslettera + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_verif.html b/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_verif.html new file mode 100644 index 00000000..93558b93 --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_verif.html @@ -0,0 +1,646 @@ + + + + + Weryfikacja newslettera + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Dziękujemy za subskrypcję naszego newslettera. Kliknij poniższy link, aby potwierdzić zapytanie:
    + {verif_url} +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_verif.txt b/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_verif.txt new file mode 100644 index 00000000..901f1b14 --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_verif.txt @@ -0,0 +1,10 @@ +{shop_url} + +Witaj, + +Dziękujemy za subskrypcję naszego newslettera. Kliknij poniższy link, aby potwierdzić zapytanie: +{verif_url} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_voucher.html b/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_voucher.html new file mode 100644 index 00000000..332fc26f --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_voucher.html @@ -0,0 +1,712 @@ + + + + + Voucher za newsletter + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Zapisz się do newslettera +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Dziękujemy za subskrypcję naszego newslettera. Z przyjemnością oferujemy następujący kupon: {discount} +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_voucher.txt b/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_voucher.txt new file mode 100644 index 00000000..062db957 --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/mails/pl/newsletter_voucher.txt @@ -0,0 +1,11 @@ +{shop_url} + +Witaj, + +Zapisz się do newslettera + +Dziękujemy za subskrypcję naszego newslettera. Z przyjemnością oferujemy następujący kupon: {discount} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/ps_emailsubscription/views/index.php b/themes/at_movic/modules/ps_emailsubscription/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_emailsubscription/views/templates/hook/index.php b/themes/at_movic/modules/ps_emailsubscription/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl b/themes/at_movic/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl new file mode 100644 index 00000000..23bbefd5 --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl @@ -0,0 +1,69 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +
    +

    {l s='Newsletter signup' d='Shop.Theme.Global'}

    +
    +
    +
    +
    + {if $conditions} +

    {$conditions}

    + {/if} +
    +
    +
    + + +
    + +
    +
    +
    + {if $msg} +

    + {$msg} +

    + {/if} + {if isset($id_module)} + {hook h='displayGDPRConsent' id_module=$id_module} + {/if} +
    +
    +
    +
    +
    \ No newline at end of file diff --git a/themes/at_movic/modules/ps_emailsubscription/views/templates/index.php b/themes/at_movic/modules/ps_emailsubscription/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_emailsubscription/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_facetedsearch/index.php b/themes/at_movic/modules/ps_facetedsearch/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_facetedsearch/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_facetedsearch/ps_facetedsearch.tpl b/themes/at_movic/modules/ps_facetedsearch/ps_facetedsearch.tpl new file mode 100644 index 00000000..31794fe0 --- /dev/null +++ b/themes/at_movic/modules/ps_facetedsearch/ps_facetedsearch.tpl @@ -0,0 +1,36 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{if isset($listing.rendered_facets)} +
    +
    + + +
    + {$listing.rendered_facets nofilter} +
    +{/if} diff --git a/themes/at_movic/modules/ps_featuredproducts/index.php b/themes/at_movic/modules/ps_featuredproducts/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_featuredproducts/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_featuredproducts/views/index.php b/themes/at_movic/modules/ps_featuredproducts/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_featuredproducts/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_featuredproducts/views/templates/hook/index.php b/themes/at_movic/modules/ps_featuredproducts/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_featuredproducts/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_featuredproducts/views/templates/hook/ps_featuredproducts.tpl b/themes/at_movic/modules/ps_featuredproducts/views/templates/hook/ps_featuredproducts.tpl new file mode 100644 index 00000000..a9b22cc9 --- /dev/null +++ b/themes/at_movic/modules/ps_featuredproducts/views/templates/hook/ps_featuredproducts.tpl @@ -0,0 +1,37 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + diff --git a/themes/at_movic/modules/ps_featuredproducts/views/templates/index.php b/themes/at_movic/modules/ps_featuredproducts/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_featuredproducts/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_imageslider/index.php b/themes/at_movic/modules/ps_imageslider/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_imageslider/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_imageslider/views/index.php b/themes/at_movic/modules/ps_imageslider/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_imageslider/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_imageslider/views/templates/hook/index.php b/themes/at_movic/modules/ps_imageslider/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_imageslider/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_imageslider/views/templates/hook/slider.tpl b/themes/at_movic/modules/ps_imageslider/views/templates/hook/slider.tpl new file mode 100644 index 00000000..01929ffe --- /dev/null +++ b/themes/at_movic/modules/ps_imageslider/views/templates/hook/slider.tpl @@ -0,0 +1,60 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +{if $homeslider.slides} + +{/if} diff --git a/themes/at_movic/modules/ps_imageslider/views/templates/index.php b/themes/at_movic/modules/ps_imageslider/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_imageslider/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_languageselector/index.php b/themes/at_movic/modules/ps_languageselector/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_languageselector/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_languageselector/ps_languageselector.tpl b/themes/at_movic/modules/ps_languageselector/ps_languageselector.tpl new file mode 100644 index 00000000..3c699bbb --- /dev/null +++ b/themes/at_movic/modules/ps_languageselector/ps_languageselector.tpl @@ -0,0 +1,45 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + diff --git a/themes/at_movic/modules/ps_legalcompliance/index.php b/themes/at_movic/modules/ps_legalcompliance/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_legalcompliance/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_legalcompliance/views/css/aeuc_front.css b/themes/at_movic/modules/ps_legalcompliance/views/css/aeuc_front.css new file mode 100644 index 00000000..0e223695 --- /dev/null +++ b/themes/at_movic/modules/ps_legalcompliance/views/css/aeuc_front.css @@ -0,0 +1,132 @@ +/** + * 2007-2016 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Open Software License (OSL 3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://opensource.org/licenses/osl-3.0.php + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright 2007-2016 PrestaShop SA + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +span.aeuc_from_label, +span.aeuc_tax_label, +div.aeuc_tax_label, +div.aeuc_weight_label { + color: #554f58; + font-size: 11px; +} + +span.aeuc_tax_label_shopping_cart { + color: #554f58 !important; + font-size: 12px !important; +} + +span.aeuc_tax_label_blockcart { + color: #fff !important; +} + +.aeuc_shipping_label, .aeuc_delivery_label { + color: #878787; + font-size: 13px; +} + +.aeuc_shipping_label:before, .aeuc_delivery_label:before { + content: "-"; +} + +.aeuc_shipping_label a { + color: #878787; + text-decoration: underline; +} + +.content_price > span { + display:inline-block; +} + +span.unvisible { + display: none; +} + +p.payment_selected > a.payment_module_adv { + border: 1px solid #55c65e; + border-radius: 4px; +} + +a.payment_module_adv { + border: 1px solid #d6d4d4; + border-radius: 4px; +} +.cart-overview div.aeuc_unit_price_label { + font-size: 8px; + display: inline-block; + font-weight: normal; +} +#checkout-cart-summary div.aeuc_unit_price_label { + display: block; + font-size: 0.75rem; + color: #878787; +} +#order-items div.aeuc_unit_price_label { + display: block; + font-size: 0.875rem; + color: #878787; +} +.products div.aeuc_unit_price_label { + display: inline-block; + font-size: 0.875rem; + color: #acaaa6; + font-weight: 700; + text-align: center; +} +#blockcart-modal div.aeuc_unit_price_label { + font-size: 9px; + font-weight: normal; + margin-bottom: 8px; +} +#product div.aeuc_unit_price_label { + padding-bottom: 16px; +} + +div.condition-label label.js-terms { + text-align: left; +} +#conditions-to-approve #cta-terms-and-conditions-1 { + font-weight: bold; +} + +div.aeuc_footer_info { + text-align: center; + font-size: 0.875rem; + margin-top: 10px; + margin-bottom: 10px; +} + + +h5.aeuc_scart { + margin-bottom: 20px; +} + +.euAboutUsCMS { + padding-top: 0px; } + .euAboutUsCMS li a { + color: #acaaa6; + cursor: pointer; } + .euAboutUsCMS li a:hover { + color: #2fb5d2; } + .euAboutUsCMS .cms-page-link a { + color: #414141; } diff --git a/themes/at_movic/modules/ps_legalcompliance/views/css/index.php b/themes/at_movic/modules/ps_legalcompliance/views/css/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_legalcompliance/views/css/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_legalcompliance/views/index.php b/themes/at_movic/modules/ps_legalcompliance/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_legalcompliance/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_legalcompliance/views/templates/hook/hookDisplayFooter.tpl b/themes/at_movic/modules/ps_legalcompliance/views/templates/hook/hookDisplayFooter.tpl new file mode 100644 index 00000000..5417704a --- /dev/null +++ b/themes/at_movic/modules/ps_legalcompliance/views/templates/hook/hookDisplayFooter.tpl @@ -0,0 +1,44 @@ +{** + * PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + diff --git a/themes/at_movic/modules/ps_legalcompliance/views/templates/hook/index.php b/themes/at_movic/modules/ps_legalcompliance/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_legalcompliance/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_legalcompliance/views/templates/index.php b/themes/at_movic/modules/ps_legalcompliance/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_legalcompliance/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_linklist/index.php b/themes/at_movic/modules/ps_linklist/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_linklist/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_linklist/views/index.php b/themes/at_movic/modules/ps_linklist/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_linklist/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_linklist/views/templates/hook/index.php b/themes/at_movic/modules/ps_linklist/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_linklist/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_linklist/views/templates/hook/linkblock.tpl b/themes/at_movic/modules/ps_linklist/views/templates/hook/linkblock.tpl new file mode 100644 index 00000000..08ff900b --- /dev/null +++ b/themes/at_movic/modules/ps_linklist/views/templates/hook/linkblock.tpl @@ -0,0 +1,58 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + diff --git a/themes/at_movic/modules/ps_linklist/views/templates/index.php b/themes/at_movic/modules/ps_linklist/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_linklist/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_mainmenu/index.php b/themes/at_movic/modules/ps_mainmenu/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_mainmenu/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_mainmenu/ps_mainmenu.tpl b/themes/at_movic/modules/ps_mainmenu/ps_mainmenu.tpl new file mode 100644 index 00000000..7ba81967 --- /dev/null +++ b/themes/at_movic/modules/ps_mainmenu/ps_mainmenu.tpl @@ -0,0 +1,46 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{assign var=_counter value=0} +{function name="menu" nodes=[] depth=0 parent=null} + {if $nodes|count} + + {/if} +{/function} + + diff --git a/themes/at_movic/modules/ps_newproducts/index.php b/themes/at_movic/modules/ps_newproducts/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_newproducts/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_newproducts/views/index.php b/themes/at_movic/modules/ps_newproducts/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_newproducts/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_newproducts/views/templates/hook/index.php b/themes/at_movic/modules/ps_newproducts/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_newproducts/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_newproducts/views/templates/hook/ps_newproducts.tpl b/themes/at_movic/modules/ps_newproducts/views/templates/hook/ps_newproducts.tpl new file mode 100644 index 00000000..db875e1e --- /dev/null +++ b/themes/at_movic/modules/ps_newproducts/views/templates/hook/ps_newproducts.tpl @@ -0,0 +1,39 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + + diff --git a/themes/at_movic/modules/ps_newproducts/views/templates/index.php b/themes/at_movic/modules/ps_newproducts/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_newproducts/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_productinfo/index.php b/themes/at_movic/modules/ps_productinfo/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_productinfo/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_productinfo/views/index.php b/themes/at_movic/modules/ps_productinfo/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_productinfo/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_productinfo/views/templates/hook/index.php b/themes/at_movic/modules/ps_productinfo/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_productinfo/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_productinfo/views/templates/hook/ps_productinfo.tpl b/themes/at_movic/modules/ps_productinfo/views/templates/hook/ps_productinfo.tpl new file mode 100644 index 00000000..f008f687 --- /dev/null +++ b/themes/at_movic/modules/ps_productinfo/views/templates/hook/ps_productinfo.tpl @@ -0,0 +1,43 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + {if isset($vars_nb_people)} +

    + {if $vars_nb_people['%nb_people%'] == 1} + {l s='1 person is currently watching this product.' d='Shop.Theme.Catalog'} + {else} + {l s='%nb_people% people are currently watching this product.' sprintf=$vars_nb_people d='Shop.Theme.Catalog'} + {/if} +

    + {/if} + + {if isset($vars_date_last_order)} +

    {l s='Last time this product was bought: %date_last_order%' sprintf=$vars_date_last_order d='Shop.Theme.Catalog'}

    + {/if} + + {if isset($vars_date_last_cart)} +

    {l s='Last time this product was added to a cart: %date_last_cart%' sprintf=$vars_date_last_cart d='Shop.Theme.Catalog'}

    + {/if} +
    diff --git a/themes/at_movic/modules/ps_productinfo/views/templates/index.php b/themes/at_movic/modules/ps_productinfo/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_productinfo/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_rssfeed/index.php b/themes/at_movic/modules/ps_rssfeed/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_rssfeed/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_rssfeed/views/index.php b/themes/at_movic/modules/ps_rssfeed/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_rssfeed/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_rssfeed/views/templates/hook/index.php b/themes/at_movic/modules/ps_rssfeed/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_rssfeed/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_rssfeed/views/templates/hook/ps_rssfeed.tpl b/themes/at_movic/modules/ps_rssfeed/views/templates/hook/ps_rssfeed.tpl new file mode 100644 index 00000000..c91b62bc --- /dev/null +++ b/themes/at_movic/modules/ps_rssfeed/views/templates/hook/ps_rssfeed.tpl @@ -0,0 +1,39 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + diff --git a/themes/at_movic/modules/ps_rssfeed/views/templates/index.php b/themes/at_movic/modules/ps_rssfeed/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_rssfeed/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_searchbar/index.php b/themes/at_movic/modules/ps_searchbar/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_searchbar/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_searchbar/ps_searchbar.tpl b/themes/at_movic/modules/ps_searchbar/ps_searchbar.tpl new file mode 100644 index 00000000..4aff1b98 --- /dev/null +++ b/themes/at_movic/modules/ps_searchbar/ps_searchbar.tpl @@ -0,0 +1,40 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + + diff --git a/themes/at_movic/modules/ps_sharebuttons/index.php b/themes/at_movic/modules/ps_sharebuttons/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_sharebuttons/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_sharebuttons/views/index.php b/themes/at_movic/modules/ps_sharebuttons/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_sharebuttons/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_sharebuttons/views/templates/hook/index.php b/themes/at_movic/modules/ps_sharebuttons/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_sharebuttons/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_sharebuttons/views/templates/hook/ps_sharebuttons.tpl b/themes/at_movic/modules/ps_sharebuttons/views/templates/hook/ps_sharebuttons.tpl new file mode 100644 index 00000000..9aaa5347 --- /dev/null +++ b/themes/at_movic/modules/ps_sharebuttons/views/templates/hook/ps_sharebuttons.tpl @@ -0,0 +1,37 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +{block name='social_sharing'} + {if $social_share_links} + + {/if} +{/block} diff --git a/themes/at_movic/modules/ps_sharebuttons/views/templates/index.php b/themes/at_movic/modules/ps_sharebuttons/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_sharebuttons/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_shoppingcart/index.php b/themes/at_movic/modules/ps_shoppingcart/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_shoppingcart/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_shoppingcart/modal.tpl b/themes/at_movic/modules/ps_shoppingcart/modal.tpl new file mode 100644 index 00000000..3fa0f012 --- /dev/null +++ b/themes/at_movic/modules/ps_shoppingcart/modal.tpl @@ -0,0 +1,95 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + diff --git a/themes/at_movic/modules/ps_shoppingcart/ps_shoppingcart-product-line.tpl b/themes/at_movic/modules/ps_shoppingcart/ps_shoppingcart-product-line.tpl new file mode 100644 index 00000000..6262d6ae --- /dev/null +++ b/themes/at_movic/modules/ps_shoppingcart/ps_shoppingcart-product-line.tpl @@ -0,0 +1,59 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{$product.quantity} +{$product.name} +{$product.price} + + {l s='Remove' d='Shop.Theme.Actions'} + +{if $product.customizations|count} +
    +
      + {foreach from=$product.customizations item='customization'} +
    • + {$customization.quantity} + {l s='Remove' d='Shop.Theme.Actions'} +
        + {foreach from=$customization.fields item='field'} +
      • + {$field.label} + {if $field.type == 'text'} + {$field.text nofilter} + {elseif $field.type == 'image'} + + {/if} +
      • + {/foreach} +
      +
    • + {/foreach} +
    +
    +{/if} diff --git a/themes/at_movic/modules/ps_shoppingcart/ps_shoppingcart.tpl b/themes/at_movic/modules/ps_shoppingcart/ps_shoppingcart.tpl new file mode 100644 index 00000000..958c1a9f --- /dev/null +++ b/themes/at_movic/modules/ps_shoppingcart/ps_shoppingcart.tpl @@ -0,0 +1,38 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    +
    + +
    +
    diff --git a/themes/at_movic/modules/ps_socialfollow/index.php b/themes/at_movic/modules/ps_socialfollow/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_socialfollow/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_socialfollow/ps_socialfollow.tpl b/themes/at_movic/modules/ps_socialfollow/ps_socialfollow.tpl new file mode 100644 index 00000000..57f6d10f --- /dev/null +++ b/themes/at_movic/modules/ps_socialfollow/ps_socialfollow.tpl @@ -0,0 +1,46 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +{block name='block_social'} + +{/block} diff --git a/themes/at_movic/modules/ps_specials/index.php b/themes/at_movic/modules/ps_specials/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_specials/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_specials/views/index.php b/themes/at_movic/modules/ps_specials/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_specials/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_specials/views/templates/hook/index.php b/themes/at_movic/modules/ps_specials/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_specials/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_specials/views/templates/hook/ps_specials.tpl b/themes/at_movic/modules/ps_specials/views/templates/hook/ps_specials.tpl new file mode 100644 index 00000000..c38516b8 --- /dev/null +++ b/themes/at_movic/modules/ps_specials/views/templates/hook/ps_specials.tpl @@ -0,0 +1,36 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + diff --git a/themes/at_movic/modules/ps_specials/views/templates/index.php b/themes/at_movic/modules/ps_specials/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_specials/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_supplierlist/index.php b/themes/at_movic/modules/ps_supplierlist/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_supplierlist/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_supplierlist/views/index.php b/themes/at_movic/modules/ps_supplierlist/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_supplierlist/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_supplierlist/views/templates/_partials/index.php b/themes/at_movic/modules/ps_supplierlist/views/templates/_partials/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_supplierlist/views/templates/_partials/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_supplierlist/views/templates/_partials/supplier_form.tpl b/themes/at_movic/modules/ps_supplierlist/views/templates/_partials/supplier_form.tpl new file mode 100644 index 00000000..3a5f5ac9 --- /dev/null +++ b/themes/at_movic/modules/ps_supplierlist/views/templates/_partials/supplier_form.tpl @@ -0,0 +1,33 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +
    + +
    diff --git a/themes/at_movic/modules/ps_supplierlist/views/templates/_partials/supplier_text.tpl b/themes/at_movic/modules/ps_supplierlist/views/templates/_partials/supplier_text.tpl new file mode 100644 index 00000000..080f72e5 --- /dev/null +++ b/themes/at_movic/modules/ps_supplierlist/views/templates/_partials/supplier_text.tpl @@ -0,0 +1,36 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +
      + {foreach from=$suppliers item=supplier name=supplier_list} + {if $smarty.foreach.supplier_list.iteration <= $text_list_nb} +
    • + + {$supplier['name']} + +
    • + {/if} + {/foreach} +
    diff --git a/themes/at_movic/modules/ps_supplierlist/views/templates/hook/index.php b/themes/at_movic/modules/ps_supplierlist/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_supplierlist/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_supplierlist/views/templates/hook/ps_supplierlist.tpl b/themes/at_movic/modules/ps_supplierlist/views/templates/hook/ps_supplierlist.tpl new file mode 100644 index 00000000..d96896d3 --- /dev/null +++ b/themes/at_movic/modules/ps_supplierlist/views/templates/hook/ps_supplierlist.tpl @@ -0,0 +1,41 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +
    +
    +

    + {if $display_link_supplier}{/if} + {l s='Suppliers' d='Shop.Theme.Catalog'} + {if $display_link_supplier}{/if} +

    +
    + {if $suppliers} + {include file="module:ps_supplierlist/views/templates/_partials/$supplier_display_type.tpl" suppliers=$suppliers} + {else} +

    {l s='No supplier' d='Shop.Theme.Catalog'}

    + {/if} +
    +
    +
    diff --git a/themes/at_movic/modules/ps_supplierlist/views/templates/index.php b/themes/at_movic/modules/ps_supplierlist/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_supplierlist/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_viewedproduct/index.php b/themes/at_movic/modules/ps_viewedproduct/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_viewedproduct/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_viewedproduct/views/index.php b/themes/at_movic/modules/ps_viewedproduct/views/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_viewedproduct/views/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_viewedproduct/views/templates/hook/index.php b/themes/at_movic/modules/ps_viewedproduct/views/templates/hook/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_viewedproduct/views/templates/hook/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/ps_viewedproduct/views/templates/hook/ps_viewedproduct.tpl b/themes/at_movic/modules/ps_viewedproduct/views/templates/hook/ps_viewedproduct.tpl new file mode 100644 index 00000000..4d60d640 --- /dev/null +++ b/themes/at_movic/modules/ps_viewedproduct/views/templates/hook/ps_viewedproduct.tpl @@ -0,0 +1,94 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +
    +

    + {l s='Viewed products' d='Shop.Theme.Catalog'} +

    +
    +
    +
    +
    + + {foreach from=$products item="product"} +
    + {block name='product_miniature'} + {if isset($productProfileDefault) && $productProfileDefault} + {* exits THEME_NAME/profiles/profile_name.tpl -> load template*} + {hook h='displayLeoProfileProduct' product=$product profile=$productProfileDefault} + {else} + {include file='catalog/_partials/miniatures/product.tpl' product=$product} + {/if} + {/block} +
    + {/foreach} + +
    +
    +
    +
    +
    + \ No newline at end of file diff --git a/themes/at_movic/modules/ps_viewedproduct/views/templates/index.php b/themes/at_movic/modules/ps_viewedproduct/views/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/modules/ps_viewedproduct/views/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-congratulations.html b/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-congratulations.html new file mode 100644 index 00000000..235ca251 --- /dev/null +++ b/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-congratulations.html @@ -0,0 +1,711 @@ + + + + + Referral program Congratulations + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Congratulations! +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Your referred friend {sponsored_firstname} {sponsored_lastname} has placed his/her first order on {shop_name}! +
    +
    +
    + We are pleased to offer you a voucher worth {discount_display} (VOUCHER # {discount_name}) that you can use on your next order. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Best regards, +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-congratulations.txt b/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-congratulations.txt new file mode 100644 index 00000000..fd2b11e0 --- /dev/null +++ b/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-congratulations.txt @@ -0,0 +1,13 @@ +{shop_url} + +Congratulations! + +Your referred friend {sponsored_firstname} {sponsored_lastname} has placed his/her first order on [{shop_name}]({shop_url})! + +We are pleased to offer you a voucher worth {discount_display} (VOUCHER # {discount_name}) that you can use on your next order. + +Best regards, + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-invitation.html b/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-invitation.html new file mode 100644 index 00000000..3ee64e3d --- /dev/null +++ b/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-invitation.html @@ -0,0 +1,772 @@ + + + + + Referral program Invitation + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    {firstname_friend} {lastname_friend}, Join us! +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Your friend {firstname} {lastname} wants to refer you on {shop_name}! +
    +
    +
    + We are pleased to offer you a voucher worth {discount} that you can use on your next order. + Get referred and earn a discount voucher of {discount}! +

    + It's very easy to sign up, just click here! +

    +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + When signing up, don't forget to provide the email address of your referring friend: {email}.
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Best regards, +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-invitation.txt b/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-invitation.txt new file mode 100644 index 00000000..99c68154 --- /dev/null +++ b/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-invitation.txt @@ -0,0 +1,17 @@ +{shop_url} + +{firstname_friend} {lastname_friend}, Join us! + +Your friend {firstname} {lastname} wants to refer you on [{shop_name}]({shop_url})! + +We are pleased to offer you a voucher worth {discount} that you can use on your next order. Get referred and earn a discount voucher of {discount}! + +[It's very easy to sign up, just click here!]({link}) + +When signing up, don't forget to provide the email address of your referring friend: {email}. + +Best regards, + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-voucher.html b/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-voucher.html new file mode 100644 index 00000000..56726b88 --- /dev/null +++ b/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-voucher.html @@ -0,0 +1,720 @@ + + + + + Referral program Voucher + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Sponsorship Program +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + We have created a voucher in your name for referring a friend.
    + Here is the code of your voucher: {voucher_num}, with an amount of {voucher_num} +
    +
    +
    + Simply copy/paste this code during the payment process for your next order. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-voucher.txt b/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-voucher.txt new file mode 100644 index 00000000..3d4c3779 --- /dev/null +++ b/themes/at_movic/modules/referralprogram/mails/gb/referralprogram-voucher.txt @@ -0,0 +1,14 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Sponsorship Program + +We have created a voucher in your name for referring a friend. +Here is the code of your voucher: {voucher_num}, with an amount of {voucher_num} + +Simply copy/paste this code during the payment process for your next order. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-congratulations.html b/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-congratulations.html new file mode 100644 index 00000000..c9931a17 --- /dev/null +++ b/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-congratulations.html @@ -0,0 +1,711 @@ + + + + + Program polecający Gratulacje + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Gratulacje! +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Twój polecony przyjaciel {sponsored_firstname} {sponsored_lastname} złożył swoje pierwsze zamówienie na {shop_name} ! +
    +
    +
    + Z przyjemnością oferujemy Ci kupon o wartości {discount_display} (KUPON # {discount_name}), którego możesz użyć przy następnym zamówieniu. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Z poważaniem, +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-congratulations.txt b/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-congratulations.txt new file mode 100644 index 00000000..51899a9a --- /dev/null +++ b/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-congratulations.txt @@ -0,0 +1,13 @@ +{shop_url} + +Gratulacje! + +Twój polecony przyjaciel {sponsored_firstname} {sponsored_lastname} złożył swoje pierwsze zamówienie na [{shop_name}]({shop_url})! + +Z przyjemnością oferujemy Ci kupon o wartości {discount_display} (KUPON # {discount_name}), którego możesz użyć przy następnym zamówieniu. + +Z poważaniem, + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-invitation.html b/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-invitation.html new file mode 100644 index 00000000..2856f09e --- /dev/null +++ b/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-invitation.html @@ -0,0 +1,772 @@ + + + + + Zaproszenie do programu polecającego + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    {firstname_friend} {lastname_friend}, Dołącz do nas! +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Twój znajomy {firstname} {lastname} chce Ci polecić {shop_name}! +
    +
    +
    + Z przyjemnością oferujemy kupon o wartości {discount}, który możesz wykorzystać przy następnym zamówieniu. + Poleć nasz sklep i zdobądź kupon na {discount}! rabatu! +

    + Rejestracja jest bardzo łatwa, wystarczy kliknąć tutaj! +

    +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Podczas rejestracji nie zapomnij podać adresu e-mail znajomego polecającego: {email}.
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Z poważaniem, +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-invitation.txt b/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-invitation.txt new file mode 100644 index 00000000..9a34ff98 --- /dev/null +++ b/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-invitation.txt @@ -0,0 +1,17 @@ +{shop_url} + +{firstname_friend} {lastname_friend}, Dołącz do nas! + +Twój znajomy {firstname} {lastname} chce Ci polecić [{shop_name}]({shop_url})! + +Z przyjemnością oferujemy kupon o wartości {discount}, który możesz wykorzystać przy następnym zamówieniu. Poleć nasz sklep i zdobądź kupon na {discount}! rabatu! + +[Rejestracja jest bardzo łatwa, wystarczy kliknąć tutaj!]({link}) + +Podczas rejestracji nie zapomnij podać adresu e-mail znajomego polecającego: {email}. + +Z poważaniem, + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-voucher.html b/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-voucher.html new file mode 100644 index 00000000..e38f8418 --- /dev/null +++ b/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-voucher.html @@ -0,0 +1,720 @@ + + + + + Kupon na program polecający + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Program sponsorski +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Stworzyliśmy kupon w Twoim imieniu za polecenie przyjaciela.
    + Oto kod Twojego bonu: {voucher_num}, z ilością {voucher_num} +
    +
    +
    + Po prostu skopiuj/wklej ten kod podczas procesu płatności dla następnego zamówienia. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-voucher.txt b/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-voucher.txt new file mode 100644 index 00000000..5aaf3351 --- /dev/null +++ b/themes/at_movic/modules/referralprogram/mails/pl/referralprogram-voucher.txt @@ -0,0 +1,14 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Program sponsorski + +Stworzyliśmy kupon w Twoim imieniu za polecenie przyjaciela. +Oto kod Twojego bonu: {voucher_num}, z ilością {voucher_num} + +Po prostu skopiuj/wklej ten kod podczas procesu płatności dla następnego zamówienia. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/preview.png b/themes/at_movic/preview.png new file mode 100644 index 00000000..2117d90f Binary files /dev/null and b/themes/at_movic/preview.png differ diff --git a/themes/at_movic/preview.webp b/themes/at_movic/preview.webp new file mode 100644 index 00000000..4c01269f Binary files /dev/null and b/themes/at_movic/preview.webp differ diff --git a/themes/at_movic/samples/appagebuilder.xml b/themes/at_movic/samples/appagebuilder.xml new file mode 100644 index 00000000..d8f23302 --- /dev/null +++ b/themes/at_movic/samples/appagebuilder.xml @@ -0,0 +1,746 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1
    1
    2
    9
    4000 + + 1 + + 110 + 210 + 310 + 41_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_
    " active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_9184166521380958" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_
    " active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_9184166521380958" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_
    " active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_9184166521380958" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_
    " active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_9184166521380958" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_
    " active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_9184166521380958" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_
    " active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_9184166521380958" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>0 + 510 + + + + 2 + + 620 + 72fashion men_APENTER_

    Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style.

    "][/ApImage][/ApColumn][ApColumn form_id="form_6988059625809970" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5172215852305599" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image="h1-bn-2.jpg" url="#" description="

    fashion women

    _APENTER_

    Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style.

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8005579318932881" container="container" class="row box-banner" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9609130361718644" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_2318812548924896" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-3.jpg" temp_description_1_1="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-3.jpg" temp_description_1_2="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-3.jpg" temp_description_1_3="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-3.jpg" temp_description_1_4="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-3.jpg" temp_description_1_5="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-3.jpg" temp_description_1_6="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" title="FASHION MEN" sub_title="Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style." image="h1-bn-1.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_6251714513079458" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_4865150831257053" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-4.jpg" temp_description_1_1="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-4.jpg" temp_description_1_2="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-4.jpg" temp_description_1_3="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-4.jpg" temp_description_1_4="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-4.jpg" temp_description_1_5="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-4.jpg" temp_description_1_6="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" title="fashion women" sub_title="Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style." image="h1-bn-2.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_3583033977578805" container="container" class="row box-manu" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4686070494711765" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApManuFacturersCarousel form_id="form_12369508672490075" imagetype="manu_default" order_way="asc" order_by="id_manufacturer" manu_limit="10" carousel_type="owlcarousel" items="6" itemsdesktop="5" itemsdesktopsmall="4" itemstablet="3" itemsmobile="2" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1"][/ApManuFacturersCarousel][/ApColumn][/ApRow][ApRow form_id="form_8399433550473712" container="container" class="row box-tabproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_10366443507217028" class="" tab_type="tabs-top" active_tab="1" fade_effect="1" override_folder="" active="1" title="our products" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][ApTab form_id="form_20312536967511095" id="tab_4183733975071095" css_class="" image="" override_folder="" title="Top" sub_title=""][ApProductCarousel form_id="form_3979604892556792" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_5152455342698124" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_12901311915389972" id="tab_9543369996355988" css_class="" image="" override_folder="" title="hats" sub_title=""][ApProductCarousel form_id="form_36739595802827106" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_14078663074688455" container="container" class="row box-instagram" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_1518472695550026" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow][ApRow form_id="form_2377233542341223" container="container" class="row box-latestnews" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7622322621312240" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_6692111358249496" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="360" bleoblogs_height="204" bleoblogs_show="0" show_title="1" show_desc="1" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="0" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="10" carousel_type="owlcarousel" items="2" itemsdesktop="2" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title="LATEST NEWS" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApBlog][/ApColumn][/ApRow]]]>
    vêtements homme_APENTER_

    Conçoit et produit sa propre ligne de vêtements pour homme, en se concentrant sur l’artisanat de haute qualité, authenticité et style traditionnel.

    "][/ApImage][/ApColumn][ApColumn form_id="form_6988059625809970" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5172215852305599" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image="h1-bn-2.jpg" url="#" description="

    Vêtements femme

    _APENTER_

    Conçoit et produit sa propre ligne de vêtements pour homme, en se concentrant sur l’artisanat de haute qualité, authenticité et style traditionnel.

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8005579318932881" container="container" class="row box-banner" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9609130361718644" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_2318812548924896" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-3.jpg" temp_description_1_1="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-3.jpg" temp_description_1_2="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-3.jpg" temp_description_1_3="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-3.jpg" temp_description_1_4="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-3.jpg" temp_description_1_5="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-3.jpg" temp_description_1_6="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" title="FASHION MEN" sub_title="Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style." image="h1-bn-1.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_6251714513079458" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_4865150831257053" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-4.jpg" temp_description_1_1="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-4.jpg" temp_description_1_2="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-4.jpg" temp_description_1_3="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-4.jpg" temp_description_1_4="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-4.jpg" temp_description_1_5="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-4.jpg" temp_description_1_6="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" title="fashion women" sub_title="Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style." image="h1-bn-2.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_3583033977578805" container="container" class="row box-manu" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4686070494711765" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApManuFacturersCarousel form_id="form_12369508672490075" imagetype="manu_default" order_way="asc" order_by="id_manufacturer" manu_limit="10" carousel_type="owlcarousel" items="6" itemsdesktop="5" itemsdesktopsmall="4" itemstablet="3" itemsmobile="2" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1"][/ApManuFacturersCarousel][/ApColumn][/ApRow][ApRow form_id="form_8399433550473712" container="container" class="row box-tabproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_10366443507217028" class="" tab_type="tabs-top" active_tab="1" fade_effect="1" override_folder="" active="1" title="notre produit" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][ApTab form_id="form_20312536967511095" id="tab_4183733975071095" css_class="" image="" override_folder="" title="Retour" sub_title=""][ApProductCarousel form_id="form_3979604892556792" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_5152455342698124" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_12901311915389972" id="tab_9543369996355988" css_class="" image="" override_folder="" title="New Tab" sub_title=""][ApProductCarousel form_id="form_36739595802827106" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_14078663074688455" container="container" class="row box-instagram" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_1518472695550026" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow][ApRow form_id="form_2377233542341223" container="container" class="row box-latestnews" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7622322621312240" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_6692111358249496" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="360" bleoblogs_height="204" bleoblogs_show="0" show_title="1" show_desc="1" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="0" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="10" carousel_type="owlcarousel" items="2" itemsdesktop="2" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title="LATEST NEWS" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApBlog][/ApColumn][/ApRow]]]>
    Mode Herren_APENTER_

    Entwirft und produziert seine eigene Linie von Herrenmode mit Schwerpunkt auf höchster handwerklicher Qualität, Authentizität und traditionellen Stil.

    "][/ApImage][/ApColumn][ApColumn form_id="form_6988059625809970" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5172215852305599" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image="h1-bn-2.jpg" url="#" description="

    Damenmode

    _APENTER_

    Entwirft und produziert seine eigene Linie von Herrenmode mit Schwerpunkt auf höchster handwerklicher Qualität, Authentizität und traditionellen Stil.

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8005579318932881" container="container" class="row box-banner" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9609130361718644" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_2318812548924896" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-3.jpg" temp_description_1_1="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-3.jpg" temp_description_1_2="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-3.jpg" temp_description_1_3="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-3.jpg" temp_description_1_4="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-3.jpg" temp_description_1_5="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-3.jpg" temp_description_1_6="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" title="FASHION MEN" sub_title="Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style." image="h1-bn-1.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_6251714513079458" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_4865150831257053" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-4.jpg" temp_description_1_1="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-4.jpg" temp_description_1_2="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-4.jpg" temp_description_1_3="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-4.jpg" temp_description_1_4="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-4.jpg" temp_description_1_5="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-4.jpg" temp_description_1_6="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" title="fashion women" sub_title="Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style." image="h1-bn-2.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_3583033977578805" container="container" class="row box-manu" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4686070494711765" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApManuFacturersCarousel form_id="form_12369508672490075" imagetype="manu_default" order_way="asc" order_by="id_manufacturer" manu_limit="10" carousel_type="owlcarousel" items="6" itemsdesktop="5" itemsdesktopsmall="4" itemstablet="3" itemsmobile="2" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1"][/ApManuFacturersCarousel][/ApColumn][/ApRow][ApRow form_id="form_8399433550473712" container="container" class="row box-tabproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_10366443507217028" class="" tab_type="tabs-top" active_tab="1" fade_effect="1" override_folder="" active="1" title="Unser Produkt" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][ApTab form_id="form_20312536967511095" id="tab_4183733975071095" css_class="" image="" override_folder="" title="oben" sub_title=""][ApProductCarousel form_id="form_3979604892556792" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_5152455342698124" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_12901311915389972" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Hüte" sub_title=""][ApProductCarousel form_id="form_36739595802827106" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_14078663074688455" container="container" class="row box-instagram" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_1518472695550026" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow][ApRow form_id="form_2377233542341223" container="container" class="row box-latestnews" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7622322621312240" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_6692111358249496" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="360" bleoblogs_height="204" bleoblogs_show="0" show_title="1" show_desc="1" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="0" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="10" carousel_type="owlcarousel" items="2" itemsdesktop="2" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title="LATEST NEWS" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApBlog][/ApColumn][/ApRow]]]>
    moda uomo_APENTER_

    Progetta e produce una propria linea di abbigliamento maschile concentrandosi su artigianato di qualità, autenticità e stile tradizionale.

    "][/ApImage][/ApColumn][ApColumn form_id="form_6988059625809970" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5172215852305599" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image="h1-bn-2.jpg" url="#" description="

    moda donna

    _APENTER_

    Progetta e produce una propria linea di abbigliamento maschile concentrandosi su artigianato di qualità, autenticità e stile tradizionale.

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8005579318932881" container="container" class="row box-banner" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9609130361718644" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_2318812548924896" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-3.jpg" temp_description_1_1="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-3.jpg" temp_description_1_2="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-3.jpg" temp_description_1_3="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-3.jpg" temp_description_1_4="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-3.jpg" temp_description_1_5="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-3.jpg" temp_description_1_6="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" title="FASHION MEN" sub_title="Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style." image="h1-bn-1.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_6251714513079458" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_4865150831257053" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-4.jpg" temp_description_1_1="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-4.jpg" temp_description_1_2="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-4.jpg" temp_description_1_3="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-4.jpg" temp_description_1_4="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-4.jpg" temp_description_1_5="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-4.jpg" temp_description_1_6="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" title="fashion women" sub_title="Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style." image="h1-bn-2.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_3583033977578805" container="container" class="row box-manu" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4686070494711765" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApManuFacturersCarousel form_id="form_12369508672490075" imagetype="manu_default" order_way="asc" order_by="id_manufacturer" manu_limit="10" carousel_type="owlcarousel" items="6" itemsdesktop="5" itemsdesktopsmall="4" itemstablet="3" itemsmobile="2" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1"][/ApManuFacturersCarousel][/ApColumn][/ApRow][ApRow form_id="form_8399433550473712" container="container" class="row box-tabproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_10366443507217028" class="" tab_type="tabs-top" active_tab="1" fade_effect="1" override_folder="" active="1" title="i nostri prodotti" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][ApTab form_id="form_20312536967511095" id="tab_4183733975071095" css_class="" image="" override_folder="" title="alto" sub_title=""][ApProductCarousel form_id="form_3979604892556792" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="Shoses" sub_title=""][ApProductCarousel form_id="form_5152455342698124" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_12901311915389972" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Cappelli" sub_title=""][ApProductCarousel form_id="form_36739595802827106" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_14078663074688455" container="container" class="row box-instagram" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_1518472695550026" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow][ApRow form_id="form_2377233542341223" container="container" class="row box-latestnews" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7622322621312240" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_6692111358249496" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="360" bleoblogs_height="204" bleoblogs_show="0" show_title="1" show_desc="1" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="0" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="10" carousel_type="owlcarousel" items="2" itemsdesktop="2" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title="LATEST NEWS" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApBlog][/ApColumn][/ApRow]]]>
    hombres de moda_APENTER_

    Diseña y fabrica su propia línea de ropa de hombre centrada en la artesanía de alta calidad, autenticidad y estilo tradicional.

    "][/ApImage][/ApColumn][ApColumn form_id="form_6988059625809970" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5172215852305599" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image="h1-bn-2.jpg" url="#" description="

    mujeres de moda

    _APENTER_

    Diseña y fabrica su propia línea de ropa de hombre centrada en la artesanía de alta calidad, autenticidad y estilo tradicional.

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8005579318932881" container="container" class="row box-banner" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9609130361718644" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_2318812548924896" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-3.jpg" temp_description_1_1="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-3.jpg" temp_description_1_2="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-3.jpg" temp_description_1_3="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-3.jpg" temp_description_1_4="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-3.jpg" temp_description_1_5="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-3.jpg" temp_description_1_6="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" title="FASHION MEN" sub_title="Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style." image="h1-bn-1.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_6251714513079458" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_4865150831257053" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-4.jpg" temp_description_1_1="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-4.jpg" temp_description_1_2="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-4.jpg" temp_description_1_3="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-4.jpg" temp_description_1_4="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-4.jpg" temp_description_1_5="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-4.jpg" temp_description_1_6="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" title="fashion women" sub_title="Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style." image="h1-bn-2.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_3583033977578805" container="container" class="row box-manu" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4686070494711765" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApManuFacturersCarousel form_id="form_12369508672490075" imagetype="manu_default" order_way="asc" order_by="id_manufacturer" manu_limit="10" carousel_type="owlcarousel" items="6" itemsdesktop="5" itemsdesktopsmall="4" itemstablet="3" itemsmobile="2" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1"][/ApManuFacturersCarousel][/ApColumn][/ApRow][ApRow form_id="form_8399433550473712" container="container" class="row box-tabproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_10366443507217028" class="" tab_type="tabs-top" active_tab="1" fade_effect="1" override_folder="" active="1" title="nuestros productos" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][ApTab form_id="form_20312536967511095" id="tab_4183733975071095" css_class="" image="" override_folder="" title="Arriba" sub_title=""][ApProductCarousel form_id="form_3979604892556792" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_5152455342698124" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_12901311915389972" id="tab_9543369996355988" css_class="" image="" override_folder="" title="sombreros" sub_title=""][ApProductCarousel form_id="form_36739595802827106" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_14078663074688455" container="container" class="row box-instagram" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_1518472695550026" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow][ApRow form_id="form_2377233542341223" container="container" class="row box-latestnews" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7622322621312240" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_6692111358249496" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="360" bleoblogs_height="204" bleoblogs_show="0" show_title="1" show_desc="1" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="0" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="10" carousel_type="owlcarousel" items="2" itemsdesktop="2" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title="LATEST NEWS" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApBlog][/ApColumn][/ApRow]]]>
    أزياء الرجال_APENTER_

    التصاميم وينتج السطر الخاص به من الرجالية مع التركيز على براعة عالية الجودة والأصالة والأنماط التقليدية.

    "][/ApImage][/ApColumn][ApColumn form_id="form_6988059625809970" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5172215852305599" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image="h1-bn-2.jpg" url="#" description="

    أزياء المرأة

    _APENTER_

    التصاميم وينتج السطر الخاص به من الرجالية مع التركيز على براعة عالية الجودة والأصالة والأنماط التقليدية.

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8005579318932881" container="container" class="row box-banner" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9609130361718644" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_2318812548924896" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-3.jpg" temp_description_1_1="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-3.jpg" temp_description_1_2="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-3.jpg" temp_description_1_3="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-3.jpg" temp_description_1_4="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-3.jpg" temp_description_1_5="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-3.jpg" temp_description_1_6="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" title="FASHION MEN" sub_title="Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style." image="h1-bn-1.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_6251714513079458" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_4865150831257053" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-4.jpg" temp_description_1_1="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-4.jpg" temp_description_1_2="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-4.jpg" temp_description_1_3="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-4.jpg" temp_description_1_4="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-4.jpg" temp_description_1_5="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-4.jpg" temp_description_1_6="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" title="fashion women" sub_title="Designs and produces its own line of menswear focusing on high-quality craftsmanship, authenticity and traditional style." image="h1-bn-2.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_3583033977578805" container="container" class="row box-manu" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4686070494711765" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApManuFacturersCarousel form_id="form_12369508672490075" imagetype="manu_default" order_way="asc" order_by="id_manufacturer" manu_limit="10" carousel_type="owlcarousel" items="6" itemsdesktop="5" itemsdesktopsmall="4" itemstablet="3" itemsmobile="2" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1"][/ApManuFacturersCarousel][/ApColumn][/ApRow][ApRow form_id="form_8399433550473712" container="container" class="row box-tabproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_10366443507217028" class="" tab_type="tabs-top" active_tab="1" fade_effect="1" override_folder="" active="1" title="منتجاتنا" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][ApTab form_id="form_20312536967511095" id="tab_4183733975071095" css_class="" image="" override_folder="" title="أعلى" sub_title=""][ApProductCarousel form_id="form_3979604892556792" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="شوسيس" sub_title=""][ApProductCarousel form_id="form_5152455342698124" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_12901311915389972" id="tab_9543369996355988" css_class="" image="" override_folder="" title="القبعات" sub_title=""][ApProductCarousel form_id="form_36739595802827106" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_14078663074688455" container="container" class="row box-instagram" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_1518472695550026" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow][ApRow form_id="form_2377233542341223" container="container" class="row box-latestnews" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7622322621312240" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_6692111358249496" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="360" bleoblogs_height="204" bleoblogs_show="0" show_title="1" show_desc="1" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="0" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="10" carousel_type="owlcarousel" items="2" itemsdesktop="2" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title="LATEST NEWS" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApBlog][/ApColumn][/ApRow]]]>
    0
    + 820 +
    +
    + + 9 + + 349
    _APENTER_

    Free Shipping Worldwide

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_34729563521571515" active="1" content_html="_APENTER_

    FREE 7 DAYS RETURN

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2261504203577878" active="1" content_html="_APENTER_

    MEMBER DISCOUNT

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2224845732490391" active="1" content_html="_APENTER_

    100% SECURE CHECKOUT

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_5789900641042023" container="container" class="row box-footerlink2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4583547534486813" xl="3" lg="3" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_6562775954352811" id_gencode="id_gencode_5e03219c980c8_1577263516" content_html="
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][ApColumn form_id="form_6829269925493309" xl="2" lg="2" md="4" sm="6" xs="6" sp="6" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_9894811157365360" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="7" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-cms" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][ApColumn form_id="form_9259088903035466" xl="2" lg="2" md="4" sm="6" xs="6" sp="6" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_8303100555506749" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2746274507924162" class="ap-popup2" xl="5" lg="5" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_11797727596673136" container="container" class="row box-coppy2" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_17831403220118838" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_19515417788462047" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_

    Livraison gratuite entier

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_34729563521571515" active="1" content_html="_APENTER_

    RETOUR GRATUIT 7 JOURS

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2261504203577878" active="1" content_html="_APENTER_

    RÉDUCTION MEMBRES

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2224845732490391" active="1" content_html="_APENTER_

    100% CAISSE SÉCURISÉE

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_5789900641042023" container="container" class="row box-footerlink2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4583547534486813" xl="3" lg="3" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_6562775954352811" id_gencode="id_gencode_5e03219c980c8_1577263516" content_html="
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][ApColumn form_id="form_6829269925493309" xl="2" lg="2" md="4" sm="6" xs="6" sp="6" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_9894811157365360" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="7" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-cms" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][ApColumn form_id="form_9259088903035466" xl="2" lg="2" md="4" sm="6" xs="6" sp="6" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_8303100555506749" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2746274507924162" class="ap-popup2" xl="5" lg="5" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_11797727596673136" container="container" class="row box-coppy2" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_17831403220118838" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_19515417788462047" accordion_type="full" active="1" content_html="
    2020 Copyright © Prestashoptemplate
    "][/ApHtml][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_

    Kostenloser Versand

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_34729563521571515" active="1" content_html="_APENTER_

    KOSTENLOSE 7 ZURÜCK

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2261504203577878" active="1" content_html="_APENTER_

    MITGLIEDSRABATT

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2224845732490391" active="1" content_html="_APENTER_

    100% SICHERE KASSE

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_5789900641042023" container="container" class="row box-footerlink2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4583547534486813" xl="3" lg="3" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_6562775954352811" id_gencode="id_gencode_5e03219c980c8_1577263516" content_html="
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][ApColumn form_id="form_6829269925493309" xl="2" lg="2" md="4" sm="6" xs="6" sp="6" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_9894811157365360" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="7" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-cms" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][ApColumn form_id="form_9259088903035466" xl="2" lg="2" md="4" sm="6" xs="6" sp="6" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_8303100555506749" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2746274507924162" class="ap-popup2" xl="5" lg="5" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_11797727596673136" container="container" class="row box-coppy2" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_17831403220118838" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_19515417788462047" accordion_type="full" active="1" content_html="
    2020 Copyright © Prestashoptemplate
    "][/ApHtml][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_

    Spedizione gratuita

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_34729563521571515" active="1" content_html="_APENTER_

    RITORNO GRATUITO 7 GIORNI

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2261504203577878" active="1" content_html="_APENTER_

    SCONTO PER I SOCI

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2224845732490391" active="1" content_html="_APENTER_

    CHECKOUT SICURO AL 100%

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_5789900641042023" container="container" class="row box-footerlink2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4583547534486813" xl="3" lg="3" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_6562775954352811" id_gencode="id_gencode_5e03219c980c8_1577263516" content_html="
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][ApColumn form_id="form_6829269925493309" xl="2" lg="2" md="4" sm="6" xs="6" sp="6" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_9894811157365360" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="7" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-cms" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][ApColumn form_id="form_9259088903035466" xl="2" lg="2" md="4" sm="6" xs="6" sp="6" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_8303100555506749" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2746274507924162" class="ap-popup2" xl="5" lg="5" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_11797727596673136" container="container" class="row box-coppy2" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_17831403220118838" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_19515417788462047" accordion_type="full" active="1" content_html="
    2020 Copyright © Prestashoptemplate
    "][/ApHtml][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_

    Envío gratuito

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_34729563521571515" active="1" content_html="_APENTER_

    GRATUITO 7 RETORNO

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2261504203577878" active="1" content_html="_APENTER_

    DESCUENTO MIEMBROS

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2224845732490391" active="1" content_html="_APENTER_

    100% SEGURO CHECKOUT

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_5789900641042023" container="container" class="row box-footerlink2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4583547534486813" xl="3" lg="3" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_6562775954352811" id_gencode="id_gencode_5e03219c980c8_1577263516" content_html="
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][ApColumn form_id="form_6829269925493309" xl="2" lg="2" md="4" sm="6" xs="6" sp="6" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_9894811157365360" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="7" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-cms" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][ApColumn form_id="form_9259088903035466" xl="2" lg="2" md="4" sm="6" xs="6" sp="6" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_8303100555506749" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2746274507924162" class="ap-popup2" xl="5" lg="5" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_11797727596673136" container="container" class="row box-coppy2" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_17831403220118838" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_19515417788462047" accordion_type="full" active="1" content_html="
    2020 Copyright © Prestashoptemplate
    "][/ApHtml][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_

    في جميع انحاء العالم

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_34729563521571515" active="1" content_html="_APENTER_

    مجانا 7 أيام العودة

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2261504203577878" active="1" content_html="_APENTER_

    MEMBER DISCOUNT

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2224845732490391" active="1" content_html="_APENTER_

    100% تامين الخروج الأمن

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_5789900641042023" container="container" class="row box-footerlink2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4583547534486813" xl="3" lg="3" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_6562775954352811" id_gencode="id_gencode_5e03219c980c8_1577263516" content_html="
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][ApColumn form_id="form_6829269925493309" xl="2" lg="2" md="4" sm="6" xs="6" sp="6" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_9894811157365360" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="7" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-cms" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][ApColumn form_id="form_9259088903035466" xl="2" lg="2" md="4" sm="6" xs="6" sp="6" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_8303100555506749" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2746274507924162" class="ap-popup2" xl="5" lg="5" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_11797727596673136" container="container" class="row box-coppy2" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_17831403220118838" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_19515417788462047" accordion_type="full" active="1" content_html="
    2020 حقوق الطبع والنشر © شوبيفيتيمبلاتي
    "][/ApHtml][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0 + 3590 + 3690 + + + + 4 + + 1240 + 1340 + 1440 + 1540 + 1640 + + + 2
    5
    6
    3
    4111 + + 5 + + 1750 + 1850 + 195GET IT OR REGRET IT, HUGE SAVINGS UP TO 90% OFF.
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_9107921531480348" container="container" class="row box-navlogo" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_42596914781451915" class="col-logo" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][/ApRow]]]>OBTENEZ-LE, OU REGRETTER, GROSSES ÉCONOMIES JUSQU_APAPOST_À 90 %.
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_9107921531480348" container="container" class="row box-navlogo" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_42596914781451915" class="col-logo" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][/ApRow]]]>GET IT ODER BEREUEN, ENORME EINSPARUNGEN BIS ZU 90 % RABATT.
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_9107921531480348" container="container" class="row box-navlogo" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_42596914781451915" class="col-logo" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][/ApRow]]]>GET IT O VE NE PENTIRETE, ENORMI RISPARMI FINO AL 90% DI SCONTO.
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_9107921531480348" container="container" class="row box-navlogo" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_42596914781451915" class="col-logo" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][/ApRow]]]>CONSEGUIRLO O TE ARREPENTIRÁS, GRANDES AHORROS HASTA 90% DE DESCUENTO.
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_9107921531480348" container="container" class="row box-navlogo" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_42596914781451915" class="col-logo" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][/ApRow]]]>الحصول عليه أو نأسف لذلك، تحقيق وفورات ضخمة تصل إلى 90 ٪.
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_9107921531480348" container="container" class="row box-navlogo" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_42596914781451915" class="col-logo" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][/ApRow]]]>0 + 205_APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>0 + 2150 + + + + 6 + + 2260 + 236WOMEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][ApColumn form_id="form_5640267512243279" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_3884297877689513" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" image="h2-bn-2.jpg" url="#" description="

    ACCESSORIES

    _APENTER_

    SALE OF 20%

    "][/ApImage][/ApColumn][ApColumn form_id="form_5618757444904008" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4025388496069852" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="h2-bn-3.jpg" url="#" description="

    MEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8595791556100682" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4514804052620586" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_30297481270649745" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="POPULAR THIS WEEK" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_7906949987527079" container="container" class="row box-title" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9756138974595056" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_24197183002398467" accordion_type="full" active="1" title="TREND FASHION 2017" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s," content_html="
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_18913968372329084" container="container" class="row box-fashion" min_height="549px" bg_config="fullwidth" bg_type="normal" bg_img="h2-bn-4.jpg" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7062410421020452" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_5813331492304039" accordion_type="full" active="1" content_html="
    Fashion office
    _APENTER_
    _APENTER_
    _APENTER_
    It is a long established fact that a reader will be distracted by
    _APENTER_
    the readable content of a page when looking at its layout
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_6751455694202996" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6504323218457879" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_29482358175079365" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3281294344224704" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_9709261493290508" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="NEW ARRIVALS" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_9804430916098300" id="" container="container" class="row box-instagram box-h2" min_height="" margin_top="" margin_bottom="" padding_top="40px" padding_bottom="" bg_config="boxed" bg_type="normal" bg_size="" bg_color="" bg_img="" bg_position="" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" video_link="" video_id="" specific_type="all" controller_id="" controller_pages="" active="1" title="" sub_title=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_7791075787570889" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="4" profile_link="" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow][ApRow form_id="form_7756259848233325" container="container" class="row box-shipping" bg_config="fullwidth" bg_type="normal" bg_color="#f8f8f8" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_21163144860309512" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7469820761722287" active="1" content_html="_APENTER_

    FREE SHIPPING, RETURN

    _APENTER_

    Free Shipping On All US Orders

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7919298428225112" active="1" content_html="_APENTER_

    MONEY BACK GUARANTEE

    _APENTER_

    30 Days Money Back Guarantee

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8258749716881160" active="1" content_html="_APENTER_

    SECURE PAYMENTS

    _APENTER_

    All Payment Are Secured And Trusted.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2410940678119141" active="1" content_html="_APENTER_

    1-800-333-44-55

    _APENTER_

    Hourly Time Slots For Deliveries.

    "][/ApRawHtml][/ApColumn][/ApRow]]]>
    WOMEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][ApColumn form_id="form_5640267512243279" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_3884297877689513" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" image="h2-bn-2.jpg" url="#" description="

    ACCESSORIES

    _APENTER_

    SALE OF 20%

    "][/ApImage][/ApColumn][ApColumn form_id="form_5618757444904008" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4025388496069852" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="h2-bn-3.jpg" url="#" description="

    MEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8595791556100682" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4514804052620586" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_30297481270649745" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="POPULAIRE CETTE SEMAINE" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_7906949987527079" container="container" class="row box-title" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9756138974595056" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_24197183002398467" accordion_type="full" active="1" title="TENDANCE MODE 2017" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s," content_html="
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_18913968372329084" container="container" class="row box-fashion" min_height="549px" bg_config="fullwidth" bg_type="normal" bg_img="h2-bn-4.jpg" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7062410421020452" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_5813331492304039" accordion_type="full" active="1" content_html="
    Bureau de la mode
    _APENTER_
    _APENTER_
    _APENTER_
    C’est un fait établi de longue date qu’un lecteur va se laisser
    _APENTER_
    distraire par le contenu lisible d’une page en regardant sa disposition
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_6751455694202996" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6504323218457879" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_29482358175079365" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3281294344224704" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_9709261493290508" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="NOUVEAUX ARRIVANTS" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_9804430916098300" id="" container="container" class="row box-instagram box-h2" min_height="" margin_top="" margin_bottom="" padding_top="40px" padding_bottom="" bg_config="boxed" bg_type="normal" bg_size="" bg_color="" bg_img="" bg_position="" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" video_link="" video_id="" specific_type="all" controller_id="" controller_pages="" active="1" title="" sub_title=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_7791075787570889" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="4" profile_link="" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow][ApRow form_id="form_7756259848233325" container="container" class="row box-shipping" bg_config="fullwidth" bg_type="normal" bg_color="#f8f8f8" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_21163144860309512" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7469820761722287" active="1" content_html=" _APENTER_

    LIVRAISON GRATUITE, RETOUR

    _APENTER_

    Livraison gratuite sur toutes les commandes aux États-Unis

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7919298428225112" active="1" content_html=" _APENTER_

    GARANTIE DE REMBOURSEMENT

    _APENTER_

    Garantie de remboursement de 30 jours

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8258749716881160" active="1" content_html=" _APENTER_

    PAIEMENTS SÉCURISÉS

    _APENTER_

    Tous les paiements sont sécurisés et approuvés.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2410940678119141" active="1" content_html="_APENTER_

    1-800-333-44-55

    _APENTER_

    Hourly Time Slots For Deliveries.

    "][/ApRawHtml][/ApColumn][/ApRow]]]>
    WOMEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][ApColumn form_id="form_5640267512243279" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_3884297877689513" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" image="h2-bn-2.jpg" url="#" description="

    ACCESSORIES

    _APENTER_

    SALE OF 20%

    "][/ApImage][/ApColumn][ApColumn form_id="form_5618757444904008" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4025388496069852" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="h2-bn-3.jpg" url="#" description="

    MEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8595791556100682" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4514804052620586" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_30297481270649745" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="BELIEBT IN DIESER WOCHE" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_7906949987527079" container="container" class="row box-title" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9756138974595056" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_24197183002398467" accordion_type="full" active="1" title="TREND FASHION 2017" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s," content_html="
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_18913968372329084" container="container" class="row box-fashion" min_height="549px" bg_config="fullwidth" bg_type="normal" bg_img="h2-bn-4.jpg" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7062410421020452" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_5813331492304039" accordion_type="full" active="1" content_html="
    Mode-Büro
    _APENTER_
    _APENTER_
    _APENTER_
    Es ist eine längst bekannte Tatsache, dass ein Leser
    _APENTER_
    durch den lesbaren Inhalt einer Seite abgelenkt wird, wenn man das layout
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_6751455694202996" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6504323218457879" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_29482358175079365" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3281294344224704" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_9709261493290508" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="NEU IM SORTIMENT" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_9804430916098300" id="" container="container" class="row box-instagram box-h2" min_height="" margin_top="" margin_bottom="" padding_top="40px" padding_bottom="" bg_config="boxed" bg_type="normal" bg_size="" bg_color="" bg_img="" bg_position="" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" video_link="" video_id="" specific_type="all" controller_id="" controller_pages="" active="1" title="" sub_title=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_7791075787570889" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="4" profile_link="" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow][ApRow form_id="form_7756259848233325" container="container" class="row box-shipping" bg_config="fullwidth" bg_type="normal" bg_color="#f8f8f8" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_21163144860309512" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7469820761722287" active="1" content_html=" _APENTER_

    KOSTENLOSER VERSAND, RÜCKGABE

    _APENTER_

    Kostenloser Versand für alle US-Bestellungen

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7919298428225112" active="1" content_html=" _APENTER_

    GELD-ZURÜCK-GARANTIE

    _APENTER_

    30 Tage Geld-Zurück-Garantie

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8258749716881160" active="1" content_html=" _APENTER_

    SICHERE ZAHLUNGEN

    _APENTER_

    Alle Zahlungen sind gesichert und vertrauenswürdig.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2410940678119141" active="1" content_html="_APENTER_

    1-800-333-44-55

    _APENTER_

    Hourly Time Slots For Deliveries.

    "][/ApRawHtml][/ApColumn][/ApRow]]]>
    WOMEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][ApColumn form_id="form_5640267512243279" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_3884297877689513" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" image="h2-bn-2.jpg" url="#" description="

    ACCESSORIES

    _APENTER_

    SALE OF 20%

    "][/ApImage][/ApColumn][ApColumn form_id="form_5618757444904008" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4025388496069852" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="h2-bn-3.jpg" url="#" description="

    MEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8595791556100682" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4514804052620586" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_30297481270649745" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="POPOLARI QUESTA SETTIMANA" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_7906949987527079" container="container" class="row box-title" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9756138974595056" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_24197183002398467" accordion_type="full" active="1" title="TENDENZA MODA 2017" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s," content_html="
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_18913968372329084" container="container" class="row box-fashion" min_height="549px" bg_config="fullwidth" bg_type="normal" bg_img="h2-bn-4.jpg" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7062410421020452" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_5813331492304039" accordion_type="full" active="1" content_html="
    Ufficio moda
    _APENTER_
    _APENTER_
    _APENTER_
    È un fatto da tempo stabilito che un lettore sarà distratto dal
    _APENTER_
    contenuto di una pagina leggibile quando guardando il layout
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_6751455694202996" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6504323218457879" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_29482358175079365" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3281294344224704" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_9709261493290508" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="NUOVI ARRIVI" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_9804430916098300" id="" container="container" class="row box-instagram box-h2" min_height="" margin_top="" margin_bottom="" padding_top="40px" padding_bottom="" bg_config="boxed" bg_type="normal" bg_size="" bg_color="" bg_img="" bg_position="" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" video_link="" video_id="" specific_type="all" controller_id="" controller_pages="" active="1" title="" sub_title=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_7791075787570889" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="4" profile_link="" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow][ApRow form_id="form_7756259848233325" container="container" class="row box-shipping" bg_config="fullwidth" bg_type="normal" bg_color="#f8f8f8" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_21163144860309512" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7469820761722287" active="1" content_html=" _APENTER_

    SPEDIZIONE GRATUITA, RITORNO

    _APENTER_

    Spedizione gratuita per tutti gli ordini negli Stati Uniti

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7919298428225112" active="1" content_html=" _APENTER_

    GARANZIA SOLDI INDIETRO

    _APENTER_

    Garanzia soddisfatti o rimborsati di 30 giorni

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8258749716881160" active="1" content_html=" _APENTER_

    PAGAMENTI SICURI

    _APENTER_

    Tutti i pagamenti sono garantiti e attendibili.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2410940678119141" active="1" content_html="_APENTER_

    1-800-333-44-55

    _APENTER_

    Hourly Time Slots For Deliveries.

    "][/ApRawHtml][/ApColumn][/ApRow]]]>
    WOMEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][ApColumn form_id="form_5640267512243279" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_3884297877689513" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" image="h2-bn-2.jpg" url="#" description="

    ACCESSORIES

    _APENTER_

    SALE OF 20%

    "][/ApImage][/ApColumn][ApColumn form_id="form_5618757444904008" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4025388496069852" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="h2-bn-3.jpg" url="#" description="

    MEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8595791556100682" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4514804052620586" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_30297481270649745" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="POPULARES ESTA SEMANA" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_7906949987527079" container="container" class="row box-title" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9756138974595056" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_24197183002398467" accordion_type="full" active="1" title="TENDENCIA MODA 2017" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s," content_html="
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_18913968372329084" container="container" class="row box-fashion" min_height="549px" bg_config="fullwidth" bg_type="normal" bg_img="h2-bn-4.jpg" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7062410421020452" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_5813331492304039" accordion_type="full" active="1" content_html="
    Bureau de la mode
    _APENTER_
    _APENTER_
    _APENTER_
    Es un hecho establecido durante mucho tiempo que un
    _APENTER_
    lector se distrajo por el contenido legible de una página en su diseño
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_6751455694202996" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6504323218457879" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_29482358175079365" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3281294344224704" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_9709261493290508" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="RECIÉN LLEGADOS" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_9804430916098300" id="" container="container" class="row box-instagram box-h2" min_height="" margin_top="" margin_bottom="" padding_top="40px" padding_bottom="" bg_config="boxed" bg_type="normal" bg_size="" bg_color="" bg_img="" bg_position="" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" video_link="" video_id="" specific_type="all" controller_id="" controller_pages="" active="1" title="" sub_title=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_7791075787570889" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="4" profile_link="" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow][ApRow form_id="form_7756259848233325" container="container" class="row box-shipping" bg_config="fullwidth" bg_type="normal" bg_color="#f8f8f8" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_21163144860309512" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7469820761722287" active="1" content_html=" _APENTER_

    ENVÍO GRATIS, DEVOLUCIÓN

    _APENTER_

    Envío gratis en todos los pedidos de EE. UU.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7919298428225112" active="1" content_html=" _APENTER_

    GARANTÍA DE DEVOLUCIÓN DEL DINERO

    _APENTER_

    Garantía de devolución de dinero de 30 días

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8258749716881160" active="1" content_html=" _APENTER_

    PAGOS SEGUROS

    _APENTER_

    Todos los pagos están garantizados y son de confianza.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2410940678119141" active="1" content_html="_APENTER_

    1-800-333-44-55

    _APENTER_

    Hourly Time Slots For Deliveries.

    "][/ApRawHtml][/ApColumn][/ApRow]]]>
    WOMEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][ApColumn form_id="form_5640267512243279" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_3884297877689513" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" image="h2-bn-2.jpg" url="#" description="

    ACCESSORIES

    _APENTER_

    SALE OF 20%

    "][/ApImage][/ApColumn][ApColumn form_id="form_5618757444904008" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4025388496069852" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="h2-bn-3.jpg" url="#" description="

    MEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8595791556100682" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4514804052620586" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_30297481270649745" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="شعبية هذا الأسبوع" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_7906949987527079" container="container" class="row box-title" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9756138974595056" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_24197183002398467" accordion_type="full" active="1" title="أزياء الاتجاه 2017" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s," content_html="
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_18913968372329084" container="container" class="row box-fashion" min_height="549px" bg_config="fullwidth" bg_type="normal" bg_img="h2-bn-4.jpg" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7062410421020452" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_5813331492304039" accordion_type="full" active="1" content_html="
    أزياء المكتب
    _APENTER_
    _APENTER_
    _APENTER_
    أنها حقيقة ثابتة منذ فترة طويلة أن قارئ سوف يصرف من قبل محتوى صفحة للقراءة عندما تبحث في تخطيطه
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_6751455694202996" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6504323218457879" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_29482358175079365" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3281294344224704" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_9709261493290508" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="الوافدين الجدد" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_9804430916098300" id="" container="container" class="row box-instagram box-h2" min_height="" margin_top="" margin_bottom="" padding_top="40px" padding_bottom="" bg_config="boxed" bg_type="normal" bg_size="" bg_color="" bg_img="" bg_position="" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" video_link="" video_id="" specific_type="all" controller_id="" controller_pages="" active="1" title="" sub_title=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_7791075787570889" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="4" profile_link="" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow][ApRow form_id="form_7756259848233325" container="container" class="row box-shipping" bg_config="fullwidth" bg_type="normal" bg_color="#f8f8f8" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_21163144860309512" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7469820761722287" active="1" content_html="_APENTER_

    حرية الملاحة، عودة

    _APENTER_

    شحن مجاني على جميع الطلبات الأمريكية

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7919298428225112" active="1" content_html="_APENTER_

    ضمان استعادة المال

    _APENTER_

    30 يوما ضمان استعادة الاموال

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8258749716881160" active="1" content_html="_APENTER_

    الدفعات الآمنة

    _APENTER_

    جميع الدفعات مضمونة وموثوق بها.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2410940678119141" active="1" content_html="_APENTER_

    1-800-333-44-55

    _APENTER_

    الفواصل الزمنية لكل ساعة لعمليات التسليم.

    "][/ApRawHtml][/ApColumn][/ApRow]]]>
    0
    + 2460 +
    +
    + + 3 + + 930 + 103ABOUT_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    OPENNING TIME

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="COMPANY"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="PROFILE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="CUSTOMER SERVICE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    SUR_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    TEMPS D’OUVERTURE

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="COMPAGNIE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="tous produits"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="SERVICE CLIENTÈLE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    ÜBER_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    OPENNING TIME

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="UNTERNEHMEN"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="Alle Produkte"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="KUNDEN SERVICE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    CIRCA_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    TEMPO DI APERTURA

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="AZIENDA"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="prodotti"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="SERVIZIO CLIENTI"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    ACERCA DE_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    TIEMPO DE APERTURA

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="EMPRESA"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="todos"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="SERVICIO CLIENTE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    حول_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    وقت الافتتاح

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="الشركة"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="جميع المنتجات"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="خدمة العملاء"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0
    + 113Copyright © 2020 by Prestashop Themes Template. All Rights Reserved"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 Copyright © Prestashoptemplate"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 Copyright © Prestashoptemplate"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 Copyright © Prestashoptemplate"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 Copyright © Prestashoptemplate"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 حقوق الطبع والنشر © شوبيفيتيمبلاتي"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>0 +
    +
    + + 4 + + 1240 + 1340 + 1440 + 1540 + 1640 + + + 3
    1
    7
    3
    4000 + + 1 + + 110 + 210 + 310 + 41_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_9184166521380958" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_9184166521380958" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_9184166521380958" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_9184166521380958" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_9184166521380958" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_9184166521380958" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0
    + 510 +
    +
    + + 7 + + 2570 + 267_APENTER_

    FREE SHIPPING, RETURN

    _APENTER_

    Free Shipping On All US Orders

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7919298428225112" active="1" content_html="_APENTER_

    MONEY BACK GUARANTEE

    _APENTER_

    30 Days Money Back Guarantee

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8258749716881160" active="1" content_html="_APENTER_

    SECURE PAYMENTS

    _APENTER_

    All Payment Are Secured And Trusted.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2410940678119141" active="1" content_html="_APENTER_

    1-800-333-44-55

    _APENTER_

    Hourly Time Slots For Deliveries.

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_1325637972835446" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_866837504645118" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_8595791556100682" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4514804052620586" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_3211147739204624" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="POPULAR THIS WEEK" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_8440664475503981" container="container" class="row box-cateh2 box-h3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6109081680959436" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8119877220115495" animation="none" animation_delay="0.5" class="title-top-right" is_open="0" width="100%" height="auto" active="1" image="h3-bn-1.jpg" url="#" description="

    ACCESSORIES

    _APENTER_

    SALE OF 20%

    "][/ApImage][/ApColumn][ApColumn form_id="form_1126158308723930" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_24347095238716795" animation="none" animation_delay="0.5" class="image-full title-top" is_open="0" width="100%" height="auto" active="1" image="h3-bn-2.jpg" url="#" description="

    KIDS

    _APENTER_

    New Collection

    "][/ApImage][ApImage form_id="form_19973785299512012" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" active="1" image="h3-bn-3.jpg" url="#" description="

    CHILDEN

    _APENTER_

    New Collection

    "][/ApImage][ApImage form_id="form_15857005032938122" animation="none" animation_delay="0.5" class="title-top-right" is_open="0" width="100%" height="auto" active="1" image="h3-bn-4.jpg" url="#" description="

    MEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8399433550473712" container="container" class="row box-tabproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_10366443507217028" class="" tab_type="tabs-top" active_tab="1" fade_effect="1" override_folder="" active="1" title="our products" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][ApTab form_id="form_20312536967511095" id="tab_4183733975071095" css_class="" image="" override_folder="" title="Top" sub_title=""][ApProductCarousel form_id="form_9965345361421358" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_10001447007857588" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_12901311915389972" id="tab_9543369996355988" css_class="" image="" override_folder="" title="hats" sub_title=""][ApProductCarousel form_id="form_8030615583881261" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_8875616218527345" container="container" class="row box-bnh3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_18148040083714285" xl="6" lg="6" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_9965330124955594" animation="none" animation_delay="0.5" class="effect" is_open="0" width="100%" height="auto" image="h3-bn-5.jpg" url="#"][/ApImage][/ApColumn][ApColumn form_id="form_40204856901964685" xl="6" lg="6" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5278375995462424" animation="none" animation_delay="0.5" class="effect" is_open="0" width="100%" height="auto" image="h3-bn-6.jpg" url="#"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_9044175042617484" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2356152239384111" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_7663324180802813" class="row box-instagram box-h3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_15329076760490645" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="6" itemsdesktopsmall="5" itemstablet="4" itemsmobile="3" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 3_APCBRACKET_, _APOBRACKET_576, 4_APCBRACKET_, _APOBRACKET_768, 5_APCBRACKET_, _APOBRACKET_992, 6_APCBRACKET_, _APOBRACKET_1200, 6_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow]]]>
    _APENTER_

    LIVRAISON GRATUITE, RETOUR

    _APENTER_

    Livraison gratuite sur toutes les commandes aux États-Unis

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7919298428225112" active="1" content_html=" _APENTER_

    GARANTIE DE REMBOURSEMENT

    _APENTER_

    Garantie de remboursement de 30 jours

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8258749716881160" active="1" content_html=" _APENTER_

    PAIEMENTS SÉCURISÉS

    _APENTER_

    Tous les paiements sont sécurisés et approuvés.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2410940678119141" active="1" content_html="_APENTER_

    1-800-333-44-55

    _APENTER_

    Hourly Time Slots For Deliveries.

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_1325637972835446" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_866837504645118" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_8595791556100682" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4514804052620586" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_3211147739204624" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="POPULAIRE CETTE SEMAINE" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_8440664475503981" container="container" class="row box-cateh2 box-h3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6109081680959436" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8119877220115495" animation="none" animation_delay="0.5" class="title-top-right" is_open="0" width="100%" height="auto" active="1" image="h3-bn-1.jpg" url="#" description="

    ACCESSORIES

    _APENTER_

    SALE OF 20%

    "][/ApImage][/ApColumn][ApColumn form_id="form_1126158308723930" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_24347095238716795" animation="none" animation_delay="0.5" class="image-full title-top" is_open="0" width="100%" height="auto" active="1" image="h3-bn-2.jpg" url="#" description="

    KIDS

    _APENTER_

    New Collection

    "][/ApImage][ApImage form_id="form_19973785299512012" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" active="1" image="h3-bn-3.jpg" url="#" description="

    CHILDEN

    _APENTER_

    New Collection

    "][/ApImage][ApImage form_id="form_15857005032938122" animation="none" animation_delay="0.5" class="title-top-right" is_open="0" width="100%" height="auto" active="1" image="h3-bn-4.jpg" url="#" description="

    MEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8399433550473712" container="container" class="row box-tabproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_10366443507217028" class="" tab_type="tabs-top" active_tab="1" fade_effect="1" override_folder="" active="1" title="notre produit" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][ApTab form_id="form_20312536967511095" id="tab_4183733975071095" css_class="" image="" override_folder="" title="Retour" sub_title=""][ApProductCarousel form_id="form_9965345361421358" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_10001447007857588" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_12901311915389972" id="tab_9543369996355988" css_class="" image="" override_folder="" title="New Tab" sub_title=""][ApProductCarousel form_id="form_8030615583881261" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_8875616218527345" container="container" class="row box-bnh3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_18148040083714285" xl="6" lg="6" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_9965330124955594" animation="none" animation_delay="0.5" class="effect" is_open="0" width="100%" height="auto" image="h3-bn-5.jpg" url="#"][/ApImage][/ApColumn][ApColumn form_id="form_40204856901964685" xl="6" lg="6" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5278375995462424" animation="none" animation_delay="0.5" class="effect" is_open="0" width="100%" height="auto" image="h3-bn-6.jpg" url="#"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_9044175042617484" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2356152239384111" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_7663324180802813" class="row box-instagram box-h3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_15329076760490645" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="6" itemsdesktopsmall="5" itemstablet="4" itemsmobile="3" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 3_APCBRACKET_, _APOBRACKET_576, 4_APCBRACKET_, _APOBRACKET_768, 5_APCBRACKET_, _APOBRACKET_992, 6_APCBRACKET_, _APOBRACKET_1200, 6_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow]]]>
    _APENTER_

    KOSTENLOSER VERSAND, RÜCKGABE

    _APENTER_

    Kostenloser Versand für alle US-Bestellungen

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7919298428225112" active="1" content_html=" _APENTER_

    GELD-ZURÜCK-GARANTIE

    _APENTER_

    30 Tage Geld-Zurück-Garantie

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8258749716881160" active="1" content_html=" _APENTER_

    SICHERE ZAHLUNGEN

    _APENTER_

    Alle Zahlungen sind gesichert und vertrauenswürdig.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2410940678119141" active="1" content_html="_APENTER_

    1-800-333-44-55

    _APENTER_

    Hourly Time Slots For Deliveries.

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_1325637972835446" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_866837504645118" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_8595791556100682" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4514804052620586" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_3211147739204624" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="BELIEBT IN DIESER WOCHE" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_8440664475503981" container="container" class="row box-cateh2 box-h3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6109081680959436" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8119877220115495" animation="none" animation_delay="0.5" class="title-top-right" is_open="0" width="100%" height="auto" active="1" image="h3-bn-1.jpg" url="#" description="

    ACCESSORIES

    _APENTER_

    SALE OF 20%

    "][/ApImage][/ApColumn][ApColumn form_id="form_1126158308723930" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_24347095238716795" animation="none" animation_delay="0.5" class="image-full title-top" is_open="0" width="100%" height="auto" active="1" image="h3-bn-2.jpg" url="#" description="

    KIDS

    _APENTER_

    New Collection

    "][/ApImage][ApImage form_id="form_19973785299512012" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" active="1" image="h3-bn-3.jpg" url="#" description="

    CHILDEN

    _APENTER_

    New Collection

    "][/ApImage][ApImage form_id="form_15857005032938122" animation="none" animation_delay="0.5" class="title-top-right" is_open="0" width="100%" height="auto" active="1" image="h3-bn-4.jpg" url="#" description="

    MEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8399433550473712" container="container" class="row box-tabproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_10366443507217028" class="" tab_type="tabs-top" active_tab="1" fade_effect="1" override_folder="" active="1" title="Unser Produkt" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][ApTab form_id="form_20312536967511095" id="tab_4183733975071095" css_class="" image="" override_folder="" title="oben" sub_title=""][ApProductCarousel form_id="form_9965345361421358" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_10001447007857588" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_12901311915389972" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Hüte" sub_title=""][ApProductCarousel form_id="form_8030615583881261" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_8875616218527345" container="container" class="row box-bnh3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_18148040083714285" xl="6" lg="6" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_9965330124955594" animation="none" animation_delay="0.5" class="effect" is_open="0" width="100%" height="auto" image="h3-bn-5.jpg" url="#"][/ApImage][/ApColumn][ApColumn form_id="form_40204856901964685" xl="6" lg="6" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5278375995462424" animation="none" animation_delay="0.5" class="effect" is_open="0" width="100%" height="auto" image="h3-bn-6.jpg" url="#"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_9044175042617484" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2356152239384111" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_7663324180802813" class="row box-instagram box-h3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_15329076760490645" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="6" itemsdesktopsmall="5" itemstablet="4" itemsmobile="3" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 3_APCBRACKET_, _APOBRACKET_576, 4_APCBRACKET_, _APOBRACKET_768, 5_APCBRACKET_, _APOBRACKET_992, 6_APCBRACKET_, _APOBRACKET_1200, 6_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow]]]>
    _APENTER_

    SPEDIZIONE GRATUITA, RITORNO

    _APENTER_

    Spedizione gratuita per tutti gli ordini negli Stati Uniti

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7919298428225112" active="1" content_html=" _APENTER_

    GARANZIA SOLDI INDIETRO

    _APENTER_

    Garanzia soddisfatti o rimborsati di 30 giorni

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8258749716881160" active="1" content_html=" _APENTER_

    PAGAMENTI SICURI

    _APENTER_

    Tutti i pagamenti sono garantiti e attendibili.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2410940678119141" active="1" content_html="_APENTER_

    1-800-333-44-55

    _APENTER_

    Hourly Time Slots For Deliveries.

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_1325637972835446" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_866837504645118" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_8595791556100682" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4514804052620586" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_3211147739204624" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="POPOLARI QUESTA SETTIMANA" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_8440664475503981" container="container" class="row box-cateh2 box-h3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6109081680959436" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8119877220115495" animation="none" animation_delay="0.5" class="title-top-right" is_open="0" width="100%" height="auto" active="1" image="h3-bn-1.jpg" url="#" description="

    ACCESSORIES

    _APENTER_

    SALE OF 20%

    "][/ApImage][/ApColumn][ApColumn form_id="form_1126158308723930" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_24347095238716795" animation="none" animation_delay="0.5" class="image-full title-top" is_open="0" width="100%" height="auto" active="1" image="h3-bn-2.jpg" url="#" description="

    KIDS

    _APENTER_

    New Collection

    "][/ApImage][ApImage form_id="form_19973785299512012" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" active="1" image="h3-bn-3.jpg" url="#" description="

    CHILDEN

    _APENTER_

    New Collection

    "][/ApImage][ApImage form_id="form_15857005032938122" animation="none" animation_delay="0.5" class="title-top-right" is_open="0" width="100%" height="auto" active="1" image="h3-bn-4.jpg" url="#" description="

    MEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8399433550473712" container="container" class="row box-tabproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_10366443507217028" class="" tab_type="tabs-top" active_tab="1" fade_effect="1" override_folder="" active="1" title="i nostri prodotti" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][ApTab form_id="form_20312536967511095" id="tab_4183733975071095" css_class="" image="" override_folder="" title="alto" sub_title=""][ApProductCarousel form_id="form_9965345361421358" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="Shoses" sub_title=""][ApProductCarousel form_id="form_10001447007857588" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_12901311915389972" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Cappelli" sub_title=""][ApProductCarousel form_id="form_8030615583881261" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_8875616218527345" container="container" class="row box-bnh3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_18148040083714285" xl="6" lg="6" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_9965330124955594" animation="none" animation_delay="0.5" class="effect" is_open="0" width="100%" height="auto" image="h3-bn-5.jpg" url="#"][/ApImage][/ApColumn][ApColumn form_id="form_40204856901964685" xl="6" lg="6" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5278375995462424" animation="none" animation_delay="0.5" class="effect" is_open="0" width="100%" height="auto" image="h3-bn-6.jpg" url="#"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_9044175042617484" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2356152239384111" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_7663324180802813" class="row box-instagram box-h3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_15329076760490645" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="6" itemsdesktopsmall="5" itemstablet="4" itemsmobile="3" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 3_APCBRACKET_, _APOBRACKET_576, 4_APCBRACKET_, _APOBRACKET_768, 5_APCBRACKET_, _APOBRACKET_992, 6_APCBRACKET_, _APOBRACKET_1200, 6_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow]]]>
    _APENTER_

    ENVÍO GRATIS, DEVOLUCIÓN

    _APENTER_

    Envío gratis en todos los pedidos de EE. UU.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7919298428225112" active="1" content_html=" _APENTER_

    GARANTÍA DE DEVOLUCIÓN DEL DINERO

    _APENTER_

    Garantía de devolución de dinero de 30 días

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8258749716881160" active="1" content_html=" _APENTER_

    PAGOS SEGUROS

    _APENTER_

    Todos los pagos están garantizados y son de confianza.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2410940678119141" active="1" content_html="_APENTER_

    1-800-333-44-55

    _APENTER_

    Hourly Time Slots For Deliveries.

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_1325637972835446" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_866837504645118" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_8595791556100682" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4514804052620586" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_3211147739204624" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="POPULARES ESTA SEMANA" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_8440664475503981" container="container" class="row box-cateh2 box-h3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6109081680959436" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8119877220115495" animation="none" animation_delay="0.5" class="title-top-right" is_open="0" width="100%" height="auto" active="1" image="h3-bn-1.jpg" url="#" description="

    ACCESSORIES

    _APENTER_

    SALE OF 20%

    "][/ApImage][/ApColumn][ApColumn form_id="form_1126158308723930" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_24347095238716795" animation="none" animation_delay="0.5" class="image-full title-top" is_open="0" width="100%" height="auto" active="1" image="h3-bn-2.jpg" url="#" description="

    KIDS

    _APENTER_

    New Collection

    "][/ApImage][ApImage form_id="form_19973785299512012" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" active="1" image="h3-bn-3.jpg" url="#" description="

    CHILDEN

    _APENTER_

    New Collection

    "][/ApImage][ApImage form_id="form_15857005032938122" animation="none" animation_delay="0.5" class="title-top-right" is_open="0" width="100%" height="auto" active="1" image="h3-bn-4.jpg" url="#" description="

    MEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8399433550473712" container="container" class="row box-tabproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_10366443507217028" class="" tab_type="tabs-top" active_tab="1" fade_effect="1" override_folder="" active="1" title="nuestros productos" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][ApTab form_id="form_20312536967511095" id="tab_4183733975071095" css_class="" image="" override_folder="" title="Arriba" sub_title=""][ApProductCarousel form_id="form_9965345361421358" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_10001447007857588" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_12901311915389972" id="tab_9543369996355988" css_class="" image="" override_folder="" title="sombreros" sub_title=""][ApProductCarousel form_id="form_8030615583881261" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_8875616218527345" container="container" class="row box-bnh3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_18148040083714285" xl="6" lg="6" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_9965330124955594" animation="none" animation_delay="0.5" class="effect" is_open="0" width="100%" height="auto" image="h3-bn-5.jpg" url="#"][/ApImage][/ApColumn][ApColumn form_id="form_40204856901964685" xl="6" lg="6" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5278375995462424" animation="none" animation_delay="0.5" class="effect" is_open="0" width="100%" height="auto" image="h3-bn-6.jpg" url="#"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_9044175042617484" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2356152239384111" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_7663324180802813" class="row box-instagram box-h3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_15329076760490645" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="6" itemsdesktopsmall="5" itemstablet="4" itemsmobile="3" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 3_APCBRACKET_, _APOBRACKET_576, 4_APCBRACKET_, _APOBRACKET_768, 5_APCBRACKET_, _APOBRACKET_992, 6_APCBRACKET_, _APOBRACKET_1200, 6_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow]]]>
    _APENTER_

    حرية الملاحة، عودة

    _APENTER_

    شحن مجاني على جميع الطلبات الأمريكية

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_5777892511641927" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_7919298428225112" active="1" content_html="_APENTER_

    ضمان استعادة المال

    _APENTER_

    30 يوما ضمان استعادة الاموال

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_18807294799239652" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8258749716881160" active="1" content_html="_APENTER_

    الدفعات الآمنة

    _APENTER_

    جميع الدفعات مضمونة وموثوق بها.

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_41458738486489305" xl="3" lg="3" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_2410940678119141" active="1" content_html="_APENTER_

    1-800-333-44-55

    _APENTER_

    الفواصل الزمنية لكل ساعة لعمليات التسليم.

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_1325637972835446" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_866837504645118" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_8595791556100682" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4514804052620586" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_3211147739204624" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="شعبية هذا الأسبوع" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_8440664475503981" container="container" class="row box-cateh2 box-h3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6109081680959436" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8119877220115495" animation="none" animation_delay="0.5" class="title-top-right" is_open="0" width="100%" height="auto" active="1" image="h3-bn-1.jpg" url="#" description="

    ACCESSORIES

    _APENTER_

    SALE OF 20%

    "][/ApImage][/ApColumn][ApColumn form_id="form_1126158308723930" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_24347095238716795" animation="none" animation_delay="0.5" class="image-full title-top" is_open="0" width="100%" height="auto" active="1" image="h3-bn-2.jpg" url="#" description="

    KIDS

    _APENTER_

    New Collection

    "][/ApImage][ApImage form_id="form_19973785299512012" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" active="1" image="h3-bn-3.jpg" url="#" description="

    CHILDEN

    _APENTER_

    New Collection

    "][/ApImage][ApImage form_id="form_15857005032938122" animation="none" animation_delay="0.5" class="title-top-right" is_open="0" width="100%" height="auto" active="1" image="h3-bn-4.jpg" url="#" description="

    MEN

    _APENTER_

    New Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8399433550473712" container="container" class="row box-tabproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_10366443507217028" class="" tab_type="tabs-top" active_tab="1" fade_effect="1" override_folder="" active="1" title="منتجاتنا" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][ApTab form_id="form_20312536967511095" id="tab_4183733975071095" css_class="" image="" override_folder="" title="أعلى" sub_title=""][ApProductCarousel form_id="form_9965345361421358" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="شوسيس" sub_title=""][ApProductCarousel form_id="form_10001447007857588" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_12901311915389972" id="tab_9543369996355988" css_class="" image="" override_folder="" title="القبعات" sub_title=""][ApProductCarousel form_id="form_8030615583881261" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_8875616218527345" container="container" class="row box-bnh3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_18148040083714285" xl="6" lg="6" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_9965330124955594" animation="none" animation_delay="0.5" class="effect" is_open="0" width="100%" height="auto" image="h3-bn-5.jpg" url="#"][/ApImage][/ApColumn][ApColumn form_id="form_40204856901964685" xl="6" lg="6" md="6" sm="6" xs="6" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5278375995462424" animation="none" animation_delay="0.5" class="effect" is_open="0" width="100%" height="auto" image="h3-bn-6.jpg" url="#"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_9044175042617484" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2356152239384111" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_7663324180802813" class="row box-instagram box-h3" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_6974251346564987" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_15329076760490645" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="6" itemsdesktopsmall="5" itemstablet="4" itemsmobile="3" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 3_APCBRACKET_, _APOBRACKET_576, 4_APCBRACKET_, _APOBRACKET_768, 5_APCBRACKET_, _APOBRACKET_992, 6_APCBRACKET_, _APOBRACKET_1200, 6_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="#Instagram" sub_title="Lorem Ipsum has been the industry_APAPOST_s standard dummy text ever since the 1500s,"][/ApInstagram][/ApColumn][/ApRow]]]>
    0
    + 2770 +
    +
    + + 3 + + 930 + 103ABOUT_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    OPENNING TIME

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="COMPANY"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="PROFILE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="CUSTOMER SERVICE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    SUR_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    TEMPS D’OUVERTURE

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="COMPAGNIE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="tous produits"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="SERVICE CLIENTÈLE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    ÜBER_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    OPENNING TIME

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="UNTERNEHMEN"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="Alle Produkte"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="KUNDEN SERVICE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    CIRCA_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    TEMPO DI APERTURA

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="AZIENDA"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="prodotti"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="SERVIZIO CLIENTI"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    ACERCA DE_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    TIEMPO DE APERTURA

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="EMPRESA"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="todos"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="SERVICIO CLIENTE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    حول_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    وقت الافتتاح

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="الشركة"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="جميع المنتجات"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="خدمة العملاء"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0
    + 113Copyright © 2020 by Prestashop Themes Template. All Rights Reserved"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 Copyright © Prestashoptemplate"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 Copyright © Prestashoptemplate"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 Copyright © Prestashoptemplate"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 Copyright © Prestashoptemplate"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 حقوق الطبع والنشر © شوبيفيتيمبلاتي"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>0 +
    +
    + + 4 + + 1240 + 1340 + 1440 + 1540 + 1640 + +
    + 4
    10
    11
    12
    4000 + + 10 + + 38100 + 39100 + 40100 + 4110_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_5847140744789267" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_8906331463792934" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_9060846077316726" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_5847140744789267" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_8906331463792934" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_9060846077316726" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_5847140744789267" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_8906331463792934" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_9060846077316726" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_5847140744789267" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_8906331463792934" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_9060846077316726" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_5847140744789267" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_8906331463792934" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_9060846077316726" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_5847140744789267" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_8906331463792934" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_9060846077316726" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0
    + 42100 +
    +
    + + 11 + + 43110 + 4411Shoes Collections_APENTER_

    The Iconic Y-3 Qasa from the japanese designer

    _APENTER_

    Yohji Yamamoto are now available in the

    _APENTER_

    tripple white colorway.

    _APENTER_

    Shop now

    "][/ApImage][/ApColumn][ApColumn form_id="form_8519041377841603" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_11194138022097879" animation="none" animation_delay="0.5" class="color-white" is_open="0" width="100%" height="auto" active="1" image="h4-bn-2.jpg" description="

    Clothes

    _APENTER_

    Exclusive offers are available until

    _APENTER_

    June 21. Some restrictions may apply.

    _APENTER_

    Shop now

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_7560498223125530" container="container" class="row box-tabproducts4" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_31684674196368045" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_9877355322373810" id="tab_4183733975071095" css_class="" image="" override_folder="" title="New Arrivals" sub_title=""][ApProductCarousel form_id="form_29058126546496415" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 3_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_5132680693471442" id="tab_27640383554074415" css_class="" image="" override_folder="" title="Best Seller" sub_title=""][ApProductCarousel form_id="form_4534171269669501" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 3_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_25352088894656265" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Top Sale" sub_title=""][ApProductCarousel form_id="form_28619440328740315" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="8" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_5491243851283312" class="row box-h4bn2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_40313153523142915" class="col-left" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8265848167393443" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="New Arrivals" image="h4-bn-3.jpg" url="#" description="

    The Iconic Y-3 Qasa from the japanese designer

    _APENTER_

    Yohji Yamamoto are now available in the

    _APENTER_

    tripple white colorway.

    _APENTER_

    Shopping now

    "][/ApImage][/ApColumn][ApColumn form_id="form_8603982776353452" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5631177514630617" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="Woman Collection" image="h4-bn-4.jpg" url="#" description="

    Exclusive offers are available until June 21.

    _APENTER_

    Shopping now

    "][/ApImage][ApImage form_id="form_8392165732777171" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="Man Collection" image="h4-bn-5.jpg" url="#" description="

    Yamamoto are now available in the tripple white colorway

    "][/ApImage][ApImage form_id="form_4720459873345825" animation="none" animation_delay="0.5" class="cus-heigh50" is_open="0" width="100%" height="auto" active="1" title="Backpack for woman" image="h4-bn-6.jpg" url="#" description="

    New collection from the creative studio and brand label Over got to see it’s Spring ’15 release, wearing the name ...

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_65972826674269" container="container" class="row box-blogh4" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7622322621312240" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_2255876916089237" class="" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="540" bleoblogs_height="306" bleoblogs_show="0" show_title="1" show_desc="1" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="0" bleoblogs_scoun="1" bleoblogs_shits="1" order_way="desc" order_by="id_leoblog_blog" nb_blogs="10" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="2" itemsmobile="1" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" override_folder="" active="1" title="Our Journal" sub_title=""][/ApBlog][/ApColumn][/ApRow]]]>
    Shoes Collections_APENTER_

    The Iconic Y-3 Qasa from the japanese designer

    _APENTER_

    Yohji Yamamoto are now available in the

    _APENTER_

    tripple white colorway.

    _APENTER_

    Shop now

    "][/ApImage][/ApColumn][ApColumn form_id="form_8519041377841603" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_11194138022097879" animation="none" animation_delay="0.5" class="color-white" is_open="0" width="100%" height="auto" active="1" image="h4-bn-2.jpg" description="

    Clothes

    _APENTER_

    Exclusive offers are available until

    _APENTER_

    June 21. Some restrictions may apply.

    _APENTER_

    Shop now

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_7560498223125530" container="container" class="row box-tabproducts4" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_31684674196368045" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_9877355322373810" id="tab_4183733975071095" css_class="" image="" override_folder="" title="New Arrivals" sub_title=""][ApProductCarousel form_id="form_29058126546496415" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 3_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_5132680693471442" id="tab_27640383554074415" css_class="" image="" override_folder="" title="Best Seller" sub_title=""][ApProductCarousel form_id="form_4534171269669501" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 3_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_25352088894656265" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Top Sale" sub_title=""][ApProductCarousel form_id="form_28619440328740315" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="8" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_5491243851283312" class="row box-h4bn2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_40313153523142915" class="col-left" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8265848167393443" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="New Arrivals" image="h4-bn-3.jpg" url="#" description="

    The Iconic Y-3 Qasa from the japanese designer

    _APENTER_

    Yohji Yamamoto are now available in the

    _APENTER_

    tripple white colorway.

    _APENTER_

    Shopping now

    "][/ApImage][/ApColumn][ApColumn form_id="form_8603982776353452" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5631177514630617" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="Woman Collection" image="h4-bn-4.jpg" url="#" description="

    Exclusive offers are available until June 21.

    _APENTER_

    Shopping now

    "][/ApImage][ApImage form_id="form_8392165732777171" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="Man Collection" image="h4-bn-5.jpg" url="#" description="

    Yamamoto are now available in the tripple white colorway

    "][/ApImage][ApImage form_id="form_4720459873345825" animation="none" animation_delay="0.5" class="cus-heigh50" is_open="0" width="100%" height="auto" active="1" title="Backpack for woman" image="h4-bn-6.jpg" url="#" description="

    New collection from the creative studio and brand label Over got to see it’s Spring ’15 release, wearing the name ...

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_65972826674269" container="container" class="row box-blogh4" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7622322621312240" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_2255876916089237" class="" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="540" bleoblogs_height="306" bleoblogs_show="0" show_title="1" show_desc="1" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="0" bleoblogs_scoun="1" bleoblogs_shits="1" order_way="desc" order_by="id_leoblog_blog" nb_blogs="10" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="2" itemsmobile="1" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" override_folder="" active="1" title="Our Journal" sub_title=""][/ApBlog][/ApColumn][/ApRow]]]>
    Shoes Collections_APENTER_

    The Iconic Y-3 Qasa from the japanese designer

    _APENTER_

    Yohji Yamamoto are now available in the

    _APENTER_

    tripple white colorway.

    _APENTER_

    Shop now

    "][/ApImage][/ApColumn][ApColumn form_id="form_8519041377841603" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_11194138022097879" animation="none" animation_delay="0.5" class="color-white" is_open="0" width="100%" height="auto" active="1" image="h4-bn-2.jpg" description="

    Clothes

    _APENTER_

    Exclusive offers are available until

    _APENTER_

    June 21. Some restrictions may apply.

    _APENTER_

    Shop now

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_7560498223125530" container="container" class="row box-tabproducts4" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_31684674196368045" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_9877355322373810" id="tab_4183733975071095" css_class="" image="" override_folder="" title="New Arrivals" sub_title=""][ApProductCarousel form_id="form_29058126546496415" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 3_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_5132680693471442" id="tab_27640383554074415" css_class="" image="" override_folder="" title="Best Seller" sub_title=""][ApProductCarousel form_id="form_4534171269669501" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 3_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_25352088894656265" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Top Sale" sub_title=""][ApProductCarousel form_id="form_28619440328740315" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="8" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_5491243851283312" class="row box-h4bn2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_40313153523142915" class="col-left" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8265848167393443" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="New Arrivals" image="h4-bn-3.jpg" url="#" description="

    The Iconic Y-3 Qasa from the japanese designer

    _APENTER_

    Yohji Yamamoto are now available in the

    _APENTER_

    tripple white colorway.

    _APENTER_

    Shopping now

    "][/ApImage][/ApColumn][ApColumn form_id="form_8603982776353452" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5631177514630617" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="Woman Collection" image="h4-bn-4.jpg" url="#" description="

    Exclusive offers are available until June 21.

    _APENTER_

    Shopping now

    "][/ApImage][ApImage form_id="form_8392165732777171" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="Man Collection" image="h4-bn-5.jpg" url="#" description="

    Yamamoto are now available in the tripple white colorway

    "][/ApImage][ApImage form_id="form_4720459873345825" animation="none" animation_delay="0.5" class="cus-heigh50" is_open="0" width="100%" height="auto" active="1" title="Backpack for woman" image="h4-bn-6.jpg" url="#" description="

    New collection from the creative studio and brand label Over got to see it’s Spring ’15 release, wearing the name ...

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_65972826674269" container="container" class="row box-blogh4" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7622322621312240" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_2255876916089237" class="" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="540" bleoblogs_height="306" bleoblogs_show="0" show_title="1" show_desc="1" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="0" bleoblogs_scoun="1" bleoblogs_shits="1" order_way="desc" order_by="id_leoblog_blog" nb_blogs="10" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="2" itemsmobile="1" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" override_folder="" active="1" title="Our Journal" sub_title=""][/ApBlog][/ApColumn][/ApRow]]]>
    Shoes Collections_APENTER_

    The Iconic Y-3 Qasa from the japanese designer

    _APENTER_

    Yohji Yamamoto are now available in the

    _APENTER_

    tripple white colorway.

    _APENTER_

    Shop now

    "][/ApImage][/ApColumn][ApColumn form_id="form_8519041377841603" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_11194138022097879" animation="none" animation_delay="0.5" class="color-white" is_open="0" width="100%" height="auto" active="1" image="h4-bn-2.jpg" description="

    Clothes

    _APENTER_

    Exclusive offers are available until

    _APENTER_

    June 21. Some restrictions may apply.

    _APENTER_

    Shop now

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_7560498223125530" container="container" class="row box-tabproducts4" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_31684674196368045" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_9877355322373810" id="tab_4183733975071095" css_class="" image="" override_folder="" title="New Arrivals" sub_title=""][ApProductCarousel form_id="form_29058126546496415" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 3_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_5132680693471442" id="tab_27640383554074415" css_class="" image="" override_folder="" title="Best Seller" sub_title=""][ApProductCarousel form_id="form_4534171269669501" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 3_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_25352088894656265" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Top Sale" sub_title=""][ApProductCarousel form_id="form_28619440328740315" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="8" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_5491243851283312" class="row box-h4bn2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_40313153523142915" class="col-left" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8265848167393443" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="New Arrivals" image="h4-bn-3.jpg" url="#" description="

    The Iconic Y-3 Qasa from the japanese designer

    _APENTER_

    Yohji Yamamoto are now available in the

    _APENTER_

    tripple white colorway.

    _APENTER_

    Shopping now

    "][/ApImage][/ApColumn][ApColumn form_id="form_8603982776353452" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5631177514630617" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="Woman Collection" image="h4-bn-4.jpg" url="#" description="

    Exclusive offers are available until June 21.

    _APENTER_

    Shopping now

    "][/ApImage][ApImage form_id="form_8392165732777171" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="Man Collection" image="h4-bn-5.jpg" url="#" description="

    Yamamoto are now available in the tripple white colorway

    "][/ApImage][ApImage form_id="form_4720459873345825" animation="none" animation_delay="0.5" class="cus-heigh50" is_open="0" width="100%" height="auto" active="1" title="Backpack for woman" image="h4-bn-6.jpg" url="#" description="

    New collection from the creative studio and brand label Over got to see it’s Spring ’15 release, wearing the name ...

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_65972826674269" container="container" class="row box-blogh4" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7622322621312240" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_2255876916089237" class="" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="540" bleoblogs_height="306" bleoblogs_show="0" show_title="1" show_desc="1" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="0" bleoblogs_scoun="1" bleoblogs_shits="1" order_way="desc" order_by="id_leoblog_blog" nb_blogs="10" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="2" itemsmobile="1" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" override_folder="" active="1" title="Our Journal" sub_title=""][/ApBlog][/ApColumn][/ApRow]]]>
    Shoes Collections_APENTER_

    The Iconic Y-3 Qasa from the japanese designer

    _APENTER_

    Yohji Yamamoto are now available in the

    _APENTER_

    tripple white colorway.

    _APENTER_

    Shop now

    "][/ApImage][/ApColumn][ApColumn form_id="form_8519041377841603" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_11194138022097879" animation="none" animation_delay="0.5" class="color-white" is_open="0" width="100%" height="auto" active="1" image="h4-bn-2.jpg" description="

    Clothes

    _APENTER_

    Exclusive offers are available until

    _APENTER_

    June 21. Some restrictions may apply.

    _APENTER_

    Shop now

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_7560498223125530" container="container" class="row box-tabproducts4" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_31684674196368045" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_9877355322373810" id="tab_4183733975071095" css_class="" image="" override_folder="" title="New Arrivals" sub_title=""][ApProductCarousel form_id="form_29058126546496415" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 3_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_5132680693471442" id="tab_27640383554074415" css_class="" image="" override_folder="" title="Best Seller" sub_title=""][ApProductCarousel form_id="form_4534171269669501" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 3_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_25352088894656265" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Top Sale" sub_title=""][ApProductCarousel form_id="form_28619440328740315" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="8" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_5491243851283312" class="row box-h4bn2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_40313153523142915" class="col-left" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8265848167393443" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="New Arrivals" image="h4-bn-3.jpg" url="#" description="

    The Iconic Y-3 Qasa from the japanese designer

    _APENTER_

    Yohji Yamamoto are now available in the

    _APENTER_

    tripple white colorway.

    _APENTER_

    Shopping now

    "][/ApImage][/ApColumn][ApColumn form_id="form_8603982776353452" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5631177514630617" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="Woman Collection" image="h4-bn-4.jpg" url="#" description="

    Exclusive offers are available until June 21.

    _APENTER_

    Shopping now

    "][/ApImage][ApImage form_id="form_8392165732777171" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="Man Collection" image="h4-bn-5.jpg" url="#" description="

    Yamamoto are now available in the tripple white colorway

    "][/ApImage][ApImage form_id="form_4720459873345825" animation="none" animation_delay="0.5" class="cus-heigh50" is_open="0" width="100%" height="auto" active="1" title="Backpack for woman" image="h4-bn-6.jpg" url="#" description="

    New collection from the creative studio and brand label Over got to see it’s Spring ’15 release, wearing the name ...

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_65972826674269" container="container" class="row box-blogh4" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7622322621312240" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_2255876916089237" class="" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="540" bleoblogs_height="306" bleoblogs_show="0" show_title="1" show_desc="1" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="0" bleoblogs_scoun="1" bleoblogs_shits="1" order_way="desc" order_by="id_leoblog_blog" nb_blogs="10" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="2" itemsmobile="1" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" override_folder="" active="1" title="Our Journal" sub_title=""][/ApBlog][/ApColumn][/ApRow]]]>
    Shoes Collections_APENTER_

    The Iconic Y-3 Qasa from the japanese designer

    _APENTER_

    Yohji Yamamoto are now available in the

    _APENTER_

    tripple white colorway.

    _APENTER_

    Shop now

    "][/ApImage][/ApColumn][ApColumn form_id="form_8519041377841603" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_11194138022097879" animation="none" animation_delay="0.5" class="color-white" is_open="0" width="100%" height="auto" active="1" image="h4-bn-2.jpg" description="

    Clothes

    _APENTER_

    Exclusive offers are available until

    _APENTER_

    June 21. Some restrictions may apply.

    _APENTER_

    Shop now

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_7560498223125530" container="container" class="row box-tabproducts4" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_31684674196368045" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_9877355322373810" id="tab_4183733975071095" css_class="" image="" override_folder="" title="New Arrivals" sub_title=""][ApProductCarousel form_id="form_29058126546496415" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 3_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_5132680693471442" id="tab_27640383554074415" css_class="" image="" override_folder="" title="Best Seller" sub_title=""][ApProductCarousel form_id="form_4534171269669501" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 3_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_25352088894656265" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Top Sale" sub_title=""][ApProductCarousel form_id="form_28619440328740315" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="8" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_5491243851283312" class="row box-h4bn2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_40313153523142915" class="col-left" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8265848167393443" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="New Arrivals" image="h4-bn-3.jpg" url="#" description="

    The Iconic Y-3 Qasa from the japanese designer

    _APENTER_

    Yohji Yamamoto are now available in the

    _APENTER_

    tripple white colorway.

    _APENTER_

    Shopping now

    "][/ApImage][/ApColumn][ApColumn form_id="form_8603982776353452" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5631177514630617" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="Woman Collection" image="h4-bn-4.jpg" url="#" description="

    Exclusive offers are available until June 21.

    _APENTER_

    Shopping now

    "][/ApImage][ApImage form_id="form_8392165732777171" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="Man Collection" image="h4-bn-5.jpg" url="#" description="

    Yamamoto are now available in the tripple white colorway

    "][/ApImage][ApImage form_id="form_4720459873345825" animation="none" animation_delay="0.5" class="cus-heigh50" is_open="0" width="100%" height="auto" active="1" title="Backpack for woman" image="h4-bn-6.jpg" url="#" description="

    New collection from the creative studio and brand label Over got to see it’s Spring ’15 release, wearing the name ...

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_65972826674269" container="container" class="row box-blogh4" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_7622322621312240" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_2255876916089237" class="" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="540" bleoblogs_height="306" bleoblogs_show="0" show_title="1" show_desc="1" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="0" bleoblogs_scoun="1" bleoblogs_shits="1" order_way="desc" order_by="id_leoblog_blog" nb_blogs="10" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="2" itemsmobile="1" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" override_folder="" active="1" title="Our Journal" sub_title=""][/ApBlog][/ApColumn][/ApRow]]]>
    0
    + 45110 +
    +
    + + 12 + + 46120 + 4712Open Mon - Sat / 9 - 21h

    _APENTER_

    555 8th Avenue / 12th Floor

    _APENTER_

    New York, Ny 10018

    _APENTER_

    Hello@company.com

    _APENTER_

    _APPLUS_38 067 328 10 50

    "][/ApHtml][/ApColumn][ApColumn form_id="form_8526546459514332" class="ap-popup2" xl="3" lg="3" md="8" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    Open Mon - Sat / 9 - 21h

    _APENTER_

    555 8th Avenue / 12th Floor

    _APENTER_

    New York, Ny 10018

    _APENTER_

    Hello@company.com

    _APENTER_

    _APPLUS_38 067 328 10 50

    "][/ApHtml][/ApColumn][ApColumn form_id="form_8526546459514332" class="ap-popup2" xl="3" lg="3" md="8" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    Open Mon - Sat / 9 - 21h

    _APENTER_

    555 8th Avenue / 12th Floor

    _APENTER_

    New York, Ny 10018

    _APENTER_

    Hello@company.com

    _APENTER_

    _APPLUS_38 067 328 10 50

    "][/ApHtml][/ApColumn][ApColumn form_id="form_8526546459514332" class="ap-popup2" xl="3" lg="3" md="8" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    Open Mon - Sat / 9 - 21h

    _APENTER_

    555 8th Avenue / 12th Floor

    _APENTER_

    New York, Ny 10018

    _APENTER_

    Hello@company.com

    _APENTER_

    _APPLUS_38 067 328 10 50

    "][/ApHtml][/ApColumn][ApColumn form_id="form_8526546459514332" class="ap-popup2" xl="3" lg="3" md="8" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    Open Mon - Sat / 9 - 21h

    _APENTER_

    555 8th Avenue / 12th Floor

    _APENTER_

    New York, Ny 10018

    _APENTER_

    Hello@company.com

    _APENTER_

    _APPLUS_38 067 328 10 50

    "][/ApHtml][/ApColumn][ApColumn form_id="form_8526546459514332" class="ap-popup2" xl="3" lg="3" md="8" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    Open Mon - Sat / 9 - 21h

    _APENTER_

    555 8th Avenue / 12th Floor

    _APENTER_

    New York, Ny 10018

    _APENTER_

    Hello@company.com

    _APENTER_

    _APPLUS_38 067 328 10 50

    "][/ApHtml][/ApColumn][ApColumn form_id="form_8526546459514332" class="ap-popup2" xl="3" lg="3" md="8" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0
    + 4812Copyright © 2020 by Prestashop Themes Template."][/ApHtml][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>Copyright © 2020 by Prestashop Themes Template."][/ApHtml][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>Copyright © 2020 by Prestashop Themes Template."][/ApHtml][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>Copyright © 2020 by Prestashop Themes Template."][/ApHtml][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>Copyright © 2020 by Prestashop Themes Template."][/ApHtml][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>Copyright © 2020 by Prestashop Themes Template."][/ApHtml][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>0 +
    +
    + + 4 + + 1240 + 1340 + 1440 + 1540 + 1640 + +
    + 5
    13
    14
    15
    4000 + + 13 + + 49130 + 50130 + 5113GET IT OR REGRET IT, HUGE SAVINGS UP TO 90% OFF."][/ApHtml][/ApColumn][ApColumn form_id="form_8092834994910606" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_8925346465914693" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5748908873064874" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_33136433011411836" container="container" class="row box-logo4 box-header3" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4063359469173925" class="col-logo" xl="3" lg="3" md="3" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][ApColumn form_id="form_4849047657835820" class="col-info" xl="9" lg="9" md="9" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_7398917929417899" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    OBTENEZ-LE, OU REGRETTER, GROSSES ÉCONOMIES JUSQU_APAPOST_À 90 %."][/ApHtml][/ApColumn][ApColumn form_id="form_8092834994910606" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_8925346465914693" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5748908873064874" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_33136433011411836" container="container" class="row box-logo4 box-header3" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4063359469173925" class="col-logo" xl="3" lg="3" md="3" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][ApColumn form_id="form_4849047657835820" class="col-info" xl="9" lg="9" md="9" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_7398917929417899" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    GET IT ODER BEREUEN, ENORME EINSPARUNGEN BIS ZU 90 % RABATT."][/ApHtml][/ApColumn][ApColumn form_id="form_8092834994910606" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_8925346465914693" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5748908873064874" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_33136433011411836" container="container" class="row box-logo4 box-header3" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4063359469173925" class="col-logo" xl="3" lg="3" md="3" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][ApColumn form_id="form_4849047657835820" class="col-info" xl="9" lg="9" md="9" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_7398917929417899" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    GET IT O VE NE PENTIRETE, ENORMI RISPARMI FINO AL 90% DI SCONTO."][/ApHtml][/ApColumn][ApColumn form_id="form_8092834994910606" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_8925346465914693" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5748908873064874" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_33136433011411836" container="container" class="row box-logo4 box-header3" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4063359469173925" class="col-logo" xl="3" lg="3" md="3" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][ApColumn form_id="form_4849047657835820" class="col-info" xl="9" lg="9" md="9" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_7398917929417899" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    CONSEGUIRLO O TE ARREPENTIRÁS, GRANDES AHORROS HASTA 90% DE DESCUENTO."][/ApHtml][/ApColumn][ApColumn form_id="form_8092834994910606" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_8925346465914693" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5748908873064874" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_33136433011411836" container="container" class="row box-logo4 box-header3" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4063359469173925" class="col-logo" xl="3" lg="3" md="3" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][ApColumn form_id="form_4849047657835820" class="col-info" xl="9" lg="9" md="9" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_7398917929417899" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    الحصول عليه أو نأسف لذلك، تحقيق وفورات ضخمة تصل إلى 90 ٪."][/ApHtml][/ApColumn][ApColumn form_id="form_8092834994910606" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_8925346465914693" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5748908873064874" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_33136433011411836" container="container" class="row box-logo4 box-header3" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_4063359469173925" class="col-logo" xl="3" lg="3" md="3" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][ApColumn form_id="form_4849047657835820" class="col-info" xl="9" lg="9" md="9" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_7398917929417899" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0
    + 52130 + 53130 +
    +
    + + 14 + + 54140 + 5514WOMAN_APENTER_

    Elements
    Of Style

    _APENTER_

    See Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_6525932002705383" class="row box-bn5 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_21859803828678747" sm="6" xs="6" sp="6" md="6" lg="6" xl="6" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_6047169024078764" animation="none" animation_delay="0.5" class="img-text" is_open="0" width="100%" height="auto" active="1" image="h5-bn-4.jpg" description="

    MAN

    _APENTER_

    Man
    Lookbook

    _APENTER_

    See Collection

    "][/ApImage][/ApColumn][ApColumn form_id="form_7478658023215261" sm="6" xs="6" sp="6" md="6" lg="6" xl="6" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_7701890265050355" animation="none" animation_delay="0.5" class="effect-1" is_open="0" width="100%" height="auto" active="1" image="h5-bn-2.jpg" url="#"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_5784056704164425" class="row" min_height="60px" padding_bottom="5%" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7490118913485506" container="container" class="row box-tabproductsh5 arrow-top-right" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_9188407869713418" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="New Arrival" sub_title=""][ApTab form_id="form_19092657310747075" id="tab_4183733975071095" css_class="" image="" override_folder="" title="Clothing" sub_title=""][ApProductCarousel form_id="form_8767480826692321" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_6859806606856740" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_21484411238816918" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Wallets" sub_title=""][ApProductCarousel form_id="form_5010906716078290" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_17071077840782498" class="row" min_height="60px" padding_bottom="5%" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    WOMAN_APENTER_

    Elements
    Of Style

    _APENTER_

    See Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_6525932002705383" class="row box-bn5 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_21859803828678747" sm="6" xs="6" sp="6" md="6" lg="6" xl="6" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_6047169024078764" animation="none" animation_delay="0.5" class="img-text" is_open="0" width="100%" height="auto" active="1" image="h5-bn-4.jpg" description="

    MAN

    _APENTER_

    Man
    Lookbook

    _APENTER_

    See Collection

    "][/ApImage][/ApColumn][ApColumn form_id="form_7478658023215261" sm="6" xs="6" sp="6" md="6" lg="6" xl="6" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_7701890265050355" animation="none" animation_delay="0.5" class="effect-1" is_open="0" width="100%" height="auto" active="1" image="h5-bn-2.jpg" url="#"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_5784056704164425" class="row" min_height="60px" padding_bottom="5%" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7490118913485506" container="container" class="row box-tabproductsh5 arrow-top-right" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_9188407869713418" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="New Arrival" sub_title=""][ApTab form_id="form_19092657310747075" id="tab_4183733975071095" css_class="" image="" override_folder="" title="Clothing" sub_title=""][ApProductCarousel form_id="form_8767480826692321" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_6859806606856740" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_21484411238816918" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Wallets" sub_title=""][ApProductCarousel form_id="form_5010906716078290" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_17071077840782498" class="row" min_height="60px" padding_bottom="5%" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    WOMAN_APENTER_

    Elements
    Of Style

    _APENTER_

    See Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_6525932002705383" class="row box-bn5 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_21859803828678747" sm="6" xs="6" sp="6" md="6" lg="6" xl="6" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_6047169024078764" animation="none" animation_delay="0.5" class="img-text" is_open="0" width="100%" height="auto" active="1" image="h5-bn-4.jpg" description="

    MAN

    _APENTER_

    Man
    Lookbook

    _APENTER_

    See Collection

    "][/ApImage][/ApColumn][ApColumn form_id="form_7478658023215261" sm="6" xs="6" sp="6" md="6" lg="6" xl="6" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_7701890265050355" animation="none" animation_delay="0.5" class="effect-1" is_open="0" width="100%" height="auto" active="1" image="h5-bn-2.jpg" url="#"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_5784056704164425" class="row" min_height="60px" padding_bottom="5%" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7490118913485506" container="container" class="row box-tabproductsh5 arrow-top-right" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_9188407869713418" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="New Arrival" sub_title=""][ApTab form_id="form_19092657310747075" id="tab_4183733975071095" css_class="" image="" override_folder="" title="Clothing" sub_title=""][ApProductCarousel form_id="form_8767480826692321" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_6859806606856740" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_21484411238816918" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Wallets" sub_title=""][ApProductCarousel form_id="form_5010906716078290" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_17071077840782498" class="row" min_height="60px" padding_bottom="5%" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    WOMAN_APENTER_

    Elements
    Of Style

    _APENTER_

    See Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_6525932002705383" class="row box-bn5 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_21859803828678747" sm="6" xs="6" sp="6" md="6" lg="6" xl="6" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_6047169024078764" animation="none" animation_delay="0.5" class="img-text" is_open="0" width="100%" height="auto" active="1" image="h5-bn-4.jpg" description="

    MAN

    _APENTER_

    Man
    Lookbook

    _APENTER_

    See Collection

    "][/ApImage][/ApColumn][ApColumn form_id="form_7478658023215261" sm="6" xs="6" sp="6" md="6" lg="6" xl="6" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_7701890265050355" animation="none" animation_delay="0.5" class="effect-1" is_open="0" width="100%" height="auto" active="1" image="h5-bn-2.jpg" url="#"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_5784056704164425" class="row" min_height="60px" padding_bottom="5%" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7490118913485506" container="container" class="row box-tabproductsh5 arrow-top-right" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_9188407869713418" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="New Arrival" sub_title=""][ApTab form_id="form_19092657310747075" id="tab_4183733975071095" css_class="" image="" override_folder="" title="Clothing" sub_title=""][ApProductCarousel form_id="form_8767480826692321" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="Shoses" sub_title=""][ApProductCarousel form_id="form_6859806606856740" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_21484411238816918" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Wallets" sub_title=""][ApProductCarousel form_id="form_5010906716078290" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_17071077840782498" class="row" min_height="60px" padding_bottom="5%" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    WOMAN_APENTER_

    Elements
    Of Style

    _APENTER_

    See Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_6525932002705383" class="row box-bn5 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_21859803828678747" sm="6" xs="6" sp="6" md="6" lg="6" xl="6" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_6047169024078764" animation="none" animation_delay="0.5" class="img-text" is_open="0" width="100%" height="auto" active="1" image="h5-bn-4.jpg" description="

    MAN

    _APENTER_

    Man
    Lookbook

    _APENTER_

    See Collection

    "][/ApImage][/ApColumn][ApColumn form_id="form_7478658023215261" sm="6" xs="6" sp="6" md="6" lg="6" xl="6" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_7701890265050355" animation="none" animation_delay="0.5" class="effect-1" is_open="0" width="100%" height="auto" active="1" image="h5-bn-2.jpg" url="#"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_5784056704164425" class="row" min_height="60px" padding_bottom="5%" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7490118913485506" container="container" class="row box-tabproductsh5 arrow-top-right" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_9188407869713418" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="New Arrival" sub_title=""][ApTab form_id="form_19092657310747075" id="tab_4183733975071095" css_class="" image="" override_folder="" title="Clothing" sub_title=""][ApProductCarousel form_id="form_8767480826692321" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_6859806606856740" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_21484411238816918" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Wallets" sub_title=""][ApProductCarousel form_id="form_5010906716078290" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_17071077840782498" class="row" min_height="60px" padding_bottom="5%" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    WOMAN_APENTER_

    Elements
    Of Style

    _APENTER_

    See Collection

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_6525932002705383" class="row box-bn5 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_21859803828678747" sm="6" xs="6" sp="6" md="6" lg="6" xl="6" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_6047169024078764" animation="none" animation_delay="0.5" class="img-text" is_open="0" width="100%" height="auto" active="1" image="h5-bn-4.jpg" description="

    MAN

    _APENTER_

    Man
    Lookbook

    _APENTER_

    See Collection

    "][/ApImage][/ApColumn][ApColumn form_id="form_7478658023215261" sm="6" xs="6" sp="6" md="6" lg="6" xl="6" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_7701890265050355" animation="none" animation_delay="0.5" class="effect-1" is_open="0" width="100%" height="auto" active="1" image="h5-bn-2.jpg" url="#"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_5784056704164425" class="row" min_height="60px" padding_bottom="5%" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7490118913485506" container="container" class="row box-tabproductsh5 arrow-top-right" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2123000915777351" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_9188407869713418" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="New Arrival" sub_title=""][ApTab form_id="form_19092657310747075" id="tab_4183733975071095" css_class="" image="" override_folder="" title="Clothing" sub_title=""][ApProductCarousel form_id="form_8767480826692321" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_3236047626562981" id="tab_27640383554074415" css_class="" image="" override_folder="" title="شوسيس" sub_title=""][ApProductCarousel form_id="form_6859806606856740" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][ApTab form_id="form_21484411238816918" id="tab_9543369996355988" css_class="" image="" override_folder="" title="Wallets" sub_title=""][ApProductCarousel form_id="form_5010906716078290" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist3664911648" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_17071077840782498" class="row" min_height="60px" padding_bottom="5%" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    0
    + 56140 +
    +
    + + 15 + + 57150 + 5815© Movic - 2020

    "][/ApHtml][/ApColumn][ApColumn form_id="form_6927792048166995" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_8256072979542503" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][ApHtml form_id="form_20078930680530028" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][/ApColumn][/ApRow]]]>
    © Movic - 2020

    "][/ApHtml][/ApColumn][ApColumn form_id="form_6927792048166995" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_8256072979542503" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][ApHtml form_id="form_20078930680530028" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][/ApColumn][/ApRow]]]>
    © Movic - 2020

    "][/ApHtml][/ApColumn][ApColumn form_id="form_6927792048166995" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_8256072979542503" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][ApHtml form_id="form_20078930680530028" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][/ApColumn][/ApRow]]]>
    © Movic - 2020

    "][/ApHtml][/ApColumn][ApColumn form_id="form_6927792048166995" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_8256072979542503" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][ApHtml form_id="form_20078930680530028" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][/ApColumn][/ApRow]]]>
    © Movic - 2020

    "][/ApHtml][/ApColumn][ApColumn form_id="form_6927792048166995" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_8256072979542503" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][ApHtml form_id="form_20078930680530028" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][/ApColumn][/ApRow]]]>
    © Movic - 2020

    "][/ApHtml][/ApColumn][ApColumn form_id="form_6927792048166995" class="col-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_8256072979542503" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][ApHtml form_id="form_20078930680530028" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][/ApColumn][/ApRow]]]>
    0
    + 59150 +
    +
    + + 4 + + 1240 + 1340 + 1440 + 1540 + 1640 + +
    + 6
    16
    17
    18
    4000 + + 16 + + 60160 + 61160 + 62160 + 6316_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_8176570964166422" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_8176570964166422" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_8176570964166422" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_8176570964166422" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_8176570964166422" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_13583952778688515" class="col-menu" xl="8" lg="6" md="3" sm="3" xs="3" sp="3" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_8176570964166422" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][ApColumn form_id="form_24258642951823895" class="col-info" xl="2" lg="3" md="9" sm="9" xs="9" sp="9" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3696585720306177" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_7716339741919163" name_module="ps_searchbar" hook="displayTop" is_display="1" active="0"][/ApModule][ApModule form_id="form_5395145448399266" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApGenCode form_id="form_2740140129754044" id_gencode="id_gencode_5a3a2dbb41c1b_1513762235" content_html="
    _APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_
    " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0
    + 64160 +
    +
    + + 17 + + 65170 + 6617Parka With Contrast Interior_APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_2="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_3="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_4="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_5="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_6="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-1.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_6251714513079458" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_30722960414592435" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-4.jpg" temp_image_1_2="h6-bn-4.jpg" temp_image_1_3="h6-bn-4.jpg" temp_image_1_4="h6-bn-4.jpg" temp_image_1_5="h6-bn-4.jpg" temp_image_1_6="h6-bn-4.jpg" temp_imagealign_1="left" temp_description_1_1="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_2="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_3="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_4="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_5="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_6="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-2.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_6260627194960881" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_4110328026973455" class="row box-padding box-producth6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_8476321540627301" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductList form_id="form_9560429902268132" value_by_product_type="1" category_type="all" product_type="all" order_way="asc" order_by="id_product" columns="5" nb_products="10" profile="plist3664911648" use_animation="0" use_showmore="1" active="1" title="Recent Products"][/ApProductList][/ApColumn][/ApRow][ApRow form_id="form_28500481447904345" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_8113134533359042" class="row box-padding box-banner2h6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2519795140081872" xl="4" lg="4" md="4" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_7274001844783514" is_open="0" width="100%" height="auto" total_slider="2|1" temp_image_2_1="h6-bn-12.jpg" temp_image_2_2="h6-bn-12.jpg" temp_image_2_3="h6-bn-12.jpg" temp_image_2_4="h6-bn-12.jpg" temp_image_2_5="h6-bn-12.jpg" temp_image_2_6="h6-bn-12.jpg" temp_imagealign_2="left" temp_description_2_1="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_2="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_3="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_4="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_5="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_6="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_top_2="30" temp_left_2="60" temp_location_2="bottom" temp_textalign_2="left" temp_trigger_2="hoverable" temp_margin_2="0" temp_image_1_1="h6-bn-13.jpg" temp_description_1_1="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-13.jpg" temp_description_1_2="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-13.jpg" temp_description_1_3="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-13.jpg" temp_description_1_4="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-13.jpg" temp_description_1_5="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-13.jpg" temp_description_1_6="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_top_1="70" temp_left_1="30" temp_location_1="right" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" image="h6-bn-7.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_8479317393160951" xl="4" lg="4" md="4" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_9425193823219536" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-11.jpg" temp_image_1_2="h6-bn-11.jpg" temp_image_1_3="h6-bn-11.jpg" temp_image_1_4="h6-bn-11.jpg" temp_image_1_5="h6-bn-11.jpg" temp_image_1_6="h6-bn-11.jpg" temp_imagealign_1="left" temp_description_1_1="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_2="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_3="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_4="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_5="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_6="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_top_1="27" temp_left_1="54" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-8.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_8590335310843473" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_4573715250190247" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-10.jpg" temp_image_1_2="h6-bn-10.jpg" temp_image_1_3="h6-bn-10.jpg" temp_image_1_4="h6-bn-10.jpg" temp_image_1_5="h6-bn-10.jpg" temp_image_1_6="h6-bn-10.jpg" temp_imagealign_1="left" temp_description_1_1="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_2="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_3="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_4="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_5="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_6="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_top_1="70" temp_left_1="45" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-9.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_6722636846747279" class="row box-padding box-bntexth6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_12679885296636772" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_9051070833723302" accordion_type="full" active="1" content_html="

    End of Summer!

    _APENTER_

    Up to 40% off on all items

    _APENTER_"][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3491871931205320" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7553432844860979" container="container" class="row box-iconh6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9475905754134196" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_6970679095133906" active="1" content_html="_APENTER_

    Refund Policy

    _APENTER_

    Changed Your Mind? No Problem! You_APAPOST_re Covered By Our 30 Day Refund Policy

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_7901908721619982" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5584855853252699" active="1" content_html="_APENTER_

    Premium Packaging

    _APENTER_

    All Pieces Come Carefully Packed Complete With Dust Bags And Packaging So Gorgeous You_APAPOST_ll Want To Keep It!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_7870025988820256" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_25995811893654035" active="1" content_html="_APENTER_

    Superior Quality

    _APENTER_

    We Take Great Care To Ensure The Best Quality Leathers Are Used On All Our Pieces.

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_6483413810868916" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    Parka With Contrast Interior_APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_2="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_3="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_4="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_5="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_6="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-1.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_6251714513079458" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_30722960414592435" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-4.jpg" temp_image_1_2="h6-bn-4.jpg" temp_image_1_3="h6-bn-4.jpg" temp_image_1_4="h6-bn-4.jpg" temp_image_1_5="h6-bn-4.jpg" temp_image_1_6="h6-bn-4.jpg" temp_imagealign_1="left" temp_description_1_1="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_2="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_3="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_4="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_5="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_6="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-2.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_6260627194960881" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_4110328026973455" class="row box-padding box-producth6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_8476321540627301" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductList form_id="form_9560429902268132" value_by_product_type="1" category_type="all" product_type="all" order_way="asc" order_by="id_product" columns="5" nb_products="10" profile="plist3664911648" use_animation="0" use_showmore="1" active="1" title="Recent Products"][/ApProductList][/ApColumn][/ApRow][ApRow form_id="form_28500481447904345" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_8113134533359042" class="row box-padding box-banner2h6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2519795140081872" xl="4" lg="4" md="4" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_7274001844783514" is_open="0" width="100%" height="auto" total_slider="2|1" temp_image_2_1="h6-bn-12.jpg" temp_image_2_2="h6-bn-12.jpg" temp_image_2_3="h6-bn-12.jpg" temp_image_2_4="h6-bn-12.jpg" temp_image_2_5="h6-bn-12.jpg" temp_image_2_6="h6-bn-12.jpg" temp_imagealign_2="left" temp_description_2_1="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_2="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_3="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_4="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_5="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_6="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_top_2="30" temp_left_2="60" temp_location_2="bottom" temp_textalign_2="left" temp_trigger_2="hoverable" temp_margin_2="0" temp_image_1_1="h6-bn-13.jpg" temp_description_1_1="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-13.jpg" temp_description_1_2="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-13.jpg" temp_description_1_3="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-13.jpg" temp_description_1_4="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-13.jpg" temp_description_1_5="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-13.jpg" temp_description_1_6="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_top_1="70" temp_left_1="30" temp_location_1="right" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" image="h6-bn-7.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_8479317393160951" xl="4" lg="4" md="4" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_9425193823219536" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-11.jpg" temp_image_1_2="h6-bn-11.jpg" temp_image_1_3="h6-bn-11.jpg" temp_image_1_4="h6-bn-11.jpg" temp_image_1_5="h6-bn-11.jpg" temp_image_1_6="h6-bn-11.jpg" temp_imagealign_1="left" temp_description_1_1="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_2="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_3="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_4="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_5="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_6="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_top_1="27" temp_left_1="54" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-8.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_8590335310843473" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_4573715250190247" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-10.jpg" temp_image_1_2="h6-bn-10.jpg" temp_image_1_3="h6-bn-10.jpg" temp_image_1_4="h6-bn-10.jpg" temp_image_1_5="h6-bn-10.jpg" temp_image_1_6="h6-bn-10.jpg" temp_imagealign_1="left" temp_description_1_1="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_2="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_3="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_4="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_5="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_6="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_top_1="70" temp_left_1="45" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-9.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_6722636846747279" class="row box-padding box-bntexth6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_12679885296636772" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_9051070833723302" accordion_type="full" active="1" content_html="

    End of Summer!

    _APENTER_

    Up to 40% off on all items

    _APENTER_"][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3491871931205320" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7553432844860979" container="container" class="row box-iconh6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9475905754134196" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_6970679095133906" active="1" content_html="_APENTER_

    Refund Policy

    _APENTER_

    Changed Your Mind? No Problem! You_APAPOST_re Covered By Our 30 Day Refund Policy

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_7901908721619982" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5584855853252699" active="1" content_html="_APENTER_

    Premium Packaging

    _APENTER_

    All Pieces Come Carefully Packed Complete With Dust Bags And Packaging So Gorgeous You_APAPOST_ll Want To Keep It!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_7870025988820256" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_25995811893654035" active="1" content_html="_APENTER_

    Superior Quality

    _APENTER_

    We Take Great Care To Ensure The Best Quality Leathers Are Used On All Our Pieces.

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_6483413810868916" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    Parka With Contrast Interior_APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_2="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_3="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_4="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_5="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_6="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-1.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_6251714513079458" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_30722960414592435" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-4.jpg" temp_image_1_2="h6-bn-4.jpg" temp_image_1_3="h6-bn-4.jpg" temp_image_1_4="h6-bn-4.jpg" temp_image_1_5="h6-bn-4.jpg" temp_image_1_6="h6-bn-4.jpg" temp_imagealign_1="left" temp_description_1_1="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_2="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_3="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_4="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_5="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_6="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-2.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_6260627194960881" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_4110328026973455" class="row box-padding box-producth6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_8476321540627301" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductList form_id="form_9560429902268132" value_by_product_type="1" category_type="all" product_type="all" order_way="asc" order_by="id_product" columns="5" nb_products="10" profile="plist3664911648" use_animation="0" use_showmore="1" active="1" title="Recent Products"][/ApProductList][/ApColumn][/ApRow][ApRow form_id="form_28500481447904345" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_8113134533359042" class="row box-padding box-banner2h6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2519795140081872" xl="4" lg="4" md="4" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_7274001844783514" is_open="0" width="100%" height="auto" total_slider="2|1" temp_image_2_1="h6-bn-12.jpg" temp_image_2_2="h6-bn-12.jpg" temp_image_2_3="h6-bn-12.jpg" temp_image_2_4="h6-bn-12.jpg" temp_image_2_5="h6-bn-12.jpg" temp_image_2_6="h6-bn-12.jpg" temp_imagealign_2="left" temp_description_2_1="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_2="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_3="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_4="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_5="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_6="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_top_2="30" temp_left_2="60" temp_location_2="bottom" temp_textalign_2="left" temp_trigger_2="hoverable" temp_margin_2="0" temp_image_1_1="h6-bn-13.jpg" temp_description_1_1="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-13.jpg" temp_description_1_2="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-13.jpg" temp_description_1_3="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-13.jpg" temp_description_1_4="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-13.jpg" temp_description_1_5="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-13.jpg" temp_description_1_6="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_top_1="70" temp_left_1="30" temp_location_1="right" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" image="h6-bn-7.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_8479317393160951" xl="4" lg="4" md="4" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_9425193823219536" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-11.jpg" temp_image_1_2="h6-bn-11.jpg" temp_image_1_3="h6-bn-11.jpg" temp_image_1_4="h6-bn-11.jpg" temp_image_1_5="h6-bn-11.jpg" temp_image_1_6="h6-bn-11.jpg" temp_imagealign_1="left" temp_description_1_1="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_2="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_3="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_4="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_5="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_6="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_top_1="27" temp_left_1="54" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-8.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_8590335310843473" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_4573715250190247" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-10.jpg" temp_image_1_2="h6-bn-10.jpg" temp_image_1_3="h6-bn-10.jpg" temp_image_1_4="h6-bn-10.jpg" temp_image_1_5="h6-bn-10.jpg" temp_image_1_6="h6-bn-10.jpg" temp_imagealign_1="left" temp_description_1_1="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_2="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_3="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_4="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_5="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_6="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_top_1="70" temp_left_1="45" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-9.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_6722636846747279" class="row box-padding box-bntexth6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_12679885296636772" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_9051070833723302" accordion_type="full" active="1" content_html="

    End of Summer!

    _APENTER_

    Up to 40% off on all items

    _APENTER_"][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3491871931205320" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7553432844860979" container="container" class="row box-iconh6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9475905754134196" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_6970679095133906" active="1" content_html="_APENTER_

    Refund Policy

    _APENTER_

    Changed Your Mind? No Problem! You_APAPOST_re Covered By Our 30 Day Refund Policy

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_7901908721619982" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5584855853252699" active="1" content_html="_APENTER_

    Premium Packaging

    _APENTER_

    All Pieces Come Carefully Packed Complete With Dust Bags And Packaging So Gorgeous You_APAPOST_ll Want To Keep It!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_7870025988820256" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_25995811893654035" active="1" content_html="_APENTER_

    Superior Quality

    _APENTER_

    We Take Great Care To Ensure The Best Quality Leathers Are Used On All Our Pieces.

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_6483413810868916" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    Parka With Contrast Interior_APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_2="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_3="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_4="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_5="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_6="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-1.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_6251714513079458" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_30722960414592435" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-4.jpg" temp_image_1_2="h6-bn-4.jpg" temp_image_1_3="h6-bn-4.jpg" temp_image_1_4="h6-bn-4.jpg" temp_image_1_5="h6-bn-4.jpg" temp_image_1_6="h6-bn-4.jpg" temp_imagealign_1="left" temp_description_1_1="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_2="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_3="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_4="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_5="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_6="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-2.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_6260627194960881" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_4110328026973455" class="row box-padding box-producth6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_8476321540627301" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductList form_id="form_9560429902268132" value_by_product_type="1" category_type="all" product_type="all" order_way="asc" order_by="id_product" columns="5" nb_products="10" profile="plist3664911648" use_animation="0" use_showmore="1" active="1" title="Recent Products"][/ApProductList][/ApColumn][/ApRow][ApRow form_id="form_28500481447904345" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_8113134533359042" class="row box-padding box-banner2h6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2519795140081872" xl="4" lg="4" md="4" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_7274001844783514" is_open="0" width="100%" height="auto" total_slider="2|1" temp_image_2_1="h6-bn-12.jpg" temp_image_2_2="h6-bn-12.jpg" temp_image_2_3="h6-bn-12.jpg" temp_image_2_4="h6-bn-12.jpg" temp_image_2_5="h6-bn-12.jpg" temp_image_2_6="h6-bn-12.jpg" temp_imagealign_2="left" temp_description_2_1="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_2="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_3="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_4="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_5="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_6="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_top_2="30" temp_left_2="60" temp_location_2="bottom" temp_textalign_2="left" temp_trigger_2="hoverable" temp_margin_2="0" temp_image_1_1="h6-bn-13.jpg" temp_description_1_1="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-13.jpg" temp_description_1_2="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-13.jpg" temp_description_1_3="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-13.jpg" temp_description_1_4="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-13.jpg" temp_description_1_5="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-13.jpg" temp_description_1_6="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_top_1="70" temp_left_1="30" temp_location_1="right" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" image="h6-bn-7.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_8479317393160951" xl="4" lg="4" md="4" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_9425193823219536" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-11.jpg" temp_image_1_2="h6-bn-11.jpg" temp_image_1_3="h6-bn-11.jpg" temp_image_1_4="h6-bn-11.jpg" temp_image_1_5="h6-bn-11.jpg" temp_image_1_6="h6-bn-11.jpg" temp_imagealign_1="left" temp_description_1_1="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_2="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_3="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_4="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_5="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_6="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_top_1="27" temp_left_1="54" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-8.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_8590335310843473" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_4573715250190247" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-10.jpg" temp_image_1_2="h6-bn-10.jpg" temp_image_1_3="h6-bn-10.jpg" temp_image_1_4="h6-bn-10.jpg" temp_image_1_5="h6-bn-10.jpg" temp_image_1_6="h6-bn-10.jpg" temp_imagealign_1="left" temp_description_1_1="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_2="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_3="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_4="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_5="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_6="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_top_1="70" temp_left_1="45" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-9.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_6722636846747279" class="row box-padding box-bntexth6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_12679885296636772" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_9051070833723302" accordion_type="full" active="1" content_html="

    End of Summer!

    _APENTER_

    Up to 40% off on all items

    _APENTER_"][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3491871931205320" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7553432844860979" container="container" class="row box-iconh6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9475905754134196" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_6970679095133906" active="1" content_html="_APENTER_

    Refund Policy

    _APENTER_

    Changed Your Mind? No Problem! You_APAPOST_re Covered By Our 30 Day Refund Policy

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_7901908721619982" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5584855853252699" active="1" content_html="_APENTER_

    Premium Packaging

    _APENTER_

    All Pieces Come Carefully Packed Complete With Dust Bags And Packaging So Gorgeous You_APAPOST_ll Want To Keep It!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_7870025988820256" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_25995811893654035" active="1" content_html="_APENTER_

    Superior Quality

    _APENTER_

    We Take Great Care To Ensure The Best Quality Leathers Are Used On All Our Pieces.

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_6483413810868916" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    Parka With Contrast Interior_APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_2="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_3="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_4="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_5="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_6="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-1.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_6251714513079458" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_30722960414592435" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-4.jpg" temp_image_1_2="h6-bn-4.jpg" temp_image_1_3="h6-bn-4.jpg" temp_image_1_4="h6-bn-4.jpg" temp_image_1_5="h6-bn-4.jpg" temp_image_1_6="h6-bn-4.jpg" temp_imagealign_1="left" temp_description_1_1="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_2="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_3="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_4="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_5="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_6="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-2.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_6260627194960881" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_4110328026973455" class="row box-padding box-producth6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_8476321540627301" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductList form_id="form_9560429902268132" value_by_product_type="1" category_type="all" product_type="all" order_way="asc" order_by="id_product" columns="5" nb_products="10" profile="plist3664911648" use_animation="0" use_showmore="1" active="1" title="Recent Products"][/ApProductList][/ApColumn][/ApRow][ApRow form_id="form_28500481447904345" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_8113134533359042" class="row box-padding box-banner2h6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2519795140081872" xl="4" lg="4" md="4" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_7274001844783514" is_open="0" width="100%" height="auto" total_slider="2|1" temp_image_2_1="h6-bn-12.jpg" temp_image_2_2="h6-bn-12.jpg" temp_image_2_3="h6-bn-12.jpg" temp_image_2_4="h6-bn-12.jpg" temp_image_2_5="h6-bn-12.jpg" temp_image_2_6="h6-bn-12.jpg" temp_imagealign_2="left" temp_description_2_1="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_2="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_3="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_4="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_5="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_6="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_top_2="30" temp_left_2="60" temp_location_2="bottom" temp_textalign_2="left" temp_trigger_2="hoverable" temp_margin_2="0" temp_image_1_1="h6-bn-13.jpg" temp_description_1_1="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-13.jpg" temp_description_1_2="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-13.jpg" temp_description_1_3="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-13.jpg" temp_description_1_4="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-13.jpg" temp_description_1_5="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-13.jpg" temp_description_1_6="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_top_1="70" temp_left_1="30" temp_location_1="right" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" image="h6-bn-7.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_8479317393160951" xl="4" lg="4" md="4" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_9425193823219536" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-11.jpg" temp_image_1_2="h6-bn-11.jpg" temp_image_1_3="h6-bn-11.jpg" temp_image_1_4="h6-bn-11.jpg" temp_image_1_5="h6-bn-11.jpg" temp_image_1_6="h6-bn-11.jpg" temp_imagealign_1="left" temp_description_1_1="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_2="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_3="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_4="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_5="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_6="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_top_1="27" temp_left_1="54" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-8.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_8590335310843473" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_4573715250190247" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-10.jpg" temp_image_1_2="h6-bn-10.jpg" temp_image_1_3="h6-bn-10.jpg" temp_image_1_4="h6-bn-10.jpg" temp_image_1_5="h6-bn-10.jpg" temp_image_1_6="h6-bn-10.jpg" temp_imagealign_1="left" temp_description_1_1="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_2="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_3="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_4="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_5="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_6="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_top_1="70" temp_left_1="45" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-9.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_6722636846747279" class="row box-padding box-bntexth6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_12679885296636772" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_9051070833723302" accordion_type="full" active="1" content_html="

    End of Summer!

    _APENTER_

    Up to 40% off on all items

    _APENTER_"][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3491871931205320" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7553432844860979" container="container" class="row box-iconh6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9475905754134196" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_6970679095133906" active="1" content_html="_APENTER_

    Refund Policy

    _APENTER_

    Changed Your Mind? No Problem! You_APAPOST_re Covered By Our 30 Day Refund Policy

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_7901908721619982" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5584855853252699" active="1" content_html="_APENTER_

    Premium Packaging

    _APENTER_

    All Pieces Come Carefully Packed Complete With Dust Bags And Packaging So Gorgeous You_APAPOST_ll Want To Keep It!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_7870025988820256" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_25995811893654035" active="1" content_html="_APENTER_

    Superior Quality

    _APENTER_

    We Take Great Care To Ensure The Best Quality Leathers Are Used On All Our Pieces.

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_6483413810868916" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    Parka With Contrast Interior_APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_2="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_3="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_4="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_5="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_description_1_6="

    Parka With Contrast Interior

    _APENTER_

    $ 115.79

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-1.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_6251714513079458" xl="6" lg="6" md="6" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_30722960414592435" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-4.jpg" temp_image_1_2="h6-bn-4.jpg" temp_image_1_3="h6-bn-4.jpg" temp_image_1_4="h6-bn-4.jpg" temp_image_1_5="h6-bn-4.jpg" temp_image_1_6="h6-bn-4.jpg" temp_imagealign_1="left" temp_description_1_1="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_2="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_3="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_4="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_5="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_description_1_6="

    Maui Print Shirt

    _APENTER_

    $ 99,95

    _APENTER_SHOP NOW" temp_top_1="50" temp_left_1="50" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-2.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_6260627194960881" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_4110328026973455" class="row box-padding box-producth6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_8476321540627301" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductList form_id="form_9560429902268132" value_by_product_type="1" category_type="all" product_type="all" order_way="asc" order_by="id_product" columns="5" nb_products="10" profile="plist3664911648" use_animation="0" use_showmore="1" active="1" title="Recent Products"][/ApProductList][/ApColumn][/ApRow][ApRow form_id="form_28500481447904345" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_8113134533359042" class="row box-padding box-banner2h6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2519795140081872" xl="4" lg="4" md="4" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_7274001844783514" is_open="0" width="100%" height="auto" total_slider="2|1" temp_image_2_1="h6-bn-12.jpg" temp_image_2_2="h6-bn-12.jpg" temp_image_2_3="h6-bn-12.jpg" temp_image_2_4="h6-bn-12.jpg" temp_image_2_5="h6-bn-12.jpg" temp_image_2_6="h6-bn-12.jpg" temp_imagealign_2="left" temp_description_2_1="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_2="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_3="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_4="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_5="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_description_2_6="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_top_2="30" temp_left_2="60" temp_location_2="bottom" temp_textalign_2="left" temp_trigger_2="hoverable" temp_margin_2="0" temp_image_1_1="h6-bn-13.jpg" temp_description_1_1="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_2="h6-bn-13.jpg" temp_description_1_2="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_3="h6-bn-13.jpg" temp_description_1_3="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_4="h6-bn-13.jpg" temp_description_1_4="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_5="h6-bn-13.jpg" temp_description_1_5="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_image_1_6="h6-bn-13.jpg" temp_description_1_6="

    Settlement backpack

    _APENTER_

    $ 115

    _APENTER_SHOP NOW" temp_top_1="70" temp_left_1="30" temp_location_1="right" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" temp_imagealign_1="left" active="1" image="h6-bn-7.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_8479317393160951" xl="4" lg="4" md="4" sm="6" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_9425193823219536" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-11.jpg" temp_image_1_2="h6-bn-11.jpg" temp_image_1_3="h6-bn-11.jpg" temp_image_1_4="h6-bn-11.jpg" temp_image_1_5="h6-bn-11.jpg" temp_image_1_6="h6-bn-11.jpg" temp_imagealign_1="left" temp_description_1_1="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_2="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_3="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_4="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_5="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_description_1_6="

    State Sungalesses

    _APENTER_

    $ 175

    _APENTER_SHOP NOW" temp_top_1="27" temp_left_1="54" temp_location_1="bottom" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-8.jpg"][/ApImageHotspot][/ApColumn][ApColumn form_id="form_8590335310843473" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImageHotspot form_id="form_4573715250190247" is_open="0" width="100%" height="auto" total_slider="1" temp_image_1_1="h6-bn-10.jpg" temp_image_1_2="h6-bn-10.jpg" temp_image_1_3="h6-bn-10.jpg" temp_image_1_4="h6-bn-10.jpg" temp_image_1_5="h6-bn-10.jpg" temp_image_1_6="h6-bn-10.jpg" temp_imagealign_1="left" temp_description_1_1="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_2="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_3="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_4="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_5="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_description_1_6="

    High Top Sneakers

    _APENTER_

    $ 95

    _APENTER_SHOP NOW" temp_top_1="70" temp_left_1="45" temp_location_1="top" temp_textalign_1="left" temp_trigger_1="hoverable" temp_opacity_1="1" temp_margin_1="0" active="1" image="h6-bn-9.jpg"][/ApImageHotspot][/ApColumn][/ApRow][ApRow form_id="form_6722636846747279" class="row box-padding box-bntexth6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_12679885296636772" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_9051070833723302" accordion_type="full" active="1" content_html="

    End of Summer!

    _APENTER_

    Up to 40% off on all items

    _APENTER_"][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3491871931205320" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7553432844860979" container="container" class="row box-iconh6" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_9475905754134196" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_6970679095133906" active="1" content_html="_APENTER_

    Refund Policy

    _APENTER_

    Changed Your Mind? No Problem! You_APAPOST_re Covered By Our 30 Day Refund Policy

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_7901908721619982" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5584855853252699" active="1" content_html="_APENTER_

    Premium Packaging

    _APENTER_

    All Pieces Come Carefully Packed Complete With Dust Bags And Packaging So Gorgeous You_APAPOST_ll Want To Keep It!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_7870025988820256" xl="4" lg="4" md="4" sm="4" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_25995811893654035" active="1" content_html="_APENTER_

    Superior Quality

    _APENTER_

    We Take Great Care To Ensure The Best Quality Leathers Are Used On All Our Pieces.

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_6483413810868916" class="row" min_height="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    0
    + 67170 +
    +
    + + 18 + + 68180 + 6918MOVIC - 2020

    "][/ApHtml][/ApColumn][ApColumn form_id="form_3740112344847912" class="col-center" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][ApColumn form_id="form_7742108902943623" class="col-right" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_11729582434816105" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][/ApColumn][/ApRow]]]>
    MOVIC - 2020

    "][/ApHtml][/ApColumn][ApColumn form_id="form_3740112344847912" class="col-center" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][ApColumn form_id="form_7742108902943623" class="col-right" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_11729582434816105" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][/ApColumn][/ApRow]]]>
    MOVIC - 2020

    "][/ApHtml][/ApColumn][ApColumn form_id="form_3740112344847912" class="col-center" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][ApColumn form_id="form_7742108902943623" class="col-right" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_11729582434816105" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][/ApColumn][/ApRow]]]>
    MOVIC - 2020

    "][/ApHtml][/ApColumn][ApColumn form_id="form_3740112344847912" class="col-center" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][ApColumn form_id="form_7742108902943623" class="col-right" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_11729582434816105" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][/ApColumn][/ApRow]]]>
    MOVIC - 2020

    "][/ApHtml][/ApColumn][ApColumn form_id="form_3740112344847912" class="col-center" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][ApColumn form_id="form_7742108902943623" class="col-right" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_11729582434816105" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][/ApColumn][/ApRow]]]>
    MOVIC - 2020

    "][/ApHtml][/ApColumn][ApColumn form_id="form_3740112344847912" class="col-center" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][ApColumn form_id="form_7742108902943623" class="col-right" xl="4" lg="4" md="4" sm="4" xs="4" sp="4" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_11729582434816105" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][/ApColumn][/ApRow]]]>
    0
    + 70180 +
    +
    + + 4 + + 1240 + 1340 + 1440 + 1540 + 1640 + +
    + 7
    19
    20
    21
    4000 + + 19 + + 71190 + 72190 + 7319_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][/ApRow][ApRow form_id="form_2596189873" container="container" class="row box-nav1" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3138127652" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_4351140877777503" accordion_type="full" active="1" content_html="

    Welcome to MOVIC !!!

    "][/ApHtml][/ApColumn][ApColumn form_id="form_3704302499" class="col-infor" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3507591230" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2186110379" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_1990244518" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2060640536" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2626311732" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][/ApRow][ApRow form_id="form_2596189873" container="container" class="row box-nav1" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3138127652" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_4351140877777503" accordion_type="full" active="1" content_html="

    Bienvenue à MOVIC !!!

    "][/ApHtml][/ApColumn][ApColumn form_id="form_3704302499" class="col-infor" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3507591230" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2186110379" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_1990244518" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2060640536" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2626311732" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][/ApRow][ApRow form_id="form_2596189873" container="container" class="row box-nav1" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3138127652" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_4351140877777503" accordion_type="full" active="1" content_html="

    Willkommen bei MOVIC !!!

    "][/ApHtml][/ApColumn][ApColumn form_id="form_3704302499" class="col-infor" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3507591230" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2186110379" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_1990244518" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2060640536" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2626311732" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][/ApRow][ApRow form_id="form_2596189873" container="container" class="row box-nav1" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3138127652" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_4351140877777503" accordion_type="full" active="1" content_html="

    Benvenuti a MOVIC !!!

    "][/ApHtml][/ApColumn][ApColumn form_id="form_3704302499" class="col-infor" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3507591230" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2186110379" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_1990244518" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2060640536" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2626311732" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][/ApRow][ApRow form_id="form_2596189873" container="container" class="row box-nav1" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3138127652" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_4351140877777503" accordion_type="full" active="1" content_html="

    Bienvenido a MOVIC !!!

    "][/ApHtml][/ApColumn][ApColumn form_id="form_3704302499" class="col-infor" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3507591230" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2186110379" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_1990244518" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2060640536" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2626311732" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][/ApRow][ApRow form_id="form_2596189873" container="container" class="row box-nav1" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3138127652" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_4351140877777503" accordion_type="full" active="1" content_html="

    مرحبا بكم في MOVIC!!!

    "][/ApHtml][/ApColumn][ApColumn form_id="form_3704302499" class="col-infor" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_3507591230" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2186110379" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_1990244518" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2060640536" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2626311732" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0
    + 7419_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_3243379461" class="col-menu" xl="10" lg="9" md="3" sm="3" xs="3" sp="3" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_3522363249" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_3243379461" class="col-menu" xl="10" lg="9" md="3" sm="3" xs="3" sp="3" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_3522363249" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_3243379461" class="col-menu" xl="10" lg="9" md="3" sm="3" xs="3" sp="3" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_3522363249" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_3243379461" class="col-menu" xl="10" lg="9" md="3" sm="3" xs="3" sp="3" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_3522363249" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_3243379461" class="col-menu" xl="10" lg="9" md="3" sm="3" xs="3" sp="3" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_3522363249" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_3243379461" class="col-menu" xl="10" lg="9" md="3" sm="3" xs="3" sp="3" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_3522363249" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][/ApRow]]]>0 + 75190 +
    +
    + + 20 + + 76200 + 7720WOMEN_APENTER_

    COLLECTION

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    SHOP NOW

    "][/ApImage][ApImage form_id="form_5838509964607683" animation="none" animation_delay="0.5" class="img-right" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-2_f9230919-7dd2-4895-81c5-afd62c4583e8.jpg?v=1601195737" url="#" description="

    MEN

    _APENTER_

    COLLECTION

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_3178178145" class="col-right no-padding" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_9530764178109416" animation="none" animation_delay="0.5" class="img-top" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-3.jpg?v=1601195737" url="#" description="

    LABELLE

    _APENTER_

    accessories

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8967489682916232" container="container" class="row box-freeshipping" min_height="300px" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-4.jpg?v=1601195737" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1716186602" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_26197156522902885" class="effect-up" active="1" content_html="_APENTER_

    Free shipping all around the world!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_2210003742" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5142143406730339" class="effect-zoom" active="1" content_html="_APENTER_

    Online support 24/7

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_1646299868" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5761796665645768" class="effect-rotate" active="1" content_html="_APENTER_

    Money back guarante

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_1750127713" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1799731724" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_7351552240073348" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="8" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="Featured product"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2246522501" class="row top-50" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1927569820" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2383171142" class="text-center" accordion_type="full" title="The LOOKBOOK" content_html="
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_1900834062" container="container-large" class="row box-lookbook" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3022163699" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_12291792581708608" animation="none" animation_delay="0.5" class="content-right" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-5.jpg?v=1601195737" description="

    Weekend

    _APENTER_

    lookbook

    _APENTER_

    Futuring bag classic

    _APENTER_

    Get the look

    "][/ApImage][ApImage form_id="form_5895978213914716" animation="none" animation_delay="0.5" class="content-left" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-6.jpg?v=1601195737" description="

    Summer

    _APENTER_

    dresses

    _APENTER_

    It_APAPOST_s that time again

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_1865002189" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4524775936872485" animation="none" animation_delay="0.5" class="content-center" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-7.jpg?v=1601195737" description="

    Travel in style

    _APENTER_

    Womens Styled Outfits

    _APENTER_

    Get extra 10% off

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8123674011193334" container="container" class="row box-protabs" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3224387365" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_1859784736" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_2481565556" id="tab_2893887873" css_class="" image="" override_folder="" title="BEST SELLERS" sub_title=""][ApProductCarousel form_id="form_8779695980212480" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="10" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3329649725" id="tab_3599599039" css_class="" image="" override_folder="" title="NEW PRODUCT" sub_title=""][ApProductCarousel form_id="form_4568360144672607" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_1712141183" id="tab_1878458907" css_class="" image="" override_folder="" title="TOP RATED" sub_title=""][ApProductCarousel form_id="form_4869775280384795" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_5462636967828803" container="container-large" class="row box-latestnews2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3224659287" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_2563437900" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="1" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="1" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="5" carousel_type="owlcarousel" items="2" itemsdesktop="2" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_11621279321593662" class="row box-instagram2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3678846329" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_6220718753889897" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="10" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="5" itemsdesktopsmall="4" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="Folow us @instagram" sub_title=""][/ApInstagram][/ApColumn][/ApRow]]]>
    Femmes_APENTER_

    Collection

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    MAGASINEZ MAINTENANT

    "][/ApImage][ApImage form_id="form_5838509964607683" animation="none" animation_delay="0.5" class="img-right" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-2_f9230919-7dd2-4895-81c5-afd62c4583e8.jpg?v=1601195737" url="#" description="

    Hommes

    _APENTER_

    Collection

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    MAGASINEZ MAINTENANT

    "][/ApImage][/ApColumn][ApColumn form_id="form_3178178145" class="col-right no-padding" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_9530764178109416" animation="none" animation_delay="0.5" class="img-top" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-3.jpg?v=1601195737" url="#" description="

    Labelle

    _APENTER_

    Accessoires

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    MAGASINEZ MAINTENANT

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8967489682916232" container="container" class="row box-freeshipping" min_height="300px" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-4.jpg?v=1601195737" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1716186602" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_26197156522902885" class="effect-up" active="1" content_html="_APENTER_

    Livraison gratuite partout dans le monde!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_2210003742" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5142143406730339" class="effect-zoom" active="1" content_html="_APENTER_

    Soutien en ligne 24h/24 et 7j/7

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_1646299868" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5761796665645768" class="effect-rotate" active="1" content_html="_APENTER_

    Garantie de retour d_APAPOST_argent

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_1750127713" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1799731724" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_7351552240073348" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="8" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="Produit en vedette"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2246522501" class="row top-50" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1927569820" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2383171142" class="text-center" accordion_type="full" title="The LOOKBOOK" content_html="
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_1900834062" container="container-large" class="row box-lookbook" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3022163699" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_12291792581708608" animation="none" animation_delay="0.5" class="content-right" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-5.jpg?v=1601195737" description="

    Week-end

    _APENTER_

    Lookbook

    _APENTER_

    Futuring sac classique

    _APENTER_

    Obtenez le look

    "][/ApImage][ApImage form_id="form_5895978213914716" animation="none" animation_delay="0.5" class="content-left" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-6.jpg?v=1601195737" description="

    Été

    _APENTER_

    Robes

    _APENTER_

    C_APAPOST_est encore cette fois

    _APENTER_

    MAGASINEZ MAINTENANT

    "][/ApImage][/ApColumn][ApColumn form_id="form_1865002189" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4524775936872485" animation="none" animation_delay="0.5" class="content-center" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-7.jpg?v=1601195737" description="

    Voyagez avec style

    _APENTER_

    Vêtements de style pour femmes

    _APENTER_

    Obtenez 10% de rabais supplémentaire

    _APENTER_

    MAGASINEZ MAINTENANT

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8123674011193334" container="container" class="row box-protabs" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3224387365" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_1859784736" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_2481565556" id="tab_2893887873" css_class="" image="" override_folder="" title="MEILLEURS VENDEURS" sub_title=""][ApProductCarousel form_id="form_8779695980212480" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="10" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3329649725" id="tab_3599599039" css_class="" image="" override_folder="" title="NOUVEAU PRODUIT" sub_title=""][ApProductCarousel form_id="form_4568360144672607" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_1712141183" id="tab_1878458907" css_class="" image="" override_folder="" title="TOP RATED" sub_title=""][ApProductCarousel form_id="form_4869775280384795" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_5462636967828803" container="container-large" class="row box-latestnews2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3224659287" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_2563437900" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="1" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="1" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="5" carousel_type="owlcarousel" items="2" itemsdesktop="2" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_11621279321593662" class="row box-instagram2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3678846329" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_6220718753889897" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="10" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="5" itemsdesktopsmall="4" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="Folow us @instagram" sub_title=""][/ApInstagram][/ApColumn][/ApRow]]]>
    Frauen_APENTER_

    Auflistung

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    JETZT SHOPPEN

    "][/ApImage][ApImage form_id="form_5838509964607683" animation="none" animation_delay="0.5" class="img-right" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-2_f9230919-7dd2-4895-81c5-afd62c4583e8.jpg?v=1601195737" url="#" description="

    Männer

    _APENTER_

    Auflistung

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    JETZT SHOPPEN

    "][/ApImage][/ApColumn][ApColumn form_id="form_3178178145" class="col-right no-padding" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_9530764178109416" animation="none" animation_delay="0.5" class="img-top" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-3.jpg?v=1601195737" url="#" description="

    Labelle

    _APENTER_

    Zubehör

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    JETZT SHOPPEN

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8967489682916232" container="container" class="row box-freeshipping" min_height="300px" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-4.jpg?v=1601195737" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1716186602" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_26197156522902885" class="effect-up" active="1" content_html="_APENTER_

    Kostenloser Versand auf der ganzen Welt!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_2210003742" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5142143406730339" class="effect-zoom" active="1" content_html="_APENTER_

    Online-Support 24/7

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_1646299868" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5761796665645768" class="effect-rotate" active="1" content_html="_APENTER_

    Geld-zurück-Garantie

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_1750127713" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1799731724" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_7351552240073348" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="8" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="Ausgewähltes Produkt"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2246522501" class="row top-50" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1927569820" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2383171142" class="text-center" accordion_type="full" title="The LOOKBOOK" content_html="
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_1900834062" container="container-large" class="row box-lookbook" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3022163699" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_12291792581708608" animation="none" animation_delay="0.5" class="content-right" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-5.jpg?v=1601195737" description="

    Wochenende

    _APENTER_

    lookbook

    _APENTER_

    Futuring Tasche klassisch

    _APENTER_

    Holen Sie sich den Look

    "][/ApImage][ApImage form_id="form_5895978213914716" animation="none" animation_delay="0.5" class="content-left" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-6.jpg?v=1601195737" description="

    Sommer

    _APENTER_

    Kleider

    _APENTER_

    Es ist wieder soweit

    _APENTER_

    JETZT SHOPPEN

    "][/ApImage][/ApColumn][ApColumn form_id="form_1865002189" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4524775936872485" animation="none" animation_delay="0.5" class="content-center" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-7.jpg?v=1601195737" description="

    Reisen mit Stil

    _APENTER_

    Womens Styled Outfits

    _APENTER_

    Erhalten Sie 10 % Rabatt

    _APENTER_

    JETZT SHOPPEN

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8123674011193334" container="container" class="row box-protabs" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3224387365" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_1859784736" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_2481565556" id="tab_2893887873" css_class="" image="" override_folder="" title="BESTSELLER" sub_title=""][ApProductCarousel form_id="form_8779695980212480" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="10" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3329649725" id="tab_3599599039" css_class="" image="" override_folder="" title="NEUES PRODUKT" sub_title=""][ApProductCarousel form_id="form_4568360144672607" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_1712141183" id="tab_1878458907" css_class="" image="" override_folder="" title="TOP BEWERTET" sub_title=""][ApProductCarousel form_id="form_4869775280384795" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_5462636967828803" container="container-large" class="row box-latestnews2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3224659287" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_2563437900" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="1" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="1" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="5" carousel_type="owlcarousel" items="2" itemsdesktop="2" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_11621279321593662" class="row box-instagram2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3678846329" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_6220718753889897" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="10" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="5" itemsdesktopsmall="4" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="Folow us @instagram" sub_title=""][/ApInstagram][/ApColumn][/ApRow]]]>
    Donne_APENTER_

    Collezione

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    ACQUISTA ORA

    "][/ApImage][ApImage form_id="form_5838509964607683" animation="none" animation_delay="0.5" class="img-right" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-2_f9230919-7dd2-4895-81c5-afd62c4583e8.jpg?v=1601195737" url="#" description="

    Uomini

    _APENTER_

    Collezione

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    ACQUISTA ORA

    "][/ApImage][/ApColumn][ApColumn form_id="form_3178178145" class="col-right no-padding" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_9530764178109416" animation="none" animation_delay="0.5" class="img-top" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-3.jpg?v=1601195737" url="#" description="

    Labelle

    _APENTER_

    Accessori

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    ACQUISTA ORA

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8967489682916232" container="container" class="row box-freeshipping" min_height="300px" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-4.jpg?v=1601195737" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1716186602" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_26197156522902885" class="effect-up" active="1" content_html="_APENTER_

    Spedizione gratuita in tutto il mondo!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_2210003742" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5142143406730339" class="effect-zoom" active="1" content_html="_APENTER_

    Supporto online 24 su 7

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_1646299868" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5761796665645768" class="effect-rotate" active="1" content_html="_APENTER_

    Garanzia di rimborso

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_1750127713" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1799731724" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_7351552240073348" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="8" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="Prodotto in primo piano"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2246522501" class="row top-50" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1927569820" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2383171142" class="text-center" accordion_type="full" title="The LOOKBOOK" content_html="
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_1900834062" container="container-large" class="row box-lookbook" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3022163699" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_12291792581708608" animation="none" animation_delay="0.5" class="content-right" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-5.jpg?v=1601195737" description="

    Fine settimana

    _APENTER_

    lookbook

    _APENTER_

    Funometing bag classico

    _APENTER_

    Dai un_APAPOST_occhiata

    "][/ApImage][ApImage form_id="form_5895978213914716" animation="none" animation_delay="0.5" class="content-left" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-6.jpg?v=1601195737" description="

    Estate

    _APENTER_

    Abiti

    _APENTER_

    È di nuovo quella volta

    _APENTER_

    ACQUISTA ORA

    "][/ApImage][/ApColumn][ApColumn form_id="form_1865002189" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4524775936872485" animation="none" animation_delay="0.5" class="content-center" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-7.jpg?v=1601195737" description="

    Viaggia con stile

    _APENTER_

    Abiti da donna a stile

    _APENTER_

    Ottieni uno sconto extra del 10%

    _APENTER_

    ACQUISTA ORA

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8123674011193334" container="container" class="row box-protabs" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3224387365" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_1859784736" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_2481565556" id="tab_2893887873" css_class="" image="" override_folder="" title="Venduti" sub_title=""][ApProductCarousel form_id="form_8779695980212480" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="10" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3329649725" id="tab_3599599039" css_class="" image="" override_folder="" title="NUOVO PRODOTTO" sub_title=""][ApProductCarousel form_id="form_4568360144672607" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_1712141183" id="tab_1878458907" css_class="" image="" override_folder="" title="Votate" sub_title=""][ApProductCarousel form_id="form_4869775280384795" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_5462636967828803" container="container-large" class="row box-latestnews2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3224659287" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_2563437900" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="1" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="1" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="5" carousel_type="owlcarousel" items="2" itemsdesktop="2" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_11621279321593662" class="row box-instagram2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3678846329" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_6220718753889897" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="10" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="5" itemsdesktopsmall="4" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="Folow us @instagram" sub_title=""][/ApInstagram][/ApColumn][/ApRow]]]>
    Mujeres_APENTER_

    Colección

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    COMPRAR AHORA

    "][/ApImage][ApImage form_id="form_5838509964607683" animation="none" animation_delay="0.5" class="img-right" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-2_f9230919-7dd2-4895-81c5-afd62c4583e8.jpg?v=1601195737" url="#" description="

    Hombres

    _APENTER_

    Colección

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    COMPRAR AHORA

    "][/ApImage][/ApColumn][ApColumn form_id="form_3178178145" class="col-right no-padding" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_9530764178109416" animation="none" animation_delay="0.5" class="img-top" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-3.jpg?v=1601195737" url="#" description="

    Labelle

    _APENTER_

    Accesorios

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    COMPRAR AHORA

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8967489682916232" container="container" class="row box-freeshipping" min_height="300px" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-4.jpg?v=1601195737" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1716186602" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_26197156522902885" class="effect-up" active="1" content_html="_APENTER_

    Envío gratuito en todo el mundo!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_2210003742" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5142143406730339" class="effect-zoom" active="1" content_html="_APENTER_

    Soporte en línea 24/7

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_1646299868" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5761796665645768" class="effect-rotate" active="1" content_html="_APENTER_

    Garantía de devolución de dinero

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_1750127713" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1799731724" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_7351552240073348" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="8" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="Producto destacado"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2246522501" class="row top-50" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1927569820" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2383171142" class="text-center" accordion_type="full" title="The LOOKBOOK" content_html="
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_1900834062" container="container-large" class="row box-lookbook" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3022163699" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_12291792581708608" animation="none" animation_delay="0.5" class="content-right" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-5.jpg?v=1601195737" description="

    Semana

    _APENTER_

    lookbook

    _APENTER_

    Bolso futenante clásico

    _APENTER_

    Obtener la mirada

    "][/ApImage][ApImage form_id="form_5895978213914716" animation="none" animation_delay="0.5" class="content-left" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-6.jpg?v=1601195737" description="

    Verano

    _APENTER_

    Vestidos

    _APENTER_

    Es esa vez otra vez

    _APENTER_

    COMPRAR AHORA

    "][/ApImage][/ApColumn][ApColumn form_id="form_1865002189" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4524775936872485" animation="none" animation_delay="0.5" class="content-center" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-7.jpg?v=1601195737" description="

    Viaja con estilo

    _APENTER_

    Atuendos estilo femenino

    _APENTER_

    Obtenga un 10% de descuento adicional

    _APENTER_

    COMPRAR AHORA

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8123674011193334" container="container" class="row box-protabs" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3224387365" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_1859784736" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_2481565556" id="tab_2893887873" css_class="" image="" override_folder="" title="LOS MÁS VENDIDOS" sub_title=""][ApProductCarousel form_id="form_8779695980212480" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="10" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3329649725" id="tab_3599599039" css_class="" image="" override_folder="" title="NUEVO PRODUCTO" sub_title=""][ApProductCarousel form_id="form_4568360144672607" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_1712141183" id="tab_1878458907" css_class="" image="" override_folder="" title="MEJOR VALORADO" sub_title=""][ApProductCarousel form_id="form_4869775280384795" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_5462636967828803" container="container-large" class="row box-latestnews2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3224659287" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_2563437900" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="1" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="1" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="5" carousel_type="owlcarousel" items="2" itemsdesktop="2" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_11621279321593662" class="row box-instagram2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3678846329" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_6220718753889897" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="10" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="5" itemsdesktopsmall="4" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="Folow us @instagram" sub_title=""][/ApInstagram][/ApColumn][/ApRow]]]>
    المراه_APENTER_

    جمع

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    تسوق الآن

    "][/ApImage][ApImage form_id="form_5838509964607683" animation="none" animation_delay="0.5" class="img-right" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-2_f9230919-7dd2-4895-81c5-afd62c4583e8.jpg?v=1601195737" url="#" description="

    الرجال

    _APENTER_

    جمع

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    تسوق الآن

    "][/ApImage][/ApColumn][ApColumn form_id="form_3178178145" class="col-right no-padding" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_9530764178109416" animation="none" animation_delay="0.5" class="img-top" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-3.jpg?v=1601195737" url="#" description="

    لابيل

    _APENTER_

    اكسسوارات

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    تسوق الآن

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8967489682916232" container="container" class="row box-freeshipping" min_height="300px" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-4.jpg?v=1601195737" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1716186602" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_26197156522902885" class="effect-up" active="1" content_html="_APENTER_

    الشحن المجاني في جميع أنحاء العالم!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_2210003742" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5142143406730339" class="effect-zoom" active="1" content_html="_APENTER_

    الدعم عبر الإنترنت على مدار 24/7

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_1646299868" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5761796665645768" class="effect-rotate" active="1" content_html="_APENTER_

    المال مرة أخرى guarante

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_1750127713" container="container" class="row box-products" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1799731724" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_7351552240073348" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="8" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1" title="منتج مميز"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2246522501" class="row top-50" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1927569820" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2383171142" class="text-center" accordion_type="full" title="The LOOKBOOK" content_html="
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_1900834062" container="container-large" class="row box-lookbook" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3022163699" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_12291792581708608" animation="none" animation_delay="0.5" class="content-right" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-5.jpg?v=1601195737" description="

    عطله نهايه الاسبوع

    _APENTER_

    كتاب نظرة

    _APENTER_

    حقيبة مستقبلية كلاسيكية

    _APENTER_

    الحصول على نظرة

    "][/ApImage][ApImage form_id="form_5895978213914716" animation="none" animation_delay="0.5" class="content-left" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-6.jpg?v=1601195737" description="

    الصيف

    _APENTER_

    فساتين

    _APENTER_

    لقد حان ذلك الوقت مرة أخرى

    _APENTER_

    تسوق الآن

    "][/ApImage][/ApColumn][ApColumn form_id="form_1865002189" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4524775936872485" animation="none" animation_delay="0.5" class="content-center" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h1-bn-7.jpg?v=1601195737" description="

    السفر في الاسلوب

    _APENTER_

    ملابس نسائية على غرار

    _APENTER_

    احصل على 10% إضافية

    _APENTER_

    تسوق الآن

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_8123674011193334" container="container" class="row box-protabs" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3224387365" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApTabs form_id="form_1859784736" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_2481565556" id="tab_2893887873" css_class="" image="" override_folder="" title="اكثر الكتب مبيعا" sub_title=""][ApProductCarousel form_id="form_8779695980212480" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="10" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3329649725" id="tab_3599599039" css_class="" image="" override_folder="" title="منتج جديد" sub_title=""][ApProductCarousel form_id="form_4568360144672607" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_1712141183" id="tab_1878458907" css_class="" image="" override_folder="" title="أعلى تصنيف" sub_title=""][ApProductCarousel form_id="form_4869775280384795" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_5462636967828803" container="container-large" class="row box-latestnews2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3224659287" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_2563437900" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="1" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="1" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="5" carousel_type="owlcarousel" items="2" itemsdesktop="2" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_11621279321593662" class="row box-instagram2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3678846329" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApInstagram form_id="form_6220718753889897" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="10" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="5" itemsdesktopsmall="4" itemstablet="3" itemsmobile="2" itemscustom="" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="Folow us @instagram" sub_title=""][/ApInstagram][/ApColumn][/ApRow]]]>
    0
    + 78200 +
    +
    + + 21 + + 79210 + 8021_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][ApColumn form_id="form_2972771014" xl="4" lg="5" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2792922366" total_link="3" list_id_link="1,2,3," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Blog" link_title_1_2="Blog" link_title_1_3="Blog" link_title_1_4="Blog" link_title_1_5="Blog" link_title_1_6="Blog" target_type_1="_self" link_type_1="link-url" link_url_1_1="blog.html" link_url_1_2="blog.html" link_url_1_3="blog.html" link_url_1_4="blog.html" link_url_1_5="blog.html" link_url_1_6="blog.html" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="bestsales" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][/ApRow][ApRow form_id="form_10235999099633315" container="container" class="row box-fsocial" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2673414859" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_38692454877063915" name_module="ps_socialfollow" hook="displayFooter" is_display="1" active="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][ApColumn form_id="form_2972771014" xl="4" lg="5" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2792922366" total_link="3" list_id_link="1,2,3," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Blog" link_title_1_2="Blog" link_title_1_3="Blog" link_title_1_4="Blog" link_title_1_5="Blog" link_title_1_6="Blog" target_type_1="_self" link_type_1="link-url" link_url_1_1="blog.html" link_url_1_2="blog.html" link_url_1_3="blog.html" link_url_1_4="blog.html" link_url_1_5="blog.html" link_url_1_6="blog.html" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="bestsales" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][/ApRow][ApRow form_id="form_10235999099633315" container="container" class="row box-fsocial" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2673414859" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_38692454877063915" name_module="ps_socialfollow" hook="displayFooter" is_display="1" active="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][ApColumn form_id="form_2972771014" xl="4" lg="5" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2792922366" total_link="3" list_id_link="1,2,3," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Blog" link_title_1_2="Blog" link_title_1_3="Blog" link_title_1_4="Blog" link_title_1_5="Blog" link_title_1_6="Blog" target_type_1="_self" link_type_1="link-url" link_url_1_1="blog.html" link_url_1_2="blog.html" link_url_1_3="blog.html" link_url_1_4="blog.html" link_url_1_5="blog.html" link_url_1_6="blog.html" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="bestsales" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][/ApRow][ApRow form_id="form_10235999099633315" container="container" class="row box-fsocial" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2673414859" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_38692454877063915" name_module="ps_socialfollow" hook="displayFooter" is_display="1" active="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][ApColumn form_id="form_2972771014" xl="4" lg="5" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2792922366" total_link="3" list_id_link="1,2,3," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Blog" link_title_1_2="Blog" link_title_1_3="Blog" link_title_1_4="Blog" link_title_1_5="Blog" link_title_1_6="Blog" target_type_1="_self" link_type_1="link-url" link_url_1_1="blog.html" link_url_1_2="blog.html" link_url_1_3="blog.html" link_url_1_4="blog.html" link_url_1_5="blog.html" link_url_1_6="blog.html" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="bestsales" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][/ApRow][ApRow form_id="form_10235999099633315" container="container" class="row box-fsocial" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2673414859" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_38692454877063915" name_module="ps_socialfollow" hook="displayFooter" is_display="1" active="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][ApColumn form_id="form_2972771014" xl="4" lg="5" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2792922366" total_link="3" list_id_link="1,2,3," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Blog" link_title_1_2="Blog" link_title_1_3="Blog" link_title_1_4="Blog" link_title_1_5="Blog" link_title_1_6="Blog" target_type_1="_self" link_type_1="link-url" link_url_1_1="blog.html" link_url_1_2="blog.html" link_url_1_3="blog.html" link_url_1_4="blog.html" link_url_1_5="blog.html" link_url_1_6="blog.html" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="bestsales" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][/ApRow][ApRow form_id="form_10235999099633315" container="container" class="row box-fsocial" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2673414859" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_38692454877063915" name_module="ps_socialfollow" hook="displayFooter" is_display="1" active="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][ApColumn form_id="form_2972771014" xl="4" lg="5" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2792922366" total_link="3" list_id_link="1,2,3," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="full" link_title_1_1="Blog" link_title_1_2="Blog" link_title_1_3="Blog" link_title_1_4="Blog" link_title_1_5="Blog" link_title_1_6="Blog" target_type_1="_self" link_type_1="link-url" link_url_1_1="blog.html" link_url_1_2="blog.html" link_url_1_3="blog.html" link_url_1_4="blog.html" link_url_1_5="blog.html" link_url_1_6="blog.html" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="bestsales" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1"][/ApBlockLink][/ApColumn][/ApRow][ApRow form_id="form_10235999099633315" container="container" class="row box-fsocial" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2673414859" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_38692454877063915" name_module="ps_socialfollow" hook="displayFooter" is_display="1" active="1"][/ApModule][/ApColumn][/ApRow]]]>0 + 8121Copyright © 2020 by Prestashop Template."][/ApHtml][/ApColumn][/ApRow]]]>Copyright 2020 © Prestashoptemplate"][/ApHtml][/ApColumn][/ApRow]]]>Copyright 2020 © Prestashop Template"][/ApHtml][/ApColumn][/ApRow]]]>2018 Copyright © Prestashoptemplate"][/ApHtml][/ApColumn][/ApRow]]]>2018 Copyright © Prestashoptemplate"][/ApHtml][/ApColumn][/ApRow]]]>2018 حقوق الطبع والنشر © شوبيفيتيمبلاتي"][/ApHtml][/ApColumn][/ApRow]]]>0 + + + + 4 + + 1240 + 1340 + 1440 + 1540 + 1640 + +
    + 8
    22
    23
    24
    4000 + + 22 + + 82220 + 83220 + 8422_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][/ApRow][ApRow form_id="form_2500797452" container="container" class="row box-nav1 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2179383467" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_2066960737" accordion_type="full" active="1" content_html="

    Welcome to LABELLE !!!

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2992146379" class="col-infor" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_2654590036" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3408748276" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3585895240" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3009739930" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_1844384563" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][/ApRow][ApRow form_id="form_2500797452" container="container" class="row box-nav1 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2179383467" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_2066960737" accordion_type="full" active="1" content_html="

    Bienvenue à LABELLE !!!

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2992146379" class="col-infor" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_2654590036" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3408748276" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3585895240" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3009739930" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_1844384563" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][/ApRow][ApRow form_id="form_2500797452" container="container" class="row box-nav1 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2179383467" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_2066960737" accordion_type="full" active="1" content_html="

    Willkommen bei LABELLE !!!

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2992146379" class="col-infor" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_2654590036" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3408748276" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3585895240" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3009739930" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_1844384563" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][/ApRow][ApRow form_id="form_2500797452" container="container" class="row box-nav1 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2179383467" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_2066960737" accordion_type="full" active="1" content_html="

    Benvenuti a LABELLE !!!

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2992146379" class="col-infor" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_2654590036" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3408748276" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3585895240" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3009739930" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_1844384563" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][/ApRow][ApRow form_id="form_2500797452" container="container" class="row box-nav1 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2179383467" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_2066960737" accordion_type="full" active="1" content_html="

    Bienvenido a LABELLE !!!

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2992146379" class="col-infor" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_2654590036" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3408748276" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3585895240" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3009739930" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_1844384563" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    _APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_"][/ApGenCode][/ApColumn][/ApRow][ApRow form_id="form_2500797452" container="container" class="row box-nav1 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2179383467" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_2066960737" accordion_type="full" active="1" content_html="

    مرحبا بكم في LABELLE!!!

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2992146379" class="col-infor" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_2654590036" name_module="ps_currencyselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3408748276" name_module="ps_languageselector" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3585895240" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3009739930" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_1844384563" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0
    + 8522_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_2031046718" class="col-menu" xl="10" lg="9" md="3" sm="3" xs="3" sp="3" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_2575146567" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_2031046718" class="col-menu" xl="10" lg="9" md="3" sm="3" xs="3" sp="3" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_2575146567" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_2031046718" class="col-menu" xl="10" lg="9" md="3" sm="3" xs="3" sp="3" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_2575146567" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_2031046718" class="col-menu" xl="10" lg="9" md="3" sm="3" xs="3" sp="3" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_2575146567" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_2031046718" class="col-menu" xl="10" lg="9" md="3" sm="3" xs="3" sp="3" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_2575146567" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_2031046718" class="col-menu" xl="10" lg="9" md="3" sm="3" xs="3" sp="3" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_2575146567" megamenu_group="cdf12604c03e0de855bdca69c9a0725a"][/ApMegamenu][/ApColumn][/ApRow]]]>0 + 86220 +
    +
    + + 23 + + 87230 + 8823_APENTER_

    Free shipping all around the world!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_3458345371" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_4496564679671967" active="1" content_html="_APENTER_

    Online support 24/7

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_2632534770" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8397476863212986" active="1" content_html="_APENTER_

    Money back guarante

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_8688773502942145" container="container-large" class="row box-cateh8" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3500762474" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8043218552096097" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-1_3c0549fe-fbec-439c-8509-a1c10a07805f.jpg?v=1601195737" url="#" description="

    WOMEN

    _APENTER_

    COLLECTION

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_3398516428" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_16156106852347562" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-2_3233bb1d-3a01-49a2-95de-15b12f70fce7.jpg?v=1601195737" url="#" description="

    MEN

    _APENTER_

    COLLECTION

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_2452565320" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5232324791286230" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-3_f83ab198-ea1b-49cd-8420-4999a04e732f.jpg?v=1601195737" url="#" description="

    LABELLE

    _APENTER_

    ACCESSORIES

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3490312150" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2844426333" container="container-large" class="row box-lookbook2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3139684190" class="col-text text-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_1620832729" accordion_type="full" active="1" content_html="

    TRAVEL IN STYLE

    _APENTER_

    MEN STYLED OUTFITS

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie.

    _APENTER_

    Check it out

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2259390225" class="col-image" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8160558310173796" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-4_e6f3309c-94af-441a-9523-f8a690a7bf46.jpg?v=1601195737"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3204924413" container="container-large" class="row box-lookbook2 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2657287843" class="col-image" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_15063121932535988" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-5.jpg?v=1601195738"][/ApImage][/ApColumn][ApColumn form_id="form_3065260409" class="col-text text-left" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_3177944107" accordion_type="full" active="1" content_html="

    WEEKEND

    _APENTER_

    LOOK BOOK

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie.

    _APENTER_

    Check it out

    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_2378190129" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_8827445997876360" class="row box-featureproduct" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-6.jpg?v=1601195737" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3394650818" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_1675419053" accordion_type="full" active="1" title="FEATURED PRODUCT" content_html="
    "][/ApHtml][ApProductCarousel form_id="form_8729822108617698" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2567029566" class="row box-dealof" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1927315404" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_10898064420331871" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-7.jpg?v=1601195738"][/ApImage][ApHtml form_id="form_1990772731" accordion_type="full" content_html="

    deal of the day

    _APENTER_

    up to 30% on dresses

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie

    _APENTER_

    Check it out

    "][/ApHtml][ApCountdown form_id="form_18339926966124182" class="container" time_from="2020-04-01 00:00:00" time_to="2022-11-20 00:00:00" new_tab="1" active="1"][/ApCountdown][/ApColumn][/ApRow][ApRow form_id="form_7381186878158228" class="row box-textbn" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-6.jpg?v=1601195737" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3084222070" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2335544160" accordion_type="full" content_html="

    Lorem ipsum dolor sit amet

    _APENTER_
    _APENTER_
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna.
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3576195790" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3258374088" container="container" class="row box-smallproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3618021129" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_7568273477551550" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="BEST SELLERS"][/ApProductCarousel][/ApColumn][ApColumn form_id="form_3139632810" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_6610476324937673" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="NEW PRODUCT"][/ApProductCarousel][/ApColumn][ApColumn form_id="form_3374816437" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_9824103813995136" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="TOP RATED"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_1972934633" container="container-large" class="row box-latestnews2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3042242850" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_9502016278693802" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="0" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="1" bleoblogs_scat="1" bleoblogs_scre="0" bleoblogs_scoun="0" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="5" carousel_type="owlcarousel" items="3" itemsdesktop="2" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_2862049880" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    _APENTER_

    Livraison gratuite partout dans le monde!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_3458345371" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_4496564679671967" active="1" content_html="_APENTER_

    Soutien en ligne 24h/24 et 7j/7

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_2632534770" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8397476863212986" active="1" content_html="_APENTER_

    Garantie de retour d_APAPOST_argent

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_8688773502942145" container="container-large" class="row box-cateh8" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3500762474" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8043218552096097" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-1_3c0549fe-fbec-439c-8509-a1c10a07805f.jpg?v=1601195737" url="#" description="

    WOMEN

    _APENTER_

    COLLECTION

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_3398516428" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_16156106852347562" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-2_3233bb1d-3a01-49a2-95de-15b12f70fce7.jpg?v=1601195737" url="#" description="

    MEN

    _APENTER_

    COLLECTION

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_2452565320" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5232324791286230" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-3_f83ab198-ea1b-49cd-8420-4999a04e732f.jpg?v=1601195737" url="#" description="

    LABELLE

    _APENTER_

    ACCESSORIES

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3490312150" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2844426333" container="container-large" class="row box-lookbook2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3139684190" class="col-text text-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_1620832729" accordion_type="full" active="1" content_html="

    TRAVEL IN STYLE

    _APENTER_

    MEN STYLED OUTFITS

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie.

    _APENTER_

    Check it out

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2259390225" class="col-image" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8160558310173796" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-4_e6f3309c-94af-441a-9523-f8a690a7bf46.jpg?v=1601195737"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3204924413" container="container-large" class="row box-lookbook2 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2657287843" class="col-image" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_15063121932535988" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-5.jpg?v=1601195738"][/ApImage][/ApColumn][ApColumn form_id="form_3065260409" class="col-text text-left" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_3177944107" accordion_type="full" active="1" content_html="

    WEEKEND

    _APENTER_

    LOOK BOOK

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie.

    _APENTER_

    Check it out

    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_2378190129" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_8827445997876360" class="row box-featureproduct" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-6.jpg?v=1601195737" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3394650818" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_1675419053" accordion_type="full" active="1" title="FEATURED PRODUCT" content_html="
    "][/ApHtml][ApProductCarousel form_id="form_8729822108617698" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2567029566" class="row box-dealof" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1927315404" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_10898064420331871" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-7.jpg?v=1601195738"][/ApImage][ApHtml form_id="form_1990772731" accordion_type="full" content_html="
    "][/ApHtml][ApCountdown form_id="form_18339926966124182" class="container" time_from="2020-04-01 00:00:00" time_to="2022-11-20 00:00:00" new_tab="1" active="1"][/ApCountdown][/ApColumn][/ApRow][ApRow form_id="form_7381186878158228" class="row box-textbn" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-6.jpg?v=1601195737" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3084222070" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2335544160" accordion_type="full" content_html="

    Lorem ipsum dolor sit amet

    _APENTER_
    _APENTER_
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna.
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3576195790" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3258374088" container="container" class="row box-smallproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3618021129" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_7568273477551550" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="BEST SELLERS"][/ApProductCarousel][/ApColumn][ApColumn form_id="form_3139632810" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_6610476324937673" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="NEW PRODUCT"][/ApProductCarousel][/ApColumn][ApColumn form_id="form_3374816437" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_9824103813995136" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="TOP RATED"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_1972934633" container="container-large" class="row box-latestnews2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3042242850" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_9502016278693802" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="0" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="1" bleoblogs_scat="1" bleoblogs_scre="0" bleoblogs_scoun="0" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="5" carousel_type="owlcarousel" items="3" itemsdesktop="2" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_2862049880" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    _APENTER_

    Kostenloser Versand auf der ganzen Welt!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_3458345371" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_4496564679671967" active="1" content_html="_APENTER_

    Online-Support 24/7

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_2632534770" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8397476863212986" active="1" content_html="_APENTER_

    Geld-zurück-Garantie

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_8688773502942145" container="container-large" class="row box-cateh8" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3500762474" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8043218552096097" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-1_3c0549fe-fbec-439c-8509-a1c10a07805f.jpg?v=1601195737" url="#" description="

    WOMEN

    _APENTER_

    COLLECTION

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_3398516428" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_16156106852347562" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-2_3233bb1d-3a01-49a2-95de-15b12f70fce7.jpg?v=1601195737" url="#" description="

    MEN

    _APENTER_

    COLLECTION

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_2452565320" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5232324791286230" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-3_f83ab198-ea1b-49cd-8420-4999a04e732f.jpg?v=1601195737" url="#" description="

    LABELLE

    _APENTER_

    ACCESSORIES

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3490312150" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2844426333" container="container-large" class="row box-lookbook2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3139684190" class="col-text text-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_1620832729" accordion_type="full" active="1" content_html="

    TRAVEL IN STYLE

    _APENTER_

    MEN STYLED OUTFITS

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie.

    _APENTER_

    Check it out

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2259390225" class="col-image" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8160558310173796" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-4_e6f3309c-94af-441a-9523-f8a690a7bf46.jpg?v=1601195737"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3204924413" container="container-large" class="row box-lookbook2 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2657287843" class="col-image" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_15063121932535988" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-5.jpg?v=1601195738"][/ApImage][/ApColumn][ApColumn form_id="form_3065260409" class="col-text text-left" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_3177944107" accordion_type="full" active="1" content_html="

    WEEKEND

    _APENTER_

    LOOK BOOK

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie.

    _APENTER_

    Check it out

    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_2378190129" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_8827445997876360" class="row box-featureproduct" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-6.jpg?v=1601195737" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3394650818" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_1675419053" accordion_type="full" active="1" title="FEATURED PRODUCT" content_html="
    "][/ApHtml][ApProductCarousel form_id="form_8729822108617698" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2567029566" class="row box-dealof" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1927315404" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_10898064420331871" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-7.jpg?v=1601195738"][/ApImage][ApHtml form_id="form_1990772731" accordion_type="full" content_html="
    "][/ApHtml][ApCountdown form_id="form_18339926966124182" class="container" time_from="2020-04-01 00:00:00" time_to="2022-11-20 00:00:00" new_tab="1" active="1"][/ApCountdown][/ApColumn][/ApRow][ApRow form_id="form_7381186878158228" class="row box-textbn" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-6.jpg?v=1601195737" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3084222070" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2335544160" accordion_type="full" content_html="

    Lorem ipsum dolor sit amet

    _APENTER_
    _APENTER_
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna.
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3576195790" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3258374088" container="container" class="row box-smallproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3618021129" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_7568273477551550" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="BEST SELLERS"][/ApProductCarousel][/ApColumn][ApColumn form_id="form_3139632810" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_6610476324937673" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="NEW PRODUCT"][/ApProductCarousel][/ApColumn][ApColumn form_id="form_3374816437" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_9824103813995136" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="TOP RATED"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_1972934633" container="container-large" class="row box-latestnews2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3042242850" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_9502016278693802" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="0" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="1" bleoblogs_scat="1" bleoblogs_scre="0" bleoblogs_scoun="0" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="5" carousel_type="owlcarousel" items="3" itemsdesktop="2" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_2862049880" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    _APENTER_

    Spedizione gratuita in tutto il mondo!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_3458345371" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_4496564679671967" active="1" content_html="_APENTER_

    Supporto online 24 su 7

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_2632534770" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8397476863212986" active="1" content_html="_APENTER_

    Garanzia di rimborso

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_8688773502942145" container="container-large" class="row box-cateh8" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3500762474" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8043218552096097" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-1_3c0549fe-fbec-439c-8509-a1c10a07805f.jpg?v=1601195737" url="#" description="

    WOMEN

    _APENTER_

    COLLECTION

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_3398516428" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_16156106852347562" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-2_3233bb1d-3a01-49a2-95de-15b12f70fce7.jpg?v=1601195737" url="#" description="

    MEN

    _APENTER_

    COLLECTION

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_2452565320" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5232324791286230" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-3_f83ab198-ea1b-49cd-8420-4999a04e732f.jpg?v=1601195737" url="#" description="

    LABELLE

    _APENTER_

    ACCESSORIES

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3490312150" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2844426333" container="container-large" class="row box-lookbook2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3139684190" class="col-text text-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_1620832729" accordion_type="full" active="1" content_html="

    TRAVEL IN STYLE

    _APENTER_

    MEN STYLED OUTFITS

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie.

    _APENTER_

    Check it out

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2259390225" class="col-image" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8160558310173796" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-4_e6f3309c-94af-441a-9523-f8a690a7bf46.jpg?v=1601195737"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3204924413" container="container-large" class="row box-lookbook2 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2657287843" class="col-image" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_15063121932535988" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-5.jpg?v=1601195738"][/ApImage][/ApColumn][ApColumn form_id="form_3065260409" class="col-text text-left" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_3177944107" accordion_type="full" active="1" content_html="

    WEEKEND

    _APENTER_

    LOOK BOOK

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie.

    _APENTER_

    Check it out

    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_2378190129" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_8827445997876360" class="row box-featureproduct" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-6.jpg?v=1601195737" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3394650818" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_1675419053" accordion_type="full" active="1" title="FEATURED PRODUCT" content_html="
    "][/ApHtml][ApProductCarousel form_id="form_8729822108617698" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2567029566" class="row box-dealof" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1927315404" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_10898064420331871" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-7.jpg?v=1601195738"][/ApImage][ApHtml form_id="form_1990772731" accordion_type="full" content_html="
    "][/ApHtml][ApCountdown form_id="form_18339926966124182" class="container" time_from="2020-04-01 00:00:00" time_to="2022-11-20 00:00:00" new_tab="1" active="1"][/ApCountdown][/ApColumn][/ApRow][ApRow form_id="form_7381186878158228" class="row box-textbn" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-6.jpg?v=1601195737" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3084222070" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2335544160" accordion_type="full" content_html="

    Lorem ipsum dolor sit amet

    _APENTER_
    _APENTER_
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna.
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3576195790" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3258374088" container="container" class="row box-smallproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3618021129" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_7568273477551550" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="BEST SELLERS"][/ApProductCarousel][/ApColumn][ApColumn form_id="form_3139632810" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_6610476324937673" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="NEW PRODUCT"][/ApProductCarousel][/ApColumn][ApColumn form_id="form_3374816437" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_9824103813995136" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="TOP RATED"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_1972934633" container="container-large" class="row box-latestnews2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3042242850" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_9502016278693802" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="0" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="1" bleoblogs_scat="1" bleoblogs_scre="0" bleoblogs_scoun="0" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="5" carousel_type="owlcarousel" items="3" itemsdesktop="2" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_2862049880" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    _APENTER_

    Envío gratuito en todo el mundo!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_3458345371" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_4496564679671967" active="1" content_html="_APENTER_

    Soporte en línea 24/7

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_2632534770" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8397476863212986" active="1" content_html="_APENTER_

    Garantía de devolución de dinero

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_8688773502942145" container="container-large" class="row box-cateh8" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3500762474" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8043218552096097" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-1_3c0549fe-fbec-439c-8509-a1c10a07805f.jpg?v=1601195737" url="#" description="

    WOMEN

    _APENTER_

    COLLECTION

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_3398516428" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_16156106852347562" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-2_3233bb1d-3a01-49a2-95de-15b12f70fce7.jpg?v=1601195737" url="#" description="

    MEN

    _APENTER_

    COLLECTION

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_2452565320" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5232324791286230" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-3_f83ab198-ea1b-49cd-8420-4999a04e732f.jpg?v=1601195737" url="#" description="

    LABELLE

    _APENTER_

    ACCESSORIES

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3490312150" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2844426333" container="container-large" class="row box-lookbook2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3139684190" class="col-text text-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_1620832729" accordion_type="full" active="1" content_html="

    TRAVEL IN STYLE

    _APENTER_

    MEN STYLED OUTFITS

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie.

    _APENTER_

    Check it out

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2259390225" class="col-image" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8160558310173796" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-4_e6f3309c-94af-441a-9523-f8a690a7bf46.jpg?v=1601195737"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3204924413" container="container-large" class="row box-lookbook2 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2657287843" class="col-image" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_15063121932535988" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-5.jpg?v=1601195738"][/ApImage][/ApColumn][ApColumn form_id="form_3065260409" class="col-text text-left" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_3177944107" accordion_type="full" active="1" content_html="

    WEEKEND

    _APENTER_

    LOOK BOOK

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie.

    _APENTER_

    Check it out

    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_2378190129" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_8827445997876360" class="row box-featureproduct" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-6.jpg?v=1601195737" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3394650818" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_1675419053" accordion_type="full" active="1" title="FEATURED PRODUCT" content_html="
    "][/ApHtml][ApProductCarousel form_id="form_8729822108617698" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2567029566" class="row box-dealof" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1927315404" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_10898064420331871" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-7.jpg?v=1601195738"][/ApImage][ApHtml form_id="form_1990772731" accordion_type="full" content_html="
    "][/ApHtml][ApCountdown form_id="form_18339926966124182" class="container" time_from="2020-04-01 00:00:00" time_to="2022-11-20 00:00:00" new_tab="1" active="1"][/ApCountdown][/ApColumn][/ApRow][ApRow form_id="form_7381186878158228" class="row box-textbn" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-6.jpg?v=1601195737" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3084222070" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2335544160" accordion_type="full" content_html="

    Lorem ipsum dolor sit amet

    _APENTER_
    _APENTER_
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna.
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3576195790" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3258374088" container="container" class="row box-smallproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3618021129" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_7568273477551550" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="BEST SELLERS"][/ApProductCarousel][/ApColumn][ApColumn form_id="form_3139632810" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_6610476324937673" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="NEW PRODUCT"][/ApProductCarousel][/ApColumn][ApColumn form_id="form_3374816437" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_9824103813995136" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="TOP RATED"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_1972934633" container="container-large" class="row box-latestnews2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3042242850" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_9502016278693802" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="0" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="1" bleoblogs_scat="1" bleoblogs_scre="0" bleoblogs_scoun="0" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="5" carousel_type="owlcarousel" items="3" itemsdesktop="2" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_2862049880" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    _APENTER_

    الشحن المجاني في جميع أنحاء العالم!

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_3458345371" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_4496564679671967" active="1" content_html="_APENTER_

    الدعم عبر الإنترنت على مدار 24/7

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_2632534770" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_8397476863212986" active="1" content_html="_APENTER_

    المال مرة أخرى guarante

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_8688773502942145" container="container-large" class="row box-cateh8" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3500762474" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8043218552096097" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-1_3c0549fe-fbec-439c-8509-a1c10a07805f.jpg?v=1601195737" url="#" description="

    WOMEN

    _APENTER_

    COLLECTION

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_3398516428" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_16156106852347562" animation="none" animation_delay="0.5" class="title-top" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-2_3233bb1d-3a01-49a2-95de-15b12f70fce7.jpg?v=1601195737" url="#" description="

    MEN

    _APENTER_

    COLLECTION

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][ApColumn form_id="form_2452565320" xl="4" lg="4" md="4" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_5232324791286230" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-3_f83ab198-ea1b-49cd-8420-4999a04e732f.jpg?v=1601195737" url="#" description="

    LABELLE

    _APENTER_

    ACCESSORIES

    _APENTER_

    SHOP NOW

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3490312150" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2844426333" container="container-large" class="row box-lookbook2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3139684190" class="col-text text-right" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_1620832729" accordion_type="full" active="1" content_html="

    TRAVEL IN STYLE

    _APENTER_

    MEN STYLED OUTFITS

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie.

    _APENTER_

    Check it out

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2259390225" class="col-image" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_8160558310173796" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-4_e6f3309c-94af-441a-9523-f8a690a7bf46.jpg?v=1601195737"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3204924413" container="container-large" class="row box-lookbook2 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2657287843" class="col-image" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_15063121932535988" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-5.jpg?v=1601195738"][/ApImage][/ApColumn][ApColumn form_id="form_3065260409" class="col-text text-left" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_3177944107" accordion_type="full" active="1" content_html="

    WEEKEND

    _APENTER_

    LOOK BOOK

    _APENTER_

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo commodo. In molestie.

    _APENTER_

    Check it out

    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_2378190129" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_8827445997876360" class="row box-featureproduct" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-6.jpg?v=1601195737" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3394650818" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_1675419053" accordion_type="full" active="1" title="FEATURED PRODUCT" content_html="
    "][/ApHtml][ApProductCarousel form_id="form_8729822108617698" class="" value_by_product_type="1" category_type="all" product_type="all" product_id="" order_way="random" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="5" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 3_APCBRACKET_, _APOBRACKET_992, 4_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" nbitemsperline_desktop="" nbitemsperline_smalldesktop="" nbitemsperline_tablet="" nbitemsperline_smalldevices="" nbitemsperline_extrasmalldevices="" nbitemsperline_smartphone="" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" override_folder="" active="1" title="" sub_title=""][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2567029566" class="row box-dealof" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1927315404" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_10898064420331871" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-7.jpg?v=1601195738"][/ApImage][ApHtml form_id="form_1990772731" accordion_type="full" content_html="
    "][/ApHtml][ApCountdown form_id="form_18339926966124182" class="container" time_from="2020-04-01 00:00:00" time_to="2022-11-20 00:00:00" new_tab="1" active="1"][/ApCountdown][/ApColumn][/ApRow][ApRow form_id="form_7381186878158228" class="row box-textbn" bg_config="fullwidth" bg_type="fixed" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-6.jpg?v=1601195737" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3084222070" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2335544160" accordion_type="full" content_html="

    Lorem ipsum dolor sit amet

    _APENTER_
    _APENTER_
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna.
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3576195790" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3258374088" container="container" class="row box-smallproducts" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3618021129" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_7568273477551550" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="BEST SELLERS"][/ApProductCarousel][/ApColumn][ApColumn form_id="form_3139632810" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_6610476324937673" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="NEW PRODUCT"][/ApProductCarousel][/ApColumn][ApColumn form_id="form_3374816437" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApProductCarousel form_id="form_9824103813995136" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="12" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="4" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="TOP RATED"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_1972934633" container="container-large" class="row box-latestnews2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3042242850" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApBlog form_id="form_9502016278693802" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="0" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="1" bleoblogs_scat="1" bleoblogs_scre="0" bleoblogs_scoun="0" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="5" carousel_type="owlcarousel" items="3" itemsdesktop="2" itemsdesktopsmall="2" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_2862049880" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow]]]>
    0
    + 89230 +
    +
    + + 24 + + 9024Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo

    _APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER_
    _APENTER_

    1-800-666- 8888

    _APENTER_

    1-800-999- 6666

    _APENTER_
    demo@demo.com
    Labelle fashion 6789 Paris Drive Culver City, CA 12345.
    "][/ApHtml][/ApColumn][ApColumn form_id="form_1859017348" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2976564351" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="7" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-cms" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type_5="_self" link_type_5="link-cms" cmspage_id_5="5" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="CORPORATE INFO"][/ApBlockLink][/ApColumn][ApColumn form_id="form_3508690189" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2860081314" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="supplier" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type_5="_self" link_type_5="link-page" cmspage_id_5="1" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="MY account"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2121903202" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1923776143" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" link_title_2_1="Twitter" link_title_2_2="Twitter" link_title_2_3="Twitter" link_title_2_4="Twitter" link_title_2_5="Twitter" link_title_2_6="Twitter" target_type_2="_self" link_type_2="link-url" link_url_2_1="#" link_url_2_2="#" link_url_2_3="#" link_url_2_4="#" link_url_2_5="#" link_url_2_6="#" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" link_title_3_1="Tumblr" link_title_3_2="Tumblr" link_title_3_3="Tumblr" link_title_3_4="Tumblr" link_title_3_5="Tumblr" link_title_3_6="Tumblr" target_type_3="_self" link_type_3="link-url" link_url_3_1="#" link_url_3_2="#" link_url_3_3="#" link_url_3_4="#" link_url_3_5="#" link_url_3_6="#" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="supplier" link_title_4_1="Instagram" link_title_4_2="Instagram" link_title_4_3="Instagram" link_title_4_4="Instagram" link_title_4_5="Instagram" link_title_4_6="Instagram" target_type_4="_self" link_type_4="link-url" link_url_4_1="#" link_url_4_2="#" link_url_4_3="#" link_url_4_4="#" link_url_4_5="#" link_url_4_6="#" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" link_title_5_1="Youtube" link_title_5_2="Youtube" link_title_5_3="Youtube" link_title_5_4="Youtube" link_title_5_5="Youtube" link_title_5_6="Youtube" target_type_5="_self" link_type_5="link-url" link_url_5_1="#" link_url_5_2="#" link_url_5_3="#" link_url_5_4="#" link_url_5_5="#" link_url_5_6="#" cmspage_id_5="1" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="Follow us"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2316208756" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_3661979345" total_link="4" list_id_link="1,2,3,4," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="discount" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="bestsales" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="pricesdrop" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="DEPARTMENTS"][/ApBlockLink][/ApColumn][/ApRow][ApRow form_id="form_1721590732" container="container" class="row box-coppy2" bg_config="fullwidth" bg_type="normal" bg_color="#000" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3079921538" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_2941843632" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][ApImage form_id="form_5253680012303673" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/payment-2.png?v=1601278569"][/ApImage][/ApColumn][/ApRow]]]>
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo

    _APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER_
    _APENTER_

    1-800-666- 8888

    _APENTER_

    1-800-999- 6666

    _APENTER_
    demo@demo.com
    Labelle fashion 6789 Paris Drive Culver City, CA 12345.
    "][/ApHtml][/ApColumn][ApColumn form_id="form_1859017348" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2976564351" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="7" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-cms" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type_5="_self" link_type_5="link-cms" cmspage_id_5="5" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="CORPORATE INFO"][/ApBlockLink][/ApColumn][ApColumn form_id="form_3508690189" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2860081314" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="supplier" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type_5="_self" link_type_5="link-page" cmspage_id_5="1" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="MY account"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2121903202" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1923776143" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" link_title_2_1="Twitter" link_title_2_2="Twitter" link_title_2_3="Twitter" link_title_2_4="Twitter" link_title_2_5="Twitter" link_title_2_6="Twitter" target_type_2="_self" link_type_2="link-url" link_url_2_1="#" link_url_2_2="#" link_url_2_3="#" link_url_2_4="#" link_url_2_5="#" link_url_2_6="#" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" link_title_3_1="Tumblr" link_title_3_2="Tumblr" link_title_3_3="Tumblr" link_title_3_4="Tumblr" link_title_3_5="Tumblr" link_title_3_6="Tumblr" target_type_3="_self" link_type_3="link-url" link_url_3_1="#" link_url_3_2="#" link_url_3_3="#" link_url_3_4="#" link_url_3_5="#" link_url_3_6="#" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="supplier" link_title_4_1="Instagram" link_title_4_2="Instagram" link_title_4_3="Instagram" link_title_4_4="Instagram" link_title_4_5="Instagram" link_title_4_6="Instagram" target_type_4="_self" link_type_4="link-url" link_url_4_1="#" link_url_4_2="#" link_url_4_3="#" link_url_4_4="#" link_url_4_5="#" link_url_4_6="#" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" link_title_5_1="Youtube" link_title_5_2="Youtube" link_title_5_3="Youtube" link_title_5_4="Youtube" link_title_5_5="Youtube" link_title_5_6="Youtube" target_type_5="_self" link_type_5="link-url" link_url_5_1="#" link_url_5_2="#" link_url_5_3="#" link_url_5_4="#" link_url_5_5="#" link_url_5_6="#" cmspage_id_5="1" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="Follow us"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2316208756" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_3661979345" total_link="4" list_id_link="1,2,3,4," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="discount" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="bestsales" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="pricesdrop" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="DEPARTMENTS"][/ApBlockLink][/ApColumn][/ApRow][ApRow form_id="form_1721590732" container="container" class="row box-coppy2" bg_config="fullwidth" bg_type="normal" bg_color="#000" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3079921538" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_2941843632" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][ApImage form_id="form_5253680012303673" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/payment-2.png?v=1601278569"][/ApImage][/ApColumn][/ApRow]]]>
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo

    _APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER_
    _APENTER_

    1-800-666- 8888

    _APENTER_

    1-800-999- 6666

    _APENTER_
    demo@demo.com
    Labelle fashion 6789 Paris Drive Culver City, CA 12345.
    "][/ApHtml][/ApColumn][ApColumn form_id="form_1859017348" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2976564351" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="7" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-cms" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type_5="_self" link_type_5="link-cms" cmspage_id_5="5" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="CORPORATE INFO"][/ApBlockLink][/ApColumn][ApColumn form_id="form_3508690189" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2860081314" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="supplier" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type_5="_self" link_type_5="link-page" cmspage_id_5="1" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="MY account"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2121903202" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1923776143" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" link_title_2_1="Twitter" link_title_2_2="Twitter" link_title_2_3="Twitter" link_title_2_4="Twitter" link_title_2_5="Twitter" link_title_2_6="Twitter" target_type_2="_self" link_type_2="link-url" link_url_2_1="#" link_url_2_2="#" link_url_2_3="#" link_url_2_4="#" link_url_2_5="#" link_url_2_6="#" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" link_title_3_1="Tumblr" link_title_3_2="Tumblr" link_title_3_3="Tumblr" link_title_3_4="Tumblr" link_title_3_5="Tumblr" link_title_3_6="Tumblr" target_type_3="_self" link_type_3="link-url" link_url_3_1="#" link_url_3_2="#" link_url_3_3="#" link_url_3_4="#" link_url_3_5="#" link_url_3_6="#" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="supplier" link_title_4_1="Instagram" link_title_4_2="Instagram" link_title_4_3="Instagram" link_title_4_4="Instagram" link_title_4_5="Instagram" link_title_4_6="Instagram" target_type_4="_self" link_type_4="link-url" link_url_4_1="#" link_url_4_2="#" link_url_4_3="#" link_url_4_4="#" link_url_4_5="#" link_url_4_6="#" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" link_title_5_1="Youtube" link_title_5_2="Youtube" link_title_5_3="Youtube" link_title_5_4="Youtube" link_title_5_5="Youtube" link_title_5_6="Youtube" target_type_5="_self" link_type_5="link-url" link_url_5_1="#" link_url_5_2="#" link_url_5_3="#" link_url_5_4="#" link_url_5_5="#" link_url_5_6="#" cmspage_id_5="1" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="Follow us"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2316208756" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_3661979345" total_link="4" list_id_link="1,2,3,4," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="discount" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="bestsales" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="pricesdrop" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="DEPARTMENTS"][/ApBlockLink][/ApColumn][/ApRow][ApRow form_id="form_1721590732" container="container" class="row box-coppy2" bg_config="fullwidth" bg_type="normal" bg_color="#000" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3079921538" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_2941843632" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][ApImage form_id="form_5253680012303673" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/payment-2.png?v=1601278569"][/ApImage][/ApColumn][/ApRow]]]>
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo

    _APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER_
    _APENTER_

    1-800-666- 8888

    _APENTER_

    1-800-999- 6666

    _APENTER_
    demo@demo.com
    Labelle fashion 6789 Paris Drive Culver City, CA 12345.
    "][/ApHtml][/ApColumn][ApColumn form_id="form_1859017348" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2976564351" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="7" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-cms" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type_5="_self" link_type_5="link-cms" cmspage_id_5="5" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="CORPORATE INFO"][/ApBlockLink][/ApColumn][ApColumn form_id="form_3508690189" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2860081314" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="supplier" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type_5="_self" link_type_5="link-page" cmspage_id_5="1" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="MY account"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2121903202" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1923776143" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" link_title_2_1="Twitter" link_title_2_2="Twitter" link_title_2_3="Twitter" link_title_2_4="Twitter" link_title_2_5="Twitter" link_title_2_6="Twitter" target_type_2="_self" link_type_2="link-url" link_url_2_1="#" link_url_2_2="#" link_url_2_3="#" link_url_2_4="#" link_url_2_5="#" link_url_2_6="#" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" link_title_3_1="Tumblr" link_title_3_2="Tumblr" link_title_3_3="Tumblr" link_title_3_4="Tumblr" link_title_3_5="Tumblr" link_title_3_6="Tumblr" target_type_3="_self" link_type_3="link-url" link_url_3_1="#" link_url_3_2="#" link_url_3_3="#" link_url_3_4="#" link_url_3_5="#" link_url_3_6="#" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="supplier" link_title_4_1="Instagram" link_title_4_2="Instagram" link_title_4_3="Instagram" link_title_4_4="Instagram" link_title_4_5="Instagram" link_title_4_6="Instagram" target_type_4="_self" link_type_4="link-url" link_url_4_1="#" link_url_4_2="#" link_url_4_3="#" link_url_4_4="#" link_url_4_5="#" link_url_4_6="#" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" link_title_5_1="Youtube" link_title_5_2="Youtube" link_title_5_3="Youtube" link_title_5_4="Youtube" link_title_5_5="Youtube" link_title_5_6="Youtube" target_type_5="_self" link_type_5="link-url" link_url_5_1="#" link_url_5_2="#" link_url_5_3="#" link_url_5_4="#" link_url_5_5="#" link_url_5_6="#" cmspage_id_5="1" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="Follow us"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2316208756" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_3661979345" total_link="4" list_id_link="1,2,3,4," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="discount" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="bestsales" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="pricesdrop" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="DEPARTMENTS"][/ApBlockLink][/ApColumn][/ApRow][ApRow form_id="form_1721590732" container="container" class="row box-coppy2" bg_config="fullwidth" bg_type="normal" bg_color="#000" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3079921538" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_2941843632" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][ApImage form_id="form_5253680012303673" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/payment-2.png?v=1601278569"][/ApImage][/ApColumn][/ApRow]]]>
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo

    _APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER_
    _APENTER_

    1-800-666- 8888

    _APENTER_

    1-800-999- 6666

    _APENTER_
    demo@demo.com
    Labelle fashion 6789 Paris Drive Culver City, CA 12345.
    "][/ApHtml][/ApColumn][ApColumn form_id="form_1859017348" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2976564351" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="7" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-cms" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type_5="_self" link_type_5="link-cms" cmspage_id_5="5" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="CORPORATE INFO"][/ApBlockLink][/ApColumn][ApColumn form_id="form_3508690189" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2860081314" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="supplier" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type_5="_self" link_type_5="link-page" cmspage_id_5="1" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="MY account"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2121903202" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1923776143" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" link_title_2_1="Twitter" link_title_2_2="Twitter" link_title_2_3="Twitter" link_title_2_4="Twitter" link_title_2_5="Twitter" link_title_2_6="Twitter" target_type_2="_self" link_type_2="link-url" link_url_2_1="#" link_url_2_2="#" link_url_2_3="#" link_url_2_4="#" link_url_2_5="#" link_url_2_6="#" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" link_title_3_1="Tumblr" link_title_3_2="Tumblr" link_title_3_3="Tumblr" link_title_3_4="Tumblr" link_title_3_5="Tumblr" link_title_3_6="Tumblr" target_type_3="_self" link_type_3="link-url" link_url_3_1="#" link_url_3_2="#" link_url_3_3="#" link_url_3_4="#" link_url_3_5="#" link_url_3_6="#" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="supplier" link_title_4_1="Instagram" link_title_4_2="Instagram" link_title_4_3="Instagram" link_title_4_4="Instagram" link_title_4_5="Instagram" link_title_4_6="Instagram" target_type_4="_self" link_type_4="link-url" link_url_4_1="#" link_url_4_2="#" link_url_4_3="#" link_url_4_4="#" link_url_4_5="#" link_url_4_6="#" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" link_title_5_1="Youtube" link_title_5_2="Youtube" link_title_5_3="Youtube" link_title_5_4="Youtube" link_title_5_5="Youtube" link_title_5_6="Youtube" target_type_5="_self" link_type_5="link-url" link_url_5_1="#" link_url_5_2="#" link_url_5_3="#" link_url_5_4="#" link_url_5_5="#" link_url_5_6="#" cmspage_id_5="1" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="Follow us"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2316208756" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_3661979345" total_link="4" list_id_link="1,2,3,4," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="discount" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="bestsales" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="pricesdrop" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="DEPARTMENTS"][/ApBlockLink][/ApColumn][/ApRow][ApRow form_id="form_1721590732" container="container" class="row box-coppy2" bg_config="fullwidth" bg_type="normal" bg_color="#000" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3079921538" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_2941843632" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][ApImage form_id="form_5253680012303673" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/payment-2.png?v=1601278569"][/ApImage][/ApColumn][/ApRow]]]>
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna. Integer in lectus sed ligula commodo

    _APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER__APENTER_
    _APENTER_

    1-800-666- 8888

    _APENTER_

    1-800-999- 6666

    _APENTER_
    demo@demo.com
    Labelle fashion 6789 Paris Drive Culver City, CA 12345.
    "][/ApHtml][/ApColumn][ApColumn form_id="form_1859017348" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2976564351" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="7" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-cms" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type_5="_self" link_type_5="link-cms" cmspage_id_5="5" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="CORPORATE INFO"][/ApBlockLink][/ApColumn][ApColumn form_id="form_3508690189" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_2860081314" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="supplier" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type_5="_self" link_type_5="link-page" cmspage_id_5="1" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="MY account"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2121903202" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1923776143" total_link="5" list_id_link="1,2,3,4,5," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4,link_title_5,link_url_5,link_title_5,link_url_5," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" link_title_2_1="Twitter" link_title_2_2="Twitter" link_title_2_3="Twitter" link_title_2_4="Twitter" link_title_2_5="Twitter" link_title_2_6="Twitter" target_type_2="_self" link_type_2="link-url" link_url_2_1="#" link_url_2_2="#" link_url_2_3="#" link_url_2_4="#" link_url_2_5="#" link_url_2_6="#" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" link_title_3_1="Tumblr" link_title_3_2="Tumblr" link_title_3_3="Tumblr" link_title_3_4="Tumblr" link_title_3_5="Tumblr" link_title_3_6="Tumblr" target_type_3="_self" link_type_3="link-url" link_url_3_1="#" link_url_3_2="#" link_url_3_3="#" link_url_3_4="#" link_url_3_5="#" link_url_3_6="#" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="supplier" link_title_4_1="Instagram" link_title_4_2="Instagram" link_title_4_3="Instagram" link_title_4_4="Instagram" link_title_4_5="Instagram" link_title_4_6="Instagram" target_type_4="_self" link_type_4="link-url" link_url_4_1="#" link_url_4_2="#" link_url_4_3="#" link_url_4_4="#" link_url_4_5="#" link_url_4_6="#" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" link_title_5_1="Youtube" link_title_5_2="Youtube" link_title_5_3="Youtube" link_title_5_4="Youtube" link_title_5_5="Youtube" link_title_5_6="Youtube" target_type_5="_self" link_type_5="link-url" link_url_5_1="#" link_url_5_2="#" link_url_5_3="#" link_url_5_4="#" link_url_5_5="#" link_url_5_6="#" cmspage_id_5="1" category_id_5="2" manufacture_id_5="1" supplier_id_5="1" page_id_5="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="Follow us"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2316208756" xl="2" lg="2" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_3661979345" total_link="4" list_id_link="1,2,3,4," list_field="target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4,target_type_5,link_type_5,cmspage_id_5,category_id_5,product_id_5,manufacture_id_5,page_id_5,page_param_5,supplier_id_5," list_field_lang="link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-url" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="discount" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="bestsales" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="pricesdrop" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="DEPARTMENTS"][/ApBlockLink][/ApColumn][/ApRow][ApRow form_id="form_1721590732" container="container" class="row box-coppy2" bg_config="fullwidth" bg_type="normal" bg_color="#000" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3079921538" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApHtml form_id="form_2941843632" accordion_type="full" active="1" content_html="
    Copyright © 2020 by Prestashop Themes Template.
    "][/ApHtml][ApImage form_id="form_5253680012303673" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/payment-2.png?v=1601278569"][/ApImage][/ApColumn][/ApRow]]]>
    0
    + 91240 + 92240 +
    +
    + + 4 + + 1240 + 1340 + 1440 + 1540 + 1640 + +
    + 9
    25
    26
    27
    4000 + + 25 + + 93250 + 94250 + 9525_APENTER_

    Free shipping all around the world!

    _APENTER_

    Ut enim ad minim veniam, quis nostrud

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_3491944261" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5128621615142209" active="1" content_html="_APENTER_

    Online support 24/7

    _APENTER_

    Duis aute irure dolor in reprehenderit

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_1745798484" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_19766599752801048" active="1" content_html="_APENTER_

    Money back guarante

    _APENTER_

    Quis nostrud exercitation ullamco laboris

    "][/ApRawHtml][/ApColumn][/ApRow]]]>
    _APENTER_

    Free shipping all around the world!

    _APENTER_

    Ut enim ad minim veniam, quis nostrud

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_3491944261" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5128621615142209" active="1" content_html="_APENTER_

    Online support 24/7

    _APENTER_

    Duis aute irure dolor in reprehenderit

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_1745798484" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_19766599752801048" active="1" content_html="_APENTER_

    Money back guarante

    _APENTER_

    Quis nostrud exercitation ullamco laboris

    "][/ApRawHtml][/ApColumn][/ApRow]]]>
    _APENTER_

    Free shipping all around the world!

    _APENTER_

    Ut enim ad minim veniam, quis nostrud

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_3491944261" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5128621615142209" active="1" content_html="_APENTER_

    Online support 24/7

    _APENTER_

    Duis aute irure dolor in reprehenderit

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_1745798484" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_19766599752801048" active="1" content_html="_APENTER_

    Money back guarante

    _APENTER_

    Quis nostrud exercitation ullamco laboris

    "][/ApRawHtml][/ApColumn][/ApRow]]]>
    _APENTER_

    Free shipping all around the world!

    _APENTER_

    Ut enim ad minim veniam, quis nostrud

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_3491944261" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5128621615142209" active="1" content_html="_APENTER_

    Online support 24/7

    _APENTER_

    Duis aute irure dolor in reprehenderit

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_1745798484" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_19766599752801048" active="1" content_html="_APENTER_

    Money back guarante

    _APENTER_

    Quis nostrud exercitation ullamco laboris

    "][/ApRawHtml][/ApColumn][/ApRow]]]>
    _APENTER_

    Free shipping all around the world!

    _APENTER_

    Ut enim ad minim veniam, quis nostrud

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_3491944261" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5128621615142209" active="1" content_html="_APENTER_

    Online support 24/7

    _APENTER_

    Duis aute irure dolor in reprehenderit

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_1745798484" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_19766599752801048" active="1" content_html="_APENTER_

    Money back guarante

    _APENTER_

    Quis nostrud exercitation ullamco laboris

    "][/ApRawHtml][/ApColumn][/ApRow]]]>
    _APENTER_

    Free shipping all around the world!

    _APENTER_

    Ut enim ad minim veniam, quis nostrud

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_3491944261" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_5128621615142209" active="1" content_html="_APENTER_

    Online support 24/7

    _APENTER_

    Duis aute irure dolor in reprehenderit

    "][/ApRawHtml][/ApColumn][ApColumn form_id="form_1745798484" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApRawHtml form_id="form_19766599752801048" active="1" content_html="_APENTER_

    Money back guarante

    _APENTER_

    Quis nostrud exercitation ullamco laboris

    "][/ApRawHtml][/ApColumn][/ApRow]]]>
    0
    + 9625_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_1697692609" class="col-right" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1876132668" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2031008713" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3010042526" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_3584657951" container="container" class="row box-htop3" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3644593345" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_31146690735136555" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_1697692609" class="col-right" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1876132668" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2031008713" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3010042526" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_3584657951" container="container" class="row box-htop3" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3644593345" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_31146690735136555" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_1697692609" class="col-right" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1876132668" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2031008713" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3010042526" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_3584657951" container="container" class="row box-htop3" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3644593345" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_31146690735136555" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_1697692609" class="col-right" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1876132668" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2031008713" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3010042526" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_3584657951" container="container" class="row box-htop3" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3644593345" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_31146690735136555" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_1697692609" class="col-right" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1876132668" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2031008713" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3010042526" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_3584657951" container="container" class="row box-htop3" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3644593345" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_31146690735136555" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APQUOT__APOCBRACKET_$shop.name_APCCBRACKET__APQUOT__APENTER_ _APENTER_" active="1"][/ApGenCode][/ApColumn][ApColumn form_id="form_1697692609" class="col-right" xl="4" lg="4" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1876132668" name_module="leoproductsearch" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_2031008713" name_module="ps_customersignin" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_3010042526" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow][ApRow form_id="form_3584657951" container="container" class="row box-htop3" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3644593345" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApMegamenu form_id="form_31146690735136555" megamenu_group="680b537dca3a662fa681c27c0bdc0d54" active="1"][/ApMegamenu][/ApColumn][/ApRow]]]>0 + 97250 +
    +
    + + 26 + + 98260 + 9926WOMEN_APENTER_

    COLLECTION

    "][/ApImage][/ApColumn][ApColumn form_id="form_3169745962" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApTabs form_id="form_2667829916" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_3676700826" id="tab_1796243916" css_class="" image="" override_folder="" title="Top" sub_title=""][ApProductCarousel form_id="form_2372230149292306" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_2226139246" id="tab_1974274666" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_15988800023263092" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="3" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_1613587037" id="tab_2919431700" css_class="" image="" override_folder="" title="hats" sub_title=""][ApProductCarousel form_id="form_8912523791812414" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="3" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_2854276344" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3212664731558418" class="row box-textbn" bg_config="fullwidth" bg_type="normal" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-8.jpg?v=1601195738" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3679741958" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2472646922" accordion_type="full" content_html="

    Lorem ipsum dolor sit amet

    _APENTER_
    _APENTER_
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna.
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3013338415" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3586578078" container="container-large" class="row box-protabs" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2237506485" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApTabs form_id="form_3522052062" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_2838026421" id="tab_3099589534" css_class="" image="" override_folder="" title="Top" sub_title=""][ApProductCarousel form_id="form_3625281663744081" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3463158376" id="tab_1972246185" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_8661386432490894" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_2129594006" id="tab_2651365335" css_class="" image="" override_folder="" title="hats" sub_title=""][ApProductCarousel form_id="form_5608028454220301" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][ApColumn form_id="form_2087054063" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4314735725292611" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-2_f9524461-f84d-464c-8feb-9821b93d858b.jpg?v=1601195738" description="

    MEN

    _APENTER_

    COLLECTION

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3229245305" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3419700498" container="container" class="row box-probanner" bg_config="fullwidth" bg_type="normal" bg_color="#f4f4f4" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2447504650" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_5110033387735335" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-3.png?v=1601195738" description="

    BEST OF THE DAY

    _APENTER_

    VINTAGE STYLE
    DRESSES

    _APENTER_

    $399

    _APENTER_

    DISCOVER

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_2884863309" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2414657269" container="container-large" class="row box-banner3" margin_bottom="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2168982844" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_5277160986664397" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-4_4a29727d-d9cc-406f-87fe-654d51ccd8cf.jpg?v=1601195737"][/ApImage][ApRawHtml form_id="form_1907052564" content_html="

    MEN_APAPOST_S COLLECTION

    _APENTER_

    BREAKOUT CLOTHING NEW ARRIVALS

    _APENTER_

    CHECK IT OUT

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_3564562243" container="container-large" class="row box-banner3 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3149648428" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApRawHtml form_id="form_2806838150" active="1" content_html="

    TRAVEL IN STYLE

    _APENTER_

    MEN_APAPOST_S FASHION TIPS AND MEN_APAPOST_S STYLE GUIDE

    _APENTER_

    CHECK IT OUT

    "][/ApRawHtml][ApImage form_id="form_4766268875040016" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-5_bf67ffa8-02b1-4691-a6d2-53ecc1ce1347.jpg?v=1601195738"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_1827073856" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_5098803033802482" class="row box-testimonial" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2715936369" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_39229504216727045" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-6_20d91249-de55-4bf2-9e92-980334d415f4.jpg?v=1601195738"][/ApImage][ApBlockCarousel form_id="form_6822779419293558" is_open="0" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="0" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="1" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" nbitemsperpage="12" interval="5000" total_slider="2|1" tit_2_1="Antonio Edovel" sub_tit_2_1="Male from Frances" descript_2_1="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis" sub_tit_2_2="Male from Frances" sub_tit_2_3="Male from Frances" sub_tit_2_4="Male from Frances" sub_tit_2_5="Male from Frances" sub_tit_2_6="Male from Frances" tit_1_1="Elizabeth Ruiz" sub_tit_1_1="Female from United States" descript_1_1="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis" sub_tit_1_2="Female from United States" sub_tit_1_3="Female from United States" sub_tit_1_4="Female from United States" sub_tit_1_5="Female from United States" sub_tit_1_6="Female from United States" active="1"][/ApBlockCarousel][/ApColumn][ApColumn form_id="form_3176791853" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlog form_id="form_3427086847619479" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="0" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="1" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="4" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_3412898339" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2634872723" container="container" class="row box-popular" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2579631164" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_6012936555437595" value_by_product_type="1" category_type="all" product_type="all" order_way="asc" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="2" itemsmobile="1" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="MOST POPULAR"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2202558459" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7890915003963796" class="row box-instagram3" bg_config="fullwidth" bg_type="normal" bg_color="#f4f4f4" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1911130024" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApInstagram form_id="form_20477430156990672" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="6" itemsdesktopsmall="5" itemstablet="4" itemsmobile="3" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 3_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET_, _APOBRACKET_1600, 6_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="Folow us " sub_title=""][/ApInstagram][/ApColumn][ApColumn form_id="form_3660609232" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_19367729553796762" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-7.jpg?v=1601195738"][/ApImage][ApModule form_id="form_3149832584" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    WOMEN_APENTER_

    COLLECTION

    "][/ApImage][/ApColumn][ApColumn form_id="form_3169745962" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApTabs form_id="form_2667829916" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_3676700826" id="tab_1796243916" css_class="" image="" override_folder="" title="Retour" sub_title=""][ApProductCarousel form_id="form_2372230149292306" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_2226139246" id="tab_1974274666" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_15988800023263092" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="3" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_1613587037" id="tab_2919431700" css_class="" image="" override_folder="" title="New Tab" sub_title=""][ApProductCarousel form_id="form_8912523791812414" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="3" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_2854276344" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3212664731558418" class="row box-textbn" bg_config="fullwidth" bg_type="normal" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-8.jpg?v=1601195738" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3679741958" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2472646922" accordion_type="full" content_html="

    Lorem ipsum dolor sit amet

    _APENTER_
    _APENTER_
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna.
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3013338415" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3586578078" container="container-large" class="row box-protabs" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2237506485" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApTabs form_id="form_3522052062" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_2838026421" id="tab_3099589534" css_class="" image="" override_folder="" title="Retour" sub_title=""][ApProductCarousel form_id="form_3625281663744081" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3463158376" id="tab_1972246185" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_8661386432490894" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_2129594006" id="tab_2651365335" css_class="" image="" override_folder="" title="New Tab" sub_title=""][ApProductCarousel form_id="form_5608028454220301" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][ApColumn form_id="form_2087054063" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4314735725292611" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-2_f9524461-f84d-464c-8feb-9821b93d858b.jpg?v=1601195738" description="

    MEN

    _APENTER_

    COLLECTION

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3229245305" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3419700498" container="container" class="row box-probanner" bg_config="fullwidth" bg_type="normal" bg_color="#f4f4f4" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2447504650" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_5110033387735335" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-3.png?v=1601195738" description="

    BEST OF THE DAY

    _APENTER_

    VINTAGE STYLE
    DRESSES

    _APENTER_

    $399

    _APENTER_

    DISCOVER

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_2884863309" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2414657269" container="container-large" class="row box-banner3" margin_bottom="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2168982844" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_5277160986664397" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-4_4a29727d-d9cc-406f-87fe-654d51ccd8cf.jpg?v=1601195737"][/ApImage][ApRawHtml form_id="form_1907052564" content_html="

    MEN_APAPOST_S COLLECTION

    _APENTER_

    BREAKOUT CLOTHING NEW ARRIVALS

    _APENTER_

    CHECK IT OUT

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_3564562243" container="container-large" class="row box-banner3 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3149648428" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApRawHtml form_id="form_2806838150" active="1" content_html="

    TRAVEL IN STYLE

    _APENTER_

    MEN_APAPOST_S FASHION TIPS AND MEN_APAPOST_S STYLE GUIDE

    _APENTER_

    CHECK IT OUT

    "][/ApRawHtml][ApImage form_id="form_4766268875040016" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-5_bf67ffa8-02b1-4691-a6d2-53ecc1ce1347.jpg?v=1601195738"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_1827073856" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_5098803033802482" class="row box-testimonial" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2715936369" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_39229504216727045" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-6_20d91249-de55-4bf2-9e92-980334d415f4.jpg?v=1601195738"][/ApImage][ApBlockCarousel form_id="form_6822779419293558" is_open="0" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="0" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="1" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" nbitemsperpage="12" interval="5000" total_slider="2|1" sub_tit_2_1="Male from Frances" sub_tit_2_2="Male from Frances" sub_tit_2_3="Male from Frances" sub_tit_2_4="Male from Frances" sub_tit_2_5="Male from Frances" sub_tit_2_6="Male from Frances" sub_tit_1_1="Female from United States" sub_tit_1_2="Female from United States" sub_tit_1_3="Female from United States" sub_tit_1_4="Female from United States" sub_tit_1_5="Female from United States" sub_tit_1_6="Female from United States" active="1" tit_2_2="Antonio Edovel" descript_2_2="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis" tit_1_2="Elizabeth Ruiz" descript_1_2="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis"][/ApBlockCarousel][/ApColumn][ApColumn form_id="form_3176791853" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlog form_id="form_3427086847619479" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="0" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="1" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="4" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_3412898339" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2634872723" container="container" class="row box-popular" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2579631164" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_6012936555437595" value_by_product_type="1" category_type="all" product_type="all" order_way="asc" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="2" itemsmobile="1" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="MOST POPULAR"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2202558459" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7890915003963796" class="row box-instagram3" bg_config="fullwidth" bg_type="normal" bg_color="#f4f4f4" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1911130024" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApInstagram form_id="form_20477430156990672" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="6" itemsdesktopsmall="5" itemstablet="4" itemsmobile="3" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 3_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET_, _APOBRACKET_1600, 6_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="Folow us " sub_title=""][/ApInstagram][/ApColumn][ApColumn form_id="form_3660609232" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_19367729553796762" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-7.jpg?v=1601195738"][/ApImage][ApModule form_id="form_3149832584" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    WOMEN_APENTER_

    COLLECTION

    "][/ApImage][/ApColumn][ApColumn form_id="form_3169745962" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApTabs form_id="form_2667829916" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_3676700826" id="tab_1796243916" css_class="" image="" override_folder="" title="oben" sub_title=""][ApProductCarousel form_id="form_2372230149292306" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_2226139246" id="tab_1974274666" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_15988800023263092" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="3" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_1613587037" id="tab_2919431700" css_class="" image="" override_folder="" title="Hüte" sub_title=""][ApProductCarousel form_id="form_8912523791812414" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="3" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_2854276344" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3212664731558418" class="row box-textbn" bg_config="fullwidth" bg_type="normal" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-8.jpg?v=1601195738" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3679741958" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2472646922" accordion_type="full" content_html="

    Lorem ipsum dolor sit amet

    _APENTER_
    _APENTER_
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna.
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3013338415" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3586578078" container="container-large" class="row box-protabs" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2237506485" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApTabs form_id="form_3522052062" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_2838026421" id="tab_3099589534" css_class="" image="" override_folder="" title="oben" sub_title=""][ApProductCarousel form_id="form_3625281663744081" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3463158376" id="tab_1972246185" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_8661386432490894" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_2129594006" id="tab_2651365335" css_class="" image="" override_folder="" title="Hüte" sub_title=""][ApProductCarousel form_id="form_5608028454220301" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][ApColumn form_id="form_2087054063" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4314735725292611" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-2_f9524461-f84d-464c-8feb-9821b93d858b.jpg?v=1601195738" description="

    MEN

    _APENTER_

    COLLECTION

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3229245305" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3419700498" container="container" class="row box-probanner" bg_config="fullwidth" bg_type="normal" bg_color="#f4f4f4" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2447504650" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_5110033387735335" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-3.png?v=1601195738" description="

    BEST OF THE DAY

    _APENTER_

    VINTAGE STYLE
    DRESSES

    _APENTER_

    $399

    _APENTER_

    DISCOVER

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_2884863309" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2414657269" container="container-large" class="row box-banner3" margin_bottom="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2168982844" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_5277160986664397" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-4_4a29727d-d9cc-406f-87fe-654d51ccd8cf.jpg?v=1601195737"][/ApImage][ApRawHtml form_id="form_1907052564" content_html="

    MEN_APAPOST_S COLLECTION

    _APENTER_

    BREAKOUT CLOTHING NEW ARRIVALS

    _APENTER_

    CHECK IT OUT

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_3564562243" container="container-large" class="row box-banner3 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3149648428" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApRawHtml form_id="form_2806838150" active="1" content_html="

    TRAVEL IN STYLE

    _APENTER_

    MEN_APAPOST_S FASHION TIPS AND MEN_APAPOST_S STYLE GUIDE

    _APENTER_

    CHECK IT OUT

    "][/ApRawHtml][ApImage form_id="form_4766268875040016" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-5_bf67ffa8-02b1-4691-a6d2-53ecc1ce1347.jpg?v=1601195738"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_1827073856" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_5098803033802482" class="row box-testimonial" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2715936369" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_39229504216727045" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-6_20d91249-de55-4bf2-9e92-980334d415f4.jpg?v=1601195738"][/ApImage][ApBlockCarousel form_id="form_6822779419293558" is_open="0" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="0" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="1" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" nbitemsperpage="12" interval="5000" total_slider="2|1" sub_tit_2_1="Male from Frances" sub_tit_2_2="Male from Frances" sub_tit_2_3="Male from Frances" sub_tit_2_4="Male from Frances" sub_tit_2_5="Male from Frances" sub_tit_2_6="Male from Frances" sub_tit_1_1="Female from United States" sub_tit_1_2="Female from United States" sub_tit_1_3="Female from United States" sub_tit_1_4="Female from United States" sub_tit_1_5="Female from United States" sub_tit_1_6="Female from United States" active="1" tit_2_3="Antonio Edovel" descript_2_3="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis" tit_1_3="Elizabeth Ruiz" descript_1_3="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis"][/ApBlockCarousel][/ApColumn][ApColumn form_id="form_3176791853" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlog form_id="form_3427086847619479" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="0" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="1" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="4" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_3412898339" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2634872723" container="container" class="row box-popular" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2579631164" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_6012936555437595" value_by_product_type="1" category_type="all" product_type="all" order_way="asc" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="2" itemsmobile="1" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="MOST POPULAR"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2202558459" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7890915003963796" class="row box-instagram3" bg_config="fullwidth" bg_type="normal" bg_color="#f4f4f4" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1911130024" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApInstagram form_id="form_20477430156990672" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="6" itemsdesktopsmall="5" itemstablet="4" itemsmobile="3" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 3_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET_, _APOBRACKET_1600, 6_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="Folow us " sub_title=""][/ApInstagram][/ApColumn][ApColumn form_id="form_3660609232" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_19367729553796762" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-7.jpg?v=1601195738"][/ApImage][ApModule form_id="form_3149832584" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    WOMEN_APENTER_

    COLLECTION

    "][/ApImage][/ApColumn][ApColumn form_id="form_3169745962" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApTabs form_id="form_2667829916" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_3676700826" id="tab_1796243916" css_class="" image="" override_folder="" title="alto" sub_title=""][ApProductCarousel form_id="form_2372230149292306" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_2226139246" id="tab_1974274666" css_class="" image="" override_folder="" title="Shoses" sub_title=""][ApProductCarousel form_id="form_15988800023263092" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="3" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_1613587037" id="tab_2919431700" css_class="" image="" override_folder="" title="Cappelli" sub_title=""][ApProductCarousel form_id="form_8912523791812414" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="3" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_2854276344" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3212664731558418" class="row box-textbn" bg_config="fullwidth" bg_type="normal" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-8.jpg?v=1601195738" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3679741958" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2472646922" accordion_type="full" content_html="

    Lorem ipsum dolor sit amet

    _APENTER_
    _APENTER_
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna.
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3013338415" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3586578078" container="container-large" class="row box-protabs" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2237506485" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApTabs form_id="form_3522052062" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_2838026421" id="tab_3099589534" css_class="" image="" override_folder="" title="alto" sub_title=""][ApProductCarousel form_id="form_3625281663744081" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3463158376" id="tab_1972246185" css_class="" image="" override_folder="" title="Shoses" sub_title=""][ApProductCarousel form_id="form_8661386432490894" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_2129594006" id="tab_2651365335" css_class="" image="" override_folder="" title="Cappelli" sub_title=""][ApProductCarousel form_id="form_5608028454220301" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][ApColumn form_id="form_2087054063" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4314735725292611" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-2_f9524461-f84d-464c-8feb-9821b93d858b.jpg?v=1601195738" description="

    MEN

    _APENTER_

    COLLECTION

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3229245305" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3419700498" container="container" class="row box-probanner" bg_config="fullwidth" bg_type="normal" bg_color="#f4f4f4" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2447504650" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_5110033387735335" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-3.png?v=1601195738" description="

    BEST OF THE DAY

    _APENTER_

    VINTAGE STYLE
    DRESSES

    _APENTER_

    $399

    _APENTER_

    DISCOVER

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_2884863309" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2414657269" container="container-large" class="row box-banner3" margin_bottom="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2168982844" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_5277160986664397" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-4_4a29727d-d9cc-406f-87fe-654d51ccd8cf.jpg?v=1601195737"][/ApImage][ApRawHtml form_id="form_1907052564" content_html="

    MEN_APAPOST_S COLLECTION

    _APENTER_

    BREAKOUT CLOTHING NEW ARRIVALS

    _APENTER_

    CHECK IT OUT

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_3564562243" container="container-large" class="row box-banner3 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3149648428" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApRawHtml form_id="form_2806838150" active="1" content_html="

    TRAVEL IN STYLE

    _APENTER_

    MEN_APAPOST_S FASHION TIPS AND MEN_APAPOST_S STYLE GUIDE

    _APENTER_

    CHECK IT OUT

    "][/ApRawHtml][ApImage form_id="form_4766268875040016" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-5_bf67ffa8-02b1-4691-a6d2-53ecc1ce1347.jpg?v=1601195738"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_1827073856" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_5098803033802482" class="row box-testimonial" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2715936369" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_39229504216727045" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-6_20d91249-de55-4bf2-9e92-980334d415f4.jpg?v=1601195738"][/ApImage][ApBlockCarousel form_id="form_6822779419293558" is_open="0" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="0" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="1" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" nbitemsperpage="12" interval="5000" total_slider="2|1" sub_tit_2_1="Male from Frances" sub_tit_2_2="Male from Frances" sub_tit_2_3="Male from Frances" sub_tit_2_4="Male from Frances" sub_tit_2_5="Male from Frances" sub_tit_2_6="Male from Frances" sub_tit_1_1="Female from United States" sub_tit_1_2="Female from United States" sub_tit_1_3="Female from United States" sub_tit_1_4="Female from United States" sub_tit_1_5="Female from United States" sub_tit_1_6="Female from United States" active="1" tit_2_4="Antonio Edovel" descript_2_4="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis" tit_1_4="Elizabeth Ruiz" descript_1_4="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis"][/ApBlockCarousel][/ApColumn][ApColumn form_id="form_3176791853" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlog form_id="form_3427086847619479" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="0" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="1" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="4" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_3412898339" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2634872723" container="container" class="row box-popular" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2579631164" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_6012936555437595" value_by_product_type="1" category_type="all" product_type="all" order_way="asc" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="2" itemsmobile="1" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="MOST POPULAR"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2202558459" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7890915003963796" class="row box-instagram3" bg_config="fullwidth" bg_type="normal" bg_color="#f4f4f4" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1911130024" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApInstagram form_id="form_20477430156990672" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="6" itemsdesktopsmall="5" itemstablet="4" itemsmobile="3" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 3_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET_, _APOBRACKET_1600, 6_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="Folow us " sub_title=""][/ApInstagram][/ApColumn][ApColumn form_id="form_3660609232" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_19367729553796762" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-7.jpg?v=1601195738"][/ApImage][ApModule form_id="form_3149832584" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    WOMEN_APENTER_

    COLLECTION

    "][/ApImage][/ApColumn][ApColumn form_id="form_3169745962" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApTabs form_id="form_2667829916" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_3676700826" id="tab_1796243916" css_class="" image="" override_folder="" title="Arriba" sub_title=""][ApProductCarousel form_id="form_2372230149292306" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_2226139246" id="tab_1974274666" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_15988800023263092" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="3" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_1613587037" id="tab_2919431700" css_class="" image="" override_folder="" title="sombreros" sub_title=""][ApProductCarousel form_id="form_8912523791812414" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="3" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_2854276344" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3212664731558418" class="row box-textbn" bg_config="fullwidth" bg_type="normal" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-8.jpg?v=1601195738" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3679741958" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2472646922" accordion_type="full" content_html="

    Lorem ipsum dolor sit amet

    _APENTER_
    _APENTER_
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna.
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3013338415" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3586578078" container="container-large" class="row box-protabs" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2237506485" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApTabs form_id="form_3522052062" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_2838026421" id="tab_3099589534" css_class="" image="" override_folder="" title="Arriba" sub_title=""][ApProductCarousel form_id="form_3625281663744081" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3463158376" id="tab_1972246185" css_class="" image="" override_folder="" title="shoses" sub_title=""][ApProductCarousel form_id="form_8661386432490894" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_2129594006" id="tab_2651365335" css_class="" image="" override_folder="" title="sombreros" sub_title=""][ApProductCarousel form_id="form_5608028454220301" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][ApColumn form_id="form_2087054063" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4314735725292611" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-2_f9524461-f84d-464c-8feb-9821b93d858b.jpg?v=1601195738" description="

    MEN

    _APENTER_

    COLLECTION

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3229245305" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3419700498" container="container" class="row box-probanner" bg_config="fullwidth" bg_type="normal" bg_color="#f4f4f4" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2447504650" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_5110033387735335" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-3.png?v=1601195738" description="

    BEST OF THE DAY

    _APENTER_

    VINTAGE STYLE
    DRESSES

    _APENTER_

    $399

    _APENTER_

    DISCOVER

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_2884863309" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2414657269" container="container-large" class="row box-banner3" margin_bottom="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2168982844" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_5277160986664397" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-4_4a29727d-d9cc-406f-87fe-654d51ccd8cf.jpg?v=1601195737"][/ApImage][ApRawHtml form_id="form_1907052564" content_html="

    MEN_APAPOST_S COLLECTION

    _APENTER_

    BREAKOUT CLOTHING NEW ARRIVALS

    _APENTER_

    CHECK IT OUT

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_3564562243" container="container-large" class="row box-banner3 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3149648428" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApRawHtml form_id="form_2806838150" active="1" content_html="

    TRAVEL IN STYLE

    _APENTER_

    MEN_APAPOST_S FASHION TIPS AND MEN_APAPOST_S STYLE GUIDE

    _APENTER_

    CHECK IT OUT

    "][/ApRawHtml][ApImage form_id="form_4766268875040016" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-5_bf67ffa8-02b1-4691-a6d2-53ecc1ce1347.jpg?v=1601195738"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_1827073856" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_5098803033802482" class="row box-testimonial" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2715936369" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_39229504216727045" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-6_20d91249-de55-4bf2-9e92-980334d415f4.jpg?v=1601195738"][/ApImage][ApBlockCarousel form_id="form_6822779419293558" is_open="0" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="0" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="1" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" nbitemsperpage="12" interval="5000" total_slider="2|1" sub_tit_2_1="Male from Frances" sub_tit_2_2="Male from Frances" sub_tit_2_3="Male from Frances" sub_tit_2_4="Male from Frances" sub_tit_2_5="Male from Frances" sub_tit_2_6="Male from Frances" sub_tit_1_1="Female from United States" sub_tit_1_2="Female from United States" sub_tit_1_3="Female from United States" sub_tit_1_4="Female from United States" sub_tit_1_5="Female from United States" sub_tit_1_6="Female from United States" active="1" tit_2_5="Antonio Edovel" descript_2_5="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis" tit_1_5="Elizabeth Ruiz" descript_1_5="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis"][/ApBlockCarousel][/ApColumn][ApColumn form_id="form_3176791853" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlog form_id="form_3427086847619479" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="0" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="1" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="4" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_3412898339" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2634872723" container="container" class="row box-popular" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2579631164" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_6012936555437595" value_by_product_type="1" category_type="all" product_type="all" order_way="asc" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="2" itemsmobile="1" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="MOST POPULAR"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2202558459" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7890915003963796" class="row box-instagram3" bg_config="fullwidth" bg_type="normal" bg_color="#f4f4f4" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1911130024" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApInstagram form_id="form_20477430156990672" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="6" itemsdesktopsmall="5" itemstablet="4" itemsmobile="3" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 3_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET_, _APOBRACKET_1600, 6_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="Folow us " sub_title=""][/ApInstagram][/ApColumn][ApColumn form_id="form_3660609232" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_19367729553796762" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-7.jpg?v=1601195738"][/ApImage][ApModule form_id="form_3149832584" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    WOMEN_APENTER_

    COLLECTION

    "][/ApImage][/ApColumn][ApColumn form_id="form_3169745962" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApTabs form_id="form_2667829916" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_3676700826" id="tab_1796243916" css_class="" image="" override_folder="" title="أعلى" sub_title=""][ApProductCarousel form_id="form_2372230149292306" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_2226139246" id="tab_1974274666" css_class="" image="" override_folder="" title="شوسيس" sub_title=""][ApProductCarousel form_id="form_15988800023263092" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="3" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_1613587037" id="tab_2919431700" css_class="" image="" override_folder="" title="القبعات" sub_title=""][ApProductCarousel form_id="form_8912523791812414" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="4" carousel_type="owlcarousel" items="3" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][/ApRow][ApRow form_id="form_2854276344" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3212664731558418" class="row box-textbn" bg_config="fullwidth" bg_type="normal" bg_size="cover" bg_img="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h2-bn-8.jpg?v=1601195738" bg_position="center" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3679741958" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApHtml form_id="form_2472646922" accordion_type="full" content_html="

    Lorem ipsum dolor sit amet

    _APENTER_
    _APENTER_
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer interdum sem ac magna.
    _APENTER_
    _APENTER__APENTER_
    "][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_3013338415" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3586578078" container="container-large" class="row box-protabs" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2237506485" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApTabs form_id="form_3522052062" class="" tab_type="tabs-top" tab_mobile_type="default" active_tab="1" fade_effect="1" override_folder="" active="1" title="" sub_title=""][ApTab form_id="form_2838026421" id="tab_3099589534" css_class="" image="" override_folder="" title="أعلى" sub_title=""][ApProductCarousel form_id="form_3625281663744081" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_3463158376" id="tab_1972246185" css_class="" image="" override_folder="" title="شوسيس" sub_title=""][ApProductCarousel form_id="form_8661386432490894" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][ApTab form_id="form_2129594006" id="tab_2651365335" css_class="" image="" override_folder="" title="القبعات" sub_title=""][ApProductCarousel form_id="form_5608028454220301" value_by_product_type="1" category_type="all" product_type="all" order_way="random" order_by="id_product" nb_products="3" carousel_type="owlcarousel" items="4" itemsdesktop="4" itemsdesktopsmall="3" itemstablet="2" itemsmobile="1" itemscustom="_APOBRACKET__APOBRACKET_0, 1_APCBRACKET_, _APOBRACKET_481, 2_APCBRACKET_, _APOBRACKET_576, 2_APCBRACKET_, _APOBRACKET_768, 1_APCBRACKET_, _APOBRACKET_992, 2_APCBRACKET_, _APOBRACKET_1600, 3_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="1" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1510937024" active="1"][/ApProductCarousel][/ApTab][/ApTabs][/ApColumn][ApColumn form_id="form_2087054063" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_4314735725292611" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-2_f9524461-f84d-464c-8feb-9821b93d858b.jpg?v=1601195738" description="

    MEN

    _APENTER_

    COLLECTION

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_3229245305" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_3419700498" container="container" class="row box-probanner" bg_config="fullwidth" bg_type="normal" bg_color="#f4f4f4" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2447504650" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_5110033387735335" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-3.png?v=1601195738" description="

    BEST OF THE DAY

    _APENTER_

    VINTAGE STYLE
    DRESSES

    _APENTER_

    $399

    _APENTER_

    DISCOVER

    "][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_2884863309" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2414657269" container="container-large" class="row box-banner3" margin_bottom="40px" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2168982844" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApImage form_id="form_5277160986664397" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-4_4a29727d-d9cc-406f-87fe-654d51ccd8cf.jpg?v=1601195737"][/ApImage][ApRawHtml form_id="form_1907052564" content_html="

    MEN_APAPOST_S COLLECTION

    _APENTER_

    BREAKOUT CLOTHING NEW ARRIVALS

    _APENTER_

    CHECK IT OUT

    "][/ApRawHtml][/ApColumn][/ApRow][ApRow form_id="form_3564562243" container="container-large" class="row box-banner3 box-2" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_3149648428" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApRawHtml form_id="form_2806838150" active="1" content_html="

    TRAVEL IN STYLE

    _APENTER_

    MEN_APAPOST_S FASHION TIPS AND MEN_APAPOST_S STYLE GUIDE

    _APENTER_

    CHECK IT OUT

    "][/ApRawHtml][ApImage form_id="form_4766268875040016" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-5_bf67ffa8-02b1-4691-a6d2-53ecc1ce1347.jpg?v=1601195738"][/ApImage][/ApColumn][/ApRow][ApRow form_id="form_1827073856" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_5098803033802482" class="row box-testimonial" bg_config="none" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2715936369" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_39229504216727045" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-6_20d91249-de55-4bf2-9e92-980334d415f4.jpg?v=1601195738"][/ApImage][ApBlockCarousel form_id="form_6822779419293558" is_open="0" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="1" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="0" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="1" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" nbitemsperpage="12" interval="5000" total_slider="2|1" sub_tit_2_1="Male from Frances" sub_tit_2_2="Male from Frances" sub_tit_2_3="Male from Frances" sub_tit_2_4="Male from Frances" sub_tit_2_5="Male from Frances" sub_tit_2_6="Male from Frances" sub_tit_1_1="Female from United States" sub_tit_1_2="Female from United States" sub_tit_1_3="Female from United States" sub_tit_1_4="Female from United States" sub_tit_1_5="Female from United States" sub_tit_1_6="Female from United States" active="1" tit_2_6="Antonio Edovel" descript_2_6="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis" tit_1_6="Elizabeth Ruiz" descript_1_6="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis"][/ApBlockCarousel][/ApColumn][ApColumn form_id="form_3176791853" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlog form_id="form_3427086847619479" chk_cat="5577844800e55bda2c0540af22ba96ce,0abc8c406b64fa2f13f5a7cbecbfb67f,1dcae6f22c5962b687451c98c27946f0" bleoblogs_width="1200" bleoblogs_height="700" bleoblogs_show="0" show_title="1" show_desc="0" bleoblogs_sima="1" bleoblogs_saut="0" bleoblogs_scat="0" bleoblogs_scre="1" bleoblogs_scoun="1" bleoblogs_shits="0" order_way="desc" order_by="id_leoblog_blog" nb_blogs="4" carousel_type="owlcarousel" items="1" itemsdesktop="1" itemsdesktopsmall="1" itemstablet="1" itemsmobile="1" itempercolumn="2" autoplay="1" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="1" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="400" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" active="1" title=" From The BLOG"][/ApBlog][/ApColumn][/ApRow][ApRow form_id="form_3412898339" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_2634872723" container="container" class="row box-popular" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_2579631164" sm="12" xs="12" sp="12" md="12" lg="12" xl="12" specific_type="" controller_pages="" controller_id=""][ApProductCarousel form_id="form_6012936555437595" value_by_product_type="1" category_type="all" product_type="all" order_way="asc" order_by="id_product" nb_products="6" carousel_type="owlcarousel" items="3" itemsdesktop="3" itemsdesktopsmall="2" itemstablet="2" itemsmobile="1" itempercolumn="2" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoheight="0" mousedrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollperpage="0" paginationspeed="800" slidespeed="200" nbitemsperpage="12" interval="5000" slick_vertical="0" slick_autoplay="1" slick_pauseonhover="1" slick_loopinfinite="0" slick_arrows="1" slick_dot="0" slick_centermode="0" slick_centerpadding="60" slick_row="1" slick_slidestoshow="5" slick_slidestoscroll="1" slick_items_custom="_APOBRACKET__APOBRACKET_1200, 6_APCBRACKET_,_APOBRACKET_992, 5_APCBRACKET_,_APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_,_APOBRACKET_480, 2_APCBRACKET__APCBRACKET_" slick_custom_status="0" slick_custom="_APOCBRACKET__APENTER_ dots: true,_APENTER_ infinite: false,_APENTER_ speed: 300,_APENTER_ slidesToShow: 4,_APENTER_ slidesToScroll: 4,_APENTER_ responsive: _APOBRACKET__APENTER_ _APOCBRACKET__APENTER_ breakpoint: 1024,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 3,_APENTER_ slidesToScroll: 3,_APENTER_ infinite: true,_APENTER_ dots: true_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 600,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 2,_APENTER_ slidesToScroll: 2_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET_,_APENTER_ _APOCBRACKET__APENTER_ breakpoint: 480,_APENTER_ settings: _APOCBRACKET__APENTER_ slidesToShow: 1,_APENTER_ slidesToScroll: 1_APENTER_ _APCCBRACKET__APENTER_ _APCCBRACKET__APENTER_ _APCBRACKET__APENTER__APCCBRACKET_" profile="plist1512598029" active="1" title="MOST POPULAR"][/ApProductCarousel][/ApColumn][/ApRow][ApRow form_id="form_2202558459" class="row box-margin" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][/ApRow][ApRow form_id="form_7890915003963796" class="row box-instagram3" bg_config="fullwidth" bg_type="normal" bg_color="#f4f4f4" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_1911130024" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApInstagram form_id="form_20477430156990672" class="" accordion_type="full" access_token="IGQVJXSGRHdkkwdnFXRV9nZA05LWlZAhaGpvOXhMZAEVDVkJORmlvMl80aFBMeEZAKVkFFYklQVjE2c3ZAPWHdjS1Bjd09LZA3JRVy1iMzQ4bWZAFTVZAwOUF3ZA2k5NVQxbEo0d3pNdnQ0OGFUcUowVThYUnZAtLQZDZD" links="" limit="6" profile_link="" carousel_type="owlcarousel" items="6" itemsdesktop="6" itemsdesktopsmall="5" itemstablet="4" itemsmobile="3" itemscustom="_APOBRACKET__APOBRACKET_0, 2_APCBRACKET_, _APOBRACKET_481, 3_APCBRACKET_, _APOBRACKET_576, 3_APCBRACKET_, _APOBRACKET_768, 4_APCBRACKET_, _APOBRACKET_992, 3_APCBRACKET_, _APOBRACKET_1200, 4_APCBRACKET_, _APOBRACKET_1600, 6_APCBRACKET__APCBRACKET_" itempercolumn="1" autoplay="0" stoponhover="0" responsive="1" navigation="0" autoHeight="0" mouseDrag="1" touchdrag="1" lazyload="1" lazyfollow="0" lazyeffect="fade" pagination="0" paginationnumbers="0" scrollPerPage="0" paginationspeed="800" slidespeed="400" override_folder="" active="1" title="Folow us " sub_title=""][/ApInstagram][/ApColumn][ApColumn form_id="form_3660609232" xl="6" lg="6" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_19367729553796762" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/h3-bn-7.jpg?v=1601195738"][/ApImage][ApModule form_id="form_3149832584" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0
    + 100260 +
    +
    + + 27 + + 101270 + 102270 + 10327Copyright © Prestashoptemplate"][/ApHtml][/ApColumn][ApColumn form_id="form_2916274509" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_2354643498" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>Decor 2017 Copyright © Prestashoptemplate"][/ApHtml][/ApColumn][ApColumn form_id="form_2916274509" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_2354643498" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>Einzigartige 2017 Copyright © Prestashoptemplate"][/ApHtml][/ApColumn][ApColumn form_id="form_2916274509" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_2354643498" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>Einzigartige 2017 Copyright © Prestashoptemplate"][/ApHtml][/ApColumn][ApColumn form_id="form_2916274509" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_2354643498" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>Único de 2017 Copyright © Prestashoptemplate"][/ApHtml][/ApColumn][ApColumn form_id="form_2916274509" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_2354643498" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>Copyright © Prestashoptemplate

    "][/ApHtml][/ApColumn][ApColumn form_id="form_2916274509" xl="6" lg="6" md="6" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_2354643498" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0
    +
    +
    + + 4 + + 1240 + 1340 + 1440 + 1540 + 1640 + +
    + 10
    5
    28
    3
    4000 + + 5 + + 1750 + 1850 + 195GET IT OR REGRET IT, HUGE SAVINGS UP TO 90% OFF."][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_9107921531480348" container="container" class="row box-navlogo" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_42596914781451915" class="col-logo" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][/ApRow]]]>
    OBTENEZ-LE, OU REGRETTER, GROSSES ÉCONOMIES JUSQU_APAPOST_À 90 %."][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_9107921531480348" container="container" class="row box-navlogo" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_42596914781451915" class="col-logo" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][/ApRow]]]>
    GET IT ODER BEREUEN, ENORME EINSPARUNGEN BIS ZU 90 % RABATT."][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_9107921531480348" container="container" class="row box-navlogo" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_42596914781451915" class="col-logo" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][/ApRow]]]>
    GET IT O VE NE PENTIRETE, ENORMI RISPARMI FINO AL 90% DI SCONTO."][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_9107921531480348" container="container" class="row box-navlogo" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_42596914781451915" class="col-logo" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][/ApRow]]]>
    CONSEGUIRLO O TE ARREPENTIRÁS, GRANDES AHORROS HASTA 90% DE DESCUENTO."][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_9107921531480348" container="container" class="row box-navlogo" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_42596914781451915" class="col-logo" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][/ApRow]]]>
    الحصول عليه أو نأسف لذلك، تحقيق وفورات ضخمة تصل إلى 90 ٪."][/ApHtml][/ApColumn][/ApRow][ApRow form_id="form_9107921531480348" container="container" class="row box-navlogo" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_42596914781451915" class="col-logo" xl="12" lg="12" md="12" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApGenCode form_id="form_38346618593087065" id_gencode="id_gencode_5a3a246a9eafc_1513759850" content_html="
    _APENTER_ _APENTER_ _APQUOT_{$shop.name}_APQUOT__APENTER_ _APENTER_
    "][/ApGenCode][/ApColumn][/ApRow]]]>
    0
    + 205_APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_ " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_ " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_ " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_ " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_ " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>_APENTER_ _APENTER_ _APENTER_ _APENTER_ _APENTER_ " active="1"][/ApGenCode][ApModule form_id="form_8021124194137209" name_module="blockgrouptop" hook="displayTop" is_display="1"][/ApModule][ApModule form_id="form_4789580813418654" name_module="ps_shoppingcart" hook="displayTop" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>0 + 2150 +
    +
    + + 28 + + 104280 + 10528can upload file theme.zip via Ftp in root/themes/theme.zip and install it in admin

    "][/ApImage][ApImage form_id="form_7214251037594681" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="2 . after install theme done need Click regenerate image again " image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_3-regenerate-image.png?v=1601870145" description="

    and need Clear Cache in your browser or test in private browser for see update.

    "][/ApImage][ApImage form_id="form_9279481851065695" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="3 . need turn off all Cache here for see update." image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_2-turn-off-cache.png?v=1601870039" description="

    can turn on Cache later when site go live

    "][/ApImage][ApImage form_id="form_6887226418696148" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="4 . config of homepage you can see here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_4-config-home.png?v=1601870387"][/ApImage][ApImage form_id="form_7899919344999531" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="5 . choose Header if want" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_5-choose-header.png?v=1601870509" description="

    my theme using pagebulder for build page , it easy more for build content , can choose avaiable Header , Footer or can make new if want.

    "][/ApImage][ApImage form_id="form_5564495648083707" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="6 . in admin can make custom here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_6-custom-css.png?v=1601870666" description="

    *CSS will only for this profile , not for other profile.

    "][/ApImage][ApImage form_id="form_5481157922852493" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="6 . " image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_6-custom-css2.png?v=1601870672" description="

    and don_APAPOST_t make CSS wrong , else site maybe broken

    "][/ApImage][ApImage form_id="form_13151806917670932" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="7 . in Ftp can make CSS in file css" description="

    root/themes/at_movic/assets/css/custom.css

    "][/ApImage][ApImage form_id="form_1287408278039954" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="8 . can refer guide for module here" description="

    https://www.leotheme.com/guides/prestashop17/ap_page_builder/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_megamenu/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_feature/

    _APENTER_

    https://www.leotheme.com/guides/prestashop16/leo-blog/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_quicklogin_module/

    _APENTER_

    if don_APAPOST_t clear something , you can contact to me , I will check with you.

    "][/ApImage][ApImage form_id="form_8390277921322531" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="9 . translation" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_7-translation.png?v=1601871278" description="

    normal 90% Text you can see translation in

    _APENTER_

    Translation =_APAMP_gt; Themes =_APAMP_gt; at_movic

    _APENTER_

    Translation =_APAMP_gt; Themes =_APAMP_gt; classic

    _APENTER_

    _APENTER_

    some Text in Translation =_APAMP_gt; Modules

    _APENTER_

    _APENTER_

    can contact to me if you can find translation , I will check for you.

    "][/ApImage][ApImage form_id="form_7762264121574409" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="10 . can turn off paneltool button here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_8-turn-off-paneltool.png?v=1601871510"][/ApImage][ApHtml form_id="form_19996991486319208" accordion_type="full" content_html="

    if have bug or don_APAPOST_t clear something =_APAMP_gt; you can contact to me =_APAMP_gt; please sent me screenshot _APPLUS_ Ftp _APPLUS_ backOffice for me can check it , thank you !!

    "][/ApHtml][ApHtml form_id="form_7349088433167442" accordion_type="full" content_html="

    *theme version 4.0.5 update home 7 , 8 , 9

    "][/ApHtml][/ApColumn][/ApRow]]]>
    can upload file theme.zip via Ftp in root/themes/theme.zip and install it in admin

    "][/ApImage][ApImage form_id="form_7214251037594681" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="2 . after install theme done need Click regenerate image again " image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_3-regenerate-image.png?v=1601870145" description="

    and need Clear Cache in your browser or test in private browser for see update.

    "][/ApImage][ApImage form_id="form_9279481851065695" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="3 . need turn off all Cache here for see update." image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_2-turn-off-cache.png?v=1601870039" description="

    can turn on Cache later when site go live

    "][/ApImage][ApImage form_id="form_6887226418696148" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="4 . config of homepage you can see here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_4-config-home.png?v=1601870387"][/ApImage][ApImage form_id="form_7899919344999531" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="5 . choose Header if want" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_5-choose-header.png?v=1601870509" description="

    my theme using pagebulder for build page , it easy more for build content , can choose avaiable Header , Footer or can make new if want.

    "][/ApImage][ApImage form_id="form_5564495648083707" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="6 . in admin can make custom here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_6-custom-css.png?v=1601870666" description="

    *CSS will only for this profile , not for other profile.

    "][/ApImage][ApImage form_id="form_5481157922852493" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="6 . " image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_6-custom-css2.png?v=1601870672" description="

    and don_APAPOST_t make CSS wrong , else site maybe broken

    "][/ApImage][ApImage form_id="form_13151806917670932" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="7 . in Ftp can make CSS in file css" description="

    root/themes/at_movic/assets/css/custom.css

    "][/ApImage][ApImage form_id="form_1287408278039954" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="8 . can refer guide for module here" description="

    https://www.leotheme.com/guides/prestashop17/ap_page_builder/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_megamenu/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_feature/

    _APENTER_

    https://www.leotheme.com/guides/prestashop16/leo-blog/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_quicklogin_module/

    _APENTER_

    if don_APAPOST_t clear something , you can contact to me , I will check with you.

    "][/ApImage][ApImage form_id="form_8390277921322531" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="9 . translation" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_7-translation.png?v=1601871278" description="

    normal 90% Text you can see translation in

    _APENTER_

    Translation =_APAMP_gt; Themes =_APAMP_gt; at_movic

    _APENTER_

    Translation =_APAMP_gt; Themes =_APAMP_gt; classic

    _APENTER_

    _APENTER_

    some Text in Translation =_APAMP_gt; Modules

    _APENTER_

    _APENTER_

    can contact to me if you can_APAPOST_t find translation , I will check for you.

    "][/ApImage][ApImage form_id="form_7762264121574409" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="10 . can turn off paneltool button here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_8-turn-off-paneltool.png?v=1601871510"][/ApImage][ApHtml form_id="form_19996991486319208" accordion_type="full" content_html="
    _APENTER_
    "][/ApHtml][ApHtml form_id="form_7349088433167442" accordion_type="full" content_html="
    _APENTER_
    "][/ApHtml][/ApColumn][/ApRow]]]>
    can upload file theme.zip via Ftp in root/themes/theme.zip and install it in admin

    "][/ApImage][ApImage form_id="form_7214251037594681" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="2 . after install theme done need Click regenerate image again " image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_3-regenerate-image.png?v=1601870145" description="

    and need Clear Cache in your browser or test in private browser for see update.

    "][/ApImage][ApImage form_id="form_9279481851065695" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="3 . need turn off all Cache here for see update." image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_2-turn-off-cache.png?v=1601870039" description="

    can turn on Cache later when site go live

    "][/ApImage][ApImage form_id="form_6887226418696148" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="4 . config of homepage you can see here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_4-config-home.png?v=1601870387"][/ApImage][ApImage form_id="form_7899919344999531" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="5 . choose Header if want" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_5-choose-header.png?v=1601870509" description="

    my theme using pagebulder for build page , it easy more for build content , can choose avaiable Header , Footer or can make new if want.

    "][/ApImage][ApImage form_id="form_5564495648083707" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="6 . in admin can make custom here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_6-custom-css.png?v=1601870666" description="

    *CSS will only for this profile , not for other profile.

    "][/ApImage][ApImage form_id="form_5481157922852493" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="6 . " image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_6-custom-css2.png?v=1601870672" description="

    and don_APAPOST_t make CSS wrong , else site maybe broken

    "][/ApImage][ApImage form_id="form_13151806917670932" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="7 . in Ftp can make CSS in file css" description="

    root/themes/at_movic/assets/css/custom.css

    "][/ApImage][ApImage form_id="form_1287408278039954" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="8 . can refer guide for module here" description="

    https://www.leotheme.com/guides/prestashop17/ap_page_builder/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_megamenu/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_feature/

    _APENTER_

    https://www.leotheme.com/guides/prestashop16/leo-blog/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_quicklogin_module/

    _APENTER_

    if don_APAPOST_t clear something , you can contact to me , I will check with you.

    "][/ApImage][ApImage form_id="form_8390277921322531" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="9 . translation" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_7-translation.png?v=1601871278" description="

    normal 90% Text you can see translation in

    _APENTER_

    Translation =_APAMP_gt; Themes =_APAMP_gt; at_movic

    _APENTER_

    Translation =_APAMP_gt; Themes =_APAMP_gt; classic

    _APENTER_

    _APENTER_

    some Text in Translation =_APAMP_gt; Modules

    _APENTER_

    _APENTER_

    can contact to me if you can find translation , I will check for you.

    "][/ApImage][ApImage form_id="form_7762264121574409" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="10 . can turn off paneltool button here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_8-turn-off-paneltool.png?v=1601871510"][/ApImage][ApHtml form_id="form_19996991486319208" accordion_type="full" content_html="
    _APENTER_
    "][/ApHtml][ApHtml form_id="form_7349088433167442" accordion_type="full" content_html="
    _APENTER_
    "][/ApHtml][/ApColumn][/ApRow]]]>
    can upload file theme.zip via Ftp in root/themes/theme.zip and install it in admin

    "][/ApImage][ApImage form_id="form_7214251037594681" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="2 . after install theme done need Click regenerate image again " image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_3-regenerate-image.png?v=1601870145" description="

    and need Clear Cache in your browser or test in private browser for see update.

    "][/ApImage][ApImage form_id="form_9279481851065695" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="3 . need turn off all Cache here for see update." image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_2-turn-off-cache.png?v=1601870039" description="

    can turn on Cache later when site go live

    "][/ApImage][ApImage form_id="form_6887226418696148" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="4 . config of homepage you can see here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_4-config-home.png?v=1601870387"][/ApImage][ApImage form_id="form_7899919344999531" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="5 . choose Header if want" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_5-choose-header.png?v=1601870509" description="

    my theme using pagebulder for build page , it easy more for build content , can choose avaiable Header , Footer or can make new if want.

    "][/ApImage][ApImage form_id="form_5564495648083707" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="6 . in admin can make custom here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_6-custom-css.png?v=1601870666" description="

    *CSS will only for this profile , not for other profile.

    "][/ApImage][ApImage form_id="form_5481157922852493" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="6 . " image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_6-custom-css2.png?v=1601870672" description="

    and don_APAPOST_t make CSS wrong , else site maybe broken

    "][/ApImage][ApImage form_id="form_13151806917670932" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="7 . in Ftp can make CSS in file css" description="

    root/themes/at_movic/assets/css/custom.css

    "][/ApImage][ApImage form_id="form_1287408278039954" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="8 . can refer guide for module here" description="

    https://www.leotheme.com/guides/prestashop17/ap_page_builder/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_megamenu/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_feature/

    _APENTER_

    https://www.leotheme.com/guides/prestashop16/leo-blog/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_quicklogin_module/

    _APENTER_

    if don_APAPOST_t clear something , you can contact to me , I will check with you.

    "][/ApImage][ApImage form_id="form_8390277921322531" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="9 . translation" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_7-translation.png?v=1601871278" description="

    normal 90% Text you can see translation in

    _APENTER_

    Translation =_APAMP_gt; Themes =_APAMP_gt; at_movic

    _APENTER_

    Translation =_APAMP_gt; Themes =_APAMP_gt; classic

    _APENTER_

    _APENTER_

    some Text in Translation =_APAMP_gt; Modules

    _APENTER_

    _APENTER_

    can contact to me if you can find translation , I will check for you.

    "][/ApImage][ApImage form_id="form_7762264121574409" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="10 . can turn off paneltool button here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_8-turn-off-paneltool.png?v=1601871510"][/ApImage][ApHtml form_id="form_19996991486319208" accordion_type="full" content_html="
    _APENTER_
    "][/ApHtml][ApHtml form_id="form_7349088433167442" accordion_type="full" content_html="
    _APENTER_
    "][/ApHtml][/ApColumn][/ApRow]]]>
    can upload file theme.zip via Ftp in root/themes/theme.zip and install it in admin

    "][/ApImage][ApImage form_id="form_7214251037594681" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="2 . after install theme done need Click regenerate image again " image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_3-regenerate-image.png?v=1601870145" description="

    and need Clear Cache in your browser or test in private browser for see update.

    "][/ApImage][ApImage form_id="form_9279481851065695" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="3 . need turn off all Cache here for see update." image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_2-turn-off-cache.png?v=1601870039" description="

    can turn on Cache later when site go live

    "][/ApImage][ApImage form_id="form_6887226418696148" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="4 . config of homepage you can see here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_4-config-home.png?v=1601870387"][/ApImage][ApImage form_id="form_7899919344999531" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="5 . choose Header if want" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_5-choose-header.png?v=1601870509" description="

    my theme using pagebulder for build page , it easy more for build content , can choose avaiable Header , Footer or can make new if want.

    "][/ApImage][ApImage form_id="form_5564495648083707" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="6 . in admin can make custom here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_6-custom-css.png?v=1601870666" description="

    *CSS will only for this profile , not for other profile.

    "][/ApImage][ApImage form_id="form_5481157922852493" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="6 . " image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_6-custom-css2.png?v=1601870672" description="

    and don_APAPOST_t make CSS wrong , else site maybe broken

    "][/ApImage][ApImage form_id="form_13151806917670932" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="7 . in Ftp can make CSS in file css" description="

    root/themes/at_movic/assets/css/custom.css

    "][/ApImage][ApImage form_id="form_1287408278039954" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="8 . can refer guide for module here" description="

    https://www.leotheme.com/guides/prestashop17/ap_page_builder/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_megamenu/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_feature/

    _APENTER_

    https://www.leotheme.com/guides/prestashop16/leo-blog/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_quicklogin_module/

    _APENTER_

    if don_APAPOST_t clear something , you can contact to me , I will check with you.

    "][/ApImage][ApImage form_id="form_8390277921322531" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="9 . translation" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_7-translation.png?v=1601871278" description="

    normal 90% Text you can see translation in

    _APENTER_

    Translation =_APAMP_gt; Themes =_APAMP_gt; at_movic

    _APENTER_

    Translation =_APAMP_gt; Themes =_APAMP_gt; classic

    _APENTER_

    _APENTER_

    some Text in Translation =_APAMP_gt; Modules

    _APENTER_

    _APENTER_

    can contact to me if you can find translation , I will check for you.

    "][/ApImage][ApImage form_id="form_7762264121574409" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="10 . can turn off paneltool button here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_8-turn-off-paneltool.png?v=1601871510"][/ApImage][ApHtml form_id="form_19996991486319208" accordion_type="full" content_html="
    _APENTER_
    "][/ApHtml][ApHtml form_id="form_7349088433167442" accordion_type="full" content_html="
    _APENTER_
    "][/ApHtml][/ApColumn][/ApRow]]]>
    can upload file theme.zip via Ftp in root/themes/theme.zip and install it in admin

    "][/ApImage][ApImage form_id="form_7214251037594681" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="2 . after install theme done need Click regenerate image again " image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_3-regenerate-image.png?v=1601870145" description="

    and need Clear Cache in your browser or test in private browser for see update.

    "][/ApImage][ApImage form_id="form_9279481851065695" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="3 . need turn off all Cache here for see update." image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_2-turn-off-cache.png?v=1601870039" description="

    can turn on Cache later when site go live

    "][/ApImage][ApImage form_id="form_6887226418696148" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="4 . config of homepage you can see here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_4-config-home.png?v=1601870387"][/ApImage][ApImage form_id="form_7899919344999531" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="5 . choose Header if want" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_5-choose-header.png?v=1601870509" description="

    my theme using pagebulder for build page , it easy more for build content , can choose avaiable Header , Footer or can make new if want.

    "][/ApImage][ApImage form_id="form_5564495648083707" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="6 . in admin can make custom here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_6-custom-css.png?v=1601870666" description="

    *CSS will only for this profile , not for other profile.

    "][/ApImage][ApImage form_id="form_5481157922852493" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="6 . " image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_6-custom-css2.png?v=1601870672" description="

    and don_APAPOST_t make CSS wrong , else site maybe broken

    "][/ApImage][ApImage form_id="form_13151806917670932" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="7 . in Ftp can make CSS in file css" description="

    root/themes/at_movic/assets/css/custom.css

    "][/ApImage][ApImage form_id="form_1287408278039954" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="8 . can refer guide for module here" description="

    https://www.leotheme.com/guides/prestashop17/ap_page_builder/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_megamenu/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_feature/

    _APENTER_

    https://www.leotheme.com/guides/prestashop16/leo-blog/

    _APENTER_

    https://www.leotheme.com/guides/prestashop17/leo_quicklogin_module/

    _APENTER_

    if don_APAPOST_t clear something , you can contact to me , I will check with you.

    "][/ApImage][ApImage form_id="form_8390277921322531" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" active="1" title="9 . translation" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_7-translation.png?v=1601871278" description="

    normal 90% Text you can see translation in

    _APENTER_

    Translation =_APAMP_gt; Themes =_APAMP_gt; at_movic

    _APENTER_

    Translation =_APAMP_gt; Themes =_APAMP_gt; classic

    _APENTER_

    _APENTER_

    some Text in Translation =_APAMP_gt; Modules

    _APENTER_

    _APENTER_

    can contact to me if you can find translation , I will check for you.

    "][/ApImage][ApImage form_id="form_7762264121574409" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" title="10 . can turn off paneltool button here" image_link="https://cdn.shopify.com/s/files/1/0465/2407/2095/files/Screenshot_8-turn-off-paneltool.png?v=1601871510"][/ApImage][ApHtml form_id="form_19996991486319208" accordion_type="full" content_html="
    _APENTER_
    "][/ApHtml][ApHtml form_id="form_7349088433167442" accordion_type="full" content_html="
    _APENTER_
    "][/ApHtml][/ApColumn][/ApRow]]]>
    0
    + 106280 +
    +
    + + 3 + + 930 + 103ABOUT_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    OPENNING TIME

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="COMPANY"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="PROFILE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="CUSTOMER SERVICE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    SUR_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    TEMPS D’OUVERTURE

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="COMPAGNIE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="tous produits"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="SERVICE CLIENTÈLE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    ÜBER_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    OPENNING TIME

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="UNTERNEHMEN"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="Alle Produkte"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="KUNDEN SERVICE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    CIRCA_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    TEMPO DI APERTURA

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="AZIENDA"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="prodotti"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="SERVIZIO CLIENTI"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    ACERCA DE_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    TIEMPO DE APERTURA

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="EMPRESA"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="todos"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="SERVICIO CLIENTE"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    حول_APENTER_

    Nam nec tellus a odio tincidunt auctor a ornare odio Nam nec tellus a odio tincidunt auctor a ornare odio tincidunt auctor a ornare odio

    _APENTER_

    وقت الافتتاح

    _APENTER_

    Monday - Friday .... 8.00 to 18.00

    _APENTER_

    Saturday ............ 9.00 to 21.00

    _APENTER_

    Sunday ............ 10.00 to 21.00

    "][/ApHtml][/ApColumn][ApColumn form_id="form_5305205456033093" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_18416519486686175" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-cms" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-cms" cmspage_id_2="2" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-cms" cmspage_id_3="4" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-page" cmspage_id_4="4" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="sitemap" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="الشركة"][/ApBlockLink][/ApColumn][ApColumn form_id="form_2511532220844701" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_1513584441" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" target_type_1="_self" link_type_1="link-category" cmspage_id_1="1" category_id_1="3" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-category" cmspage_id_2="1" category_id_2="4" manufacture_id_2="1" supplier_id_2="1" page_id_2="address" target_type_3="_self" link_type_3="link-category" cmspage_id_3="1" category_id_3="8" manufacture_id_3="1" supplier_id_3="1" page_id_3="address" target_type_4="_self" link_type_4="link-category" cmspage_id_4="1" category_id_4="11" manufacture_id_4="1" supplier_id_4="1" page_id_4="address" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="جميع المنتجات"][/ApBlockLink][/ApColumn][ApColumn form_id="form_33562674038745525" xl="2" lg="2" md="4" sm="12" xs="12" sp="12" animation="none" animation_delay="2" specific_type="all" active="1" controller_pages="" controller_id=""][ApBlockLink form_id="form_41669164279385645" total_link="4" list_id_link="1,2,3,4," list_field="target_type_1,link_type_1,cmspage_id_1,category_id_1,product_id_1,manufacture_id_1,page_id_1,page_param_1,supplier_id_1,target_type_2,link_type_2,cmspage_id_2,category_id_2,product_id_2,manufacture_id_2,page_id_2,page_param_2,supplier_id_2,target_type_3,link_type_3,cmspage_id_3,category_id_3,product_id_3,manufacture_id_3,page_id_3,page_param_3,supplier_id_3,target_type_4,link_type_4,cmspage_id_4,category_id_4,product_id_4,manufacture_id_4,page_id_4,page_param_4,supplier_id_4," list_field_lang="link_title_1,link_url_1,link_title_2,link_url_2,link_title_3,link_url_3,link_title_4,link_url_4," accordion_type="accordion_small_screen" link_title_1_1="Phone: _APPLUS_123.456.789" link_title_1_2="Téléphone: _APPLUS_123.456.789" link_title_1_3="Telefon: _APPLUS_123.456.789" link_title_1_4="Telefono: _APPLUS_123.456.789" link_title_1_5="Teléfono: _APPLUS_123.456.789" link_title_1_6="الهاتف: _APPLUS_123.456.789" target_type_1="_self" link_type_1="link-url" link_url_1_1="#" link_url_1_2="#" link_url_1_3="#" link_url_1_4="#" link_url_1_5="#" link_url_1_6="#" cmspage_id_1="1" category_id_1="2" manufacture_id_1="1" supplier_id_1="1" page_id_1="address" target_type_2="_self" link_type_2="link-page" cmspage_id_2="1" category_id_2="2" manufacture_id_2="1" supplier_id_2="1" page_id_2="contact" target_type_3="_self" link_type_3="link-page" cmspage_id_3="1" category_id_3="2" manufacture_id_3="1" supplier_id_3="1" page_id_3="my-account" target_type_4="_self" link_type_4="link-page" cmspage_id_4="1" category_id_4="2" manufacture_id_4="1" supplier_id_4="1" page_id_4="stores" target_type="_self" link_type="link-url" cmspage_id="1" category_id="2" manufacture_id="1" supplier_id="1" page_id="address" active="1" title="خدمة العملاء"][/ApBlockLink][/ApColumn][ApColumn form_id="form_43883813765226965" class="ap-popup2" xl="3" lg="3" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApModule form_id="form_1513613288" name_module="ps_emailsubscription" hook="displayFooter" is_display="1"][/ApModule][ApModule form_id="form_1513586286" name_module="ps_socialfollow" hook="displayFooterAfter" is_display="1"][/ApModule][/ApColumn][/ApRow]]]>
    0
    + 113Copyright © 2020 by Prestashop Themes Template. All Rights Reserved"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 Copyright © Prestashoptemplate"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 Copyright © Prestashoptemplate"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 Copyright © Prestashoptemplate"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 Copyright © Prestashoptemplate"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>2020 حقوق الطبع والنشر © شوبيفيتيمبلاتي"][/ApHtml][ApImage form_id="form_9183909200028856" animation="none" animation_delay="0.5" is_open="0" width="auto" height="auto" image="payment.png"][/ApImage][/ApColumn][/ApRow]]]>0 +
    +
    + + 4 + + 1240 + 1340 + 1440 + 1540 + 1640 + +
    + + + 10000"},"1":{"name":"product_name"},"2":{"name":"wishlist"},"3":{"name":"code","code":""},"4":{"name":"code","code":"
    "},"5":{"name":"add_to_cart"},"6":{"name":"product_price_and_shipping"},"7":{"name":"code","code":"
    "},"8":{"name":"product_description_short"}}}]]>
    + 20000"},"1":{"name":"product_variants"},"2":{"name":"code","code":""},"3":{"name":"product_name"},"4":{"name":"product_price_and_shipping"},"5":{"name":"product_description_short"},"6":{"name":"code","code":"
    "},"7":{"name":"add_to_cart"},"8":{"name":"wishlist"},"9":{"name":"compare"},"10":{"name":"code","code":"
    "}}}]]>
    + 30111"},"3":{"name":"quickview"},"4":{"name":"add_to_cart"},"5":{"name":"wishlist"},"6":{"name":"compare"},"7":{"name":"code","code":""}},"gridRight":{"0":{"name":"product_name"},"1":{"name":"product_price_and_shipping"},"2":{"name":"add_to_cart_attribute"},"3":{"name":"product_description_short"}}}]]> + 40000 + 50000"},"3":{"name":"reviews"},"4":{"name":"add_to_cart"},"5":{"name":"quickview"},"6":{"name":"code","code":""},"7":{"name":"product_description_short"}}}]]> + 60000 + 70000 +
    + + 10011"},"5":{"name":"product_actions_form","form":""},"6":{"name":"hook_display_leo_product_review_extra","form":""},"7":{"name":"hook_display_product_additional_info","form":""},"8":{"name":"code","form":"","code":"
    _APENTER_{block name=_APAPOST_product_reference_APAPOST_}_APENTER_ {if isset($product.reference_to_display)}_APENTER_
    _APENTER_ _APENTER_ {$product.reference_to_display}_APENTER_
    _APENTER_ {/if}_APENTER_ {/block}_APENTER_ {block name=_APAPOST_product_quantities_APAPOST_}_APENTER_ {if $product.show_quantities}_APENTER_
    _APENTER_ _APENTER_ {$product.quantity} {$product.quantity_label}_APENTER_
    _APENTER_ {/if}_APENTER_ {/block}_APENTER_
    "},"9":{"name":"hook_display_reassurance","form":""}}},"2":{"form":{"form_id":"form_4666379129988496","md":12,"lg":12,"xl":12},"element":"column","sub":{"0":{"name":"product_more_info_tab","form":""},"1":{"name":"product_accessories","form":""},"2":{"name":"hook_display_footer_product","form":""}}}}}},"class":"product-image-thumbs product-thumbs-bottom"}]]>
    + 20000"},"2":{"name":"product_price","form":""},"3":{"name":"product_description_short","form":""},"4":{"name":"product_customization","form":""},"5":{"name":"product_actions_form","form":""},"6":{"name":"hook_display_leo_product_review_extra","form":""},"7":{"name":"hook_display_product_additional_info","form":""},"8":{"name":"code","form":"","code":"
    _APENTER_{block name=_APAPOST_product_reference_APAPOST_}_APENTER_ {if isset($product.reference_to_display)}_APENTER_
    _APENTER_ _APENTER_ {$product.reference_to_display}_APENTER_
    _APENTER_ {/if}_APENTER_ {/block}_APENTER_ {block name=_APAPOST_product_quantities_APAPOST_}_APENTER_ {if $product.show_quantities}_APENTER_
    _APENTER_ _APENTER_ {$product.quantity} {$product.quantity_label}_APENTER_
    _APENTER_ {/if}_APENTER_ {/block}_APENTER_
    "}}},"2":{"form":{"md":12,"lg":12,"xl":12},"element":"column","sub":{"0":{"name":"product_more_info_tab","form":""},"1":{"name":"product_accessories","form":""},"2":{"name":"hook_display_footer_product","form":""}}}}}},"class":"product-image-thumbs product-thumbs-left"}]]>
    + 30000"},"4":{"name":"product_customization","form":""},"5":{"name":"product_actions_form","form":""},"6":{"name":"hook_display_leo_product_review_extra","form":""},"7":{"name":"hook_display_product_additional_info","form":""},"8":{"name":"hook_display_reassurance","form":""}}},"2":{"form":{"md":12,"lg":12,"xl":12},"element":"column","sub":{"0":{"name":"product_more_info_accordions","form":""},"1":{"name":"product_accessories","form":""},"2":{"name":"hook_display_footer_product","form":""}}}}}},"class":"product-image-thumbs product-thumbs-right"}]]> + 40000"},"2":{"name":"product_price","form":""},"3":{"name":"product_description_short","form":""},"4":{"name":"product_customization","form":""},"5":{"name":"product_actions_form","form":""},"6":{"name":"hook_display_leo_product_review_extra","form":""},"7":{"name":"hook_display_product_additional_info","form":""},"8":{"name":"hook_display_reassurance","form":""}}},"2":{"form":{"md":12,"lg":12,"xl":12},"element":"column","sub":{"0":{"name":"product_more_info_tab","form":""},"1":{"name":"product_accessories","form":""},"2":{"name":"hook_display_footer_product","form":""}}}}}},"class":"product-image-thumbs no-thumbs"}]]> + 50000"},"3":{"name":"product_description_short","form":""},"4":{"name":"hook_display_leo_product_review_extra","form":""},"5":{"name":"hook_display_product_additional_info","form":""},"6":{"name":"hook_display_reassurance","form":""}}},"1":{"form":{"class":"","xl":"5","lg":"5","md":"12","sm":"12","xs":"12","sp":"12"},"element":"column","sub":{"0":{"name":"product_image_with_thumb","form":{"templateview":"none","numberimage":"5","numberimage1200":"5","numberimage992":"4","numberimage768":"3","numberimage576":"3","numberimage480":"2","numberimage360":"2","templatemodal":"1","templatezoomtype":"in","zoomposition":"right","zoomwindowwidth":"400","zoomwindowheight":"400"}}}},"2":{"form":{"class":"","xl":"3","lg":"3","md":"12","sm":"12","xs":"12","sp":"12"},"element":"column","sub":{"0":{"name":"product_customization","form":""},"1":{"name":"product_actions_form","form":""}}},"3":{"form":{"class":"","xl":"12","lg":"12","md":"12","sm":"12","xs":"12","sp":"12"},"element":"column","sub":{"0":{"name":"product_more_info_tab","form":""},"1":{"name":"product_accessories","form":""},"2":{"name":"hook_display_footer_product","form":""}}}}}},"class":"product-image-thumbs no-thumbs"}]]> + 60000"},"2":{"name":"product_price","form":""},"3":{"name":"product_description_short","form":""},"4":{"name":"product_customization","form":""},"5":{"name":"product_actions_form","form":""},"6":{"name":"hook_display_leo_product_review_extra","form":""},"7":{"name":"hook_display_product_additional_info","form":""},"8":{"name":"hook_display_reassurance","form":""},"9":{"name":"product_more_info_tab","form":""}}},"2":{"form":{"class":"","xl":"12","lg":"12","md":"12","sm":"12","xs":"12","sp":"12"},"element":"column","sub":{"0":{"name":"product_accessories","form":""},"1":{"name":"hook_display_footer_product","form":""}}}}}},"class":"product-image-thumbs no-thumbs"}]]> + 70000"},"3":{"name":"product_description_short","form":""},"4":{"name":"product_customization","form":""},"5":{"name":"product_actions_form","form":""},"6":{"name":"hook_display_leo_product_review_extra","form":""},"7":{"name":"hook_display_product_additional_info","form":""},"8":{"name":"hook_display_reassurance","form":""}}},"2":{"form":{"md":12,"lg":12,"xl":12},"element":"column","sub":{"0":{"name":"product_more_info_tab","form":""},"1":{"name":"product_accessories","form":""},"2":{"name":"hook_display_footer_product","form":""}}}}}},"class":"product-image-gallery"}]]> + 80000 +
    + + 11 + + 280In the event you wish to cancel your order, please contact us.

    _APENTER_

    Upon receiving your cancellation request, we will reach out to our courier service and request that the package be rerouted back to our warehouse. Once we receive the returned package, we will process the order, issue a full refund to your account, and notify you via email.

    _APENTER_

    Kindly note that at this time we are unable to cancel orders before they are shipped.

    "][/ApHtml][ApHtml form_id="form_39189706612991935" accordion_type="accordion" active="1" title="Can I change my order?" content_html="

    Once an order is submitted, we are unable to change the ordered products or the quantity selected.

    _APENTER_

    In this situation, we suggest you contact us and cancel the incorrect order.

    _APENTER_

    Thereafter, we recommend you place a new order for your desired item(s) on our website at your own convenience.

    "][/ApHtml][ApHtml form_id="form_27310439184804055" class="" accordion_type="accordion" override_folder="" active="1" title="Can I change my delivery address?" sub_title="" content_html="

    If you wish to change your delivery address, please contact us and we will do our best to assist you in this matter.

    _APENTER_

    In the event that we are unable to process the address change directly in our system, usually because the package has already been shipped, we will need to contact our courier to request a change of delivery address.

    _APENTER_

    In order to help you further, we would really appreciate if you could provide us with the following information :

    _APENTER_

    - First and Last name,

    _APENTER_

    - Company name (if needed),

    _APENTER_

    - Street name and number,

    _APENTER_

    - Zip code and City,

    _APENTER_

    - Country,

    _APENTER_

    - Phone number and Email Address.

    _APENTER_

    _APENTER_

    Please be aware that an address change will delay the delivery time. We cannot be held responsible for any delay in delivery due to an address change requested by a customer.

    "][/ApHtml][ApHtml form_id="form_7056014438372757" accordion_type="accordion" active="1" title="When will I receive my order?" content_html="

    We aim to ensure that you receive your order as quickly as possible.

    _APENTER_

    Once your order is successfully submitted, the warehouse then processes your order the following business day. It is then picked, packed, and dispatched. Once it is on its way to you, you will receive an email notification containing your tracking information, along with an estimated delivery date.

    _APENTER_

    Kindly note that orders placed after 11:00 am (EST) are not guaranteed to be shipped the same day. Packages are not transported nor delivered on weekends and local public holidays.

    _APENTER_

    While we always strive to have our orders delivered on time, we acknowledge that the unforeseeable is inevitable. External factors outside and its courier’s control, such as extreme weather conditions and technical failures, are bound to occasionally cause delays, and we ask for your patience and understanding when they do.

    _APENTER_

    Additionally, please note that during promotional campaigns, delivery times may be longer than usual.

    _APENTER_

    Feel free to reach out to us if you have any questions about your order_APAPOST_s status. We_APAPOST_re happy to help!

    "][/ApHtml][ApHtml form_id="form_19660625936395425" accordion_type="accordion" active="1" title="How do I place an order?" content_html="

    To place your order, select the item(s) that you wish to purchase and add it to your shopping cart. Then, proceed to the checkout page where you must fill in your personal information and pay for the order. Make sure to double check that you have filled in your details correctly to ensure that you receive all the necessary info and that your order is delivered without any complications.

    _APENTER_

    If you need any help, we strongly advise you to speak to one of our Customer Service advisors , they will be happy to assist you.

    "][/ApHtml][ApHtml form_id="form_8004733695032317" accordion_type="accordion" active="1" title="Was my order successful?" content_html="

    We have several verification stages when customers place an order, this is done to provide our customers with the highest level of security.

    _APENTER_

    If your order is successful, you should within the next 10 minutes receive an order confirmation via the e-mail address provided by you at the checkout page. If not, please contact us and we can assist you in this matter.

    "][/ApHtml][/ApTab][ApTab form_id="form_1817508486938621" id="tab_5888536289412656" css_class="" image="" override_folder="" title="Return _APAMP_ Exchange" sub_title=""][ApHtml form_id="form_6922604929076382" accordion_type="accordion" title="What is your exchange policy?" content_html="

    Kindly observe that we do not offer a direct exchange service.

    _APENTER_

    In the event you are unsatisfied with your purchase and would like to receive a different product, you are most welcome to send back your purchase for a full refund. We will refund your product(s) for its full value to the account originally used when making your purchase. To ensure that you receive the desired product as fast as possible, we kindly ask you to make a new purchase at your own convenience.

    _APENTER_

    Please note you must send back the item(s) you wish to have refunded within 30 days of receiving it. The product(s) must be unused – in its original packaging with labels and protective stickers intact – and still in the same new condition as when it was received. Products purchased directly from our website must be returned to our warehouse for a refund to be made; product(s) cannot be returned to a local retail store.

    _APENTER_

    If you have paid or received customs fees for the item(s) you wish to return, please contact your local UPS office for information on how to receive a credit or refund, respectively.

    _APENTER_

    The offer of any product(s) purchased during a campaign period will still be honored should you wish to receive another item instead. Please contact us for further information, we’re happy to assist you.

    "][/ApHtml][ApHtml form_id="form_9329625882812304" accordion_type="accordion" active="1" title="What is your return policy?" content_html="

    You have the right to return any/all products you have purchased directly from addons.prestashop.com within 30 days of receiving the item(s) for a full refund.

    _APENTER_

    The product(s) must be unused – in original packaging with labels and protective stickers intact - and still in the same, new condition as when received.

    _APENTER_

    Products purchased directly from addons.prestashop.com can be returned to our warehouse using a pre-paid shipping label, which we will provide. Kindly note that items cannot be returned to a local retail store.

    _APENTER_

    _APENTER_

    Please follow the steps below to return your order:

    _APENTER_
      _APENTER_
    1. _APQUOT_Submit a request_APQUOT_ through the link below
    2. _APENTER_
    3. Select Return as topic and provide a return reason - send email
    4. _APENTER_
    5. You will receive an automatic email with your return instructions
    6. _APENTER_
    7. Follow the instructions and create your return label
    8. _APENTER_
    9. Return your order to us via our courier UPS
    10. _APENTER_
    "][/ApHtml][ApHtml form_id="form_2770709531843399" accordion_type="accordion" active="1" title="How do I exchange my order?" content_html="

    In the event you are unsatisfied with your purchase and would like to receive a different product, you are most welcome to send back your purchase for a full refund. To ensure that you receive the desired product as fast as possible, please place a new purchase at your own convenience. If you wish to return your order, please contact us; we will be happy to provide you with further instructions.

    "][/ApHtml][ApHtml form_id="form_4780503759095453" accordion_type="accordion" active="1" title="How do I return my order?" content_html="

    Please follow the steps below to return your order:

    _APENTER_
      _APENTER_
    1. _APQUOT_Submit a request_APQUOT_ through the link below
    2. _APENTER_
    3. Select Return as topic and provide a return reason - send email
    4. _APENTER_
    5. You will receive an automatic email with your return instructions
    6. _APENTER_
    7. Follow the instructions and create your return label
    8. _APENTER_
    9. Return your order to us via our courier UPS
    10. _APENTER_
    _APENTER_

    _APENTER_

    _APENTER_

    TERMS:

    _APENTER_

    Please note, you will need to send back your order within 30 days from receiving it. We will not accept any returns after this period. Your item must be in the same condition as when you received it.

    _APENTER_

    Kindly note that we do not offer the service of exchanging your items. If you wish to receive an exchange, please send back your order and place a new one at your own convenience. Any offer or campaign offered during the original purchase will still be honored when placing a new order - please contact us for more information.

    "][/ApHtml][ApHtml form_id="form_8086660703370280" accordion_type="accordion" active="1" title="Have you received my return?" content_html="

    Once your returning package has been received at our warehouse, it is processed and inspected before we proceed in approving or disapproving the respective return.

    _APENTER_

    We appreciate your understanding that, although we work as quickly as possible, it is possible that this process may take several business days to complete.

    _APENTER_

    Kindly observe that weis not responsible for any items lost during the return shipping if you choose to return the package by yourself. Therefore, we strongly recommend that you return your order using the return label and instructions provided by our customer service. Please submit a request via the link below to receive the necessary details in order to make your return.

    "][/ApHtml][ApHtml form_id="form_9840562733889424" accordion_type="accordion" active="1" title="When will I receive my refund?" content_html="

    Once your returning package has been received at our warehouse, it is processed and inspected before we proceed in approving or disapproving the respective return.

    _APENTER_

    The product(s) must be sent back within 30 days of receiving it. However, it is not an issue if it is received at our warehouse after this period. It must be unused – in its original packaging with labels and protective stickers intact - and still in the same new condition as when the watch was received.

    _APENTER_

    If your return is approved, a full refund will be issued for your order. Once a refund is issued on our system, you can expect it to be visible in your account within 5-10 business days.

    "][/ApHtml][/ApTab][ApTab form_id="form_4020772011054762" id="tab_8765137751205977" css_class="" image="" override_folder="" title="Payment _APAMP_ Security" sub_title=""][ApHtml form_id="form_7750919623855290" accordion_type="accordion" title="What payment options do you accept?" content_html="

    We accepts American Express, Diners, Discover, Maestro, MasterCard, Visa, PayPal as well as various other local debit cards and invoicing options.

    _APENTER_

    We also offer the payment method Cash on Delivery.

    _APENTER_

    All available payment options for each country are displayed at the checkout, once you have entered the country of delivery.

    "][/ApHtml][ApHtml form_id="form_3662239134614965" accordion_type="accordion" active="1" title="Which currency is displayed on the website?" content_html="

    The prices visible on our US and websites are stated in USD. These prices exclude possible duties and taxes which are either added or deducted at the checkout.

    We is not responsible for any discrepancies in currency values or conversation rates that your bank or credit card company may use when purchasing from our website. Should you have questions concerning this, please contact your bank or credit card company, respectively.

    "][/ApHtml][ApHtml form_id="form_9134790750075268" accordion_type="accordion" active="1" title="Do you store my payment information?" content_html="

    We does not receive or store any payment information. All transactions are handled directly by Adyen, our payment service provider. Your credit card details are sent directly to the bank and cannot be read or accessed by any parties other than your bank.

    "][/ApHtml][/ApTab][ApTab form_id="form_8158703749241914" id="tab_5736302845825436" css_class="" image="" override_folder="" title="Shipping" sub_title=""][ApHtml form_id="form_9269147811072614" accordion_type="accordion" title="From where are your products shipped?" content_html="

    All orders to the United States and Canada are sent from our warehouse in New York.

    _APENTER_

    Orders shipped to addresses in Europe, South America, and Africa are shipped from our warehouse in Sweden.

    _APENTER_

    Orders shipped to addresses in Asia (excluding China), Oceania, and the Middle East are shipped from our warehouse in Hong Kong.

    _APENTER_

    Orders shipped to addresses in China and India are shipped from our warehouses in China and India respectively.

    "][/ApHtml][ApHtml form_id="form_4659572243700013" accordion_type="accordion" active="1" title="How long does it take to ship internationally?" content_html="

    It usually takes 5-10 business days to arrive in your country however, in some instances, delivery may be delayed depending on your country_APAPOST_s customs.

    "][/ApHtml][ApHtml form_id="form_16524847045825938" accordion_type="accordion" active="1" title="I received a damaged Item, what do I do?" content_html="

    If you could kindly print and fill out this form, and return it along with the damaged item, we will issue you store credit and you can repurchase the item if desired. We strongly suggest including a tracking number with your package, as we are not liable for those that get lost in transit.

    _APENTER_

    Once we receive your package, we will email you with a store credit code in the amount of your item, plus the cost of the shipping return. Please Note that we can only reimburse you a maximum of $10.00 USD if you include a copy of the receipt in your shipment.

    "][/ApHtml][/ApTab][ApTab form_id="form_8645926171488972" id="tab_6064769222365396" css_class="" image="" override_folder="" title="Shopping guides" sub_title=""][ApHtml form_id="form_2305075705341189" accordion_type="accordion" title="How are taxes and duties applied to international orders?" content_html="

    The prices on our website do not include taxes, duties or shipping. Depending where you live, your country’s customs office may impose a few additional charges on your order: import fees, declaration fees, import duties (tariffs) and/or taxes. In some countries, orders below a certain value may not be subject to duties. This is often known as De Minimis value, and is determined by your local customs office. For all online orders — including the purchase of gift cards — all the fees required for customs clearance are the sole responsibility of the customer (that’s you). They will be charged upon arrival.

    _APENTER_

    On rare occasions, customs agents may delay the delivery of packages at their discretion.

    _APENTER_

    The powers that be also require us to state the value of your order (i.e. the price) directly on your package. We know what you’re thinking, and no, we cannot mark any package(s) as a “gift” to help you avoid paying extra fees. (Sorry.)

    _APENTER_

    We has no control over these charges. For more information on customs, duties, taxes and other import charges, please contact your local customs office.

    "][/ApHtml][ApHtml form_id="form_9810748101330425" accordion_type="accordion" active="1" title="I forgot my password, What Should I do?" content_html="

    To re-set your password, follow the _APAPOST_FORGOT PASSWORD_APAPOST_ instructions on the LOG IN page. Please note, for security reasons we are unable to send your old password via email.

    "][/ApHtml][ApHtml form_id="form_7380109318707037" accordion_type="accordion" active="1" title="Will out of stock items be restocked?" content_html="

    If an item is out of stock, I will try to restock it as soon as possible.

    _APENTER_

    If no stock is available, the item will be removed from the website.

    "][/ApHtml][/ApTab][ApTab form_id="form_7275036643535555" id="tab_4585983866035059" css_class="" image="" override_folder="" title="Gift Purchases" sub_title=""][ApHtml form_id="form_12012849787041577" accordion_type="accordion" active="1" title=" Can I send a gift to someone and add a gift message?" content_html="

    Yes, you can send a gift to someone and add a personalised message easily during checkout. All gifts arrive wrapped and your message is printed on a gift card.

    _APENTER_

    All gifts will have prices removed and the receipt will be sent to the purchaser, not the gift recipient.

    _APENTER_

    Take advantage of our free gift wrapping service to send someone special a gorgeous.

    "][/ApHtml][ApHtml form_id="form_8583691438777360" accordion_type="accordion" active="1" title="Can I purchase and use a gift card online?" content_html="

    We do sell gift cards online, but unfortunately, at the moment you can’t redeem gift cards in our online store. If you buy a gift card online, you’ll only be able to redeem it in one of our stores. We are working on a gift card that can be used both online and in store, and we hope to have this available soon.

    _APENTER_

    Gift cards are valid for twelve months (excluding NSW*) from date of issue and can be used in all our stores across Australia but not online as payment. Gift cards can be redeemed for merchandise only and not for cash, another gift card will be issued if total amount is not redeemed. Please note, gift cards are non-refundable, non-transferable and cannot be redeemed for cash. Gift Cards are treated as cash and cannot be replaced if lost or stolen.


    *All gift Cards purchased in NSW up until the 30th March 2019 are valid for 12 months from date of issue. Any Gift Cards purchased in NSW from the 31st March 2019 onwards will be valid for 3 years from date of issue.

    "][/ApHtml][/ApTab][ApTab form_id="form_6529652059070621" id="tab_5506393441969661" css_class="" image="" override_folder="" title="Member Center" sub_title=""][ApHtml form_id="form_7451323182740895" accordion_type="accordion" active="1" title="How do I get coupons?" content_html="

    Register for a customer account on website. Sign up for our weekly deals newsletter at the bottom of the website. Some special activities will also feature coupon giveaways. Coupons are a great way to save money.

    "][/ApHtml][ApHtml form_id="form_9147683190306530" accordion_type="accordion" active="1" title="How do I use my coupons?" content_html="

    Make sure the coupon has not expired (most will show the expiry date in your account). During the checkout process, go to your shopping cart. Enter the full promotion code and click _APQUOT_APPLY_APQUOT_. You can only use one coupon code per order.

    "][/ApHtml][ApHtml form_id="form_8525121306923476" accordion_type="accordion" active="1" title="How can I get more points?" content_html="

    You can get Points in a number of ways: by confirming your email address, writing reviews, uploading images, purchasing products, participating in some of our special promotions, and other methods.

    "][/ApHtml][ApHtml form_id="form_4590756861117829" accordion_type="accordion" active="1" title="How do I use my points?" content_html="

    You can use points at the checkout page: First, sign in to your account, and add all the items you want to your shopping cart. Then click “PROCEED TO CHECKOUT”. When you go to the “Place Your Order” button, our system will show you how many points you can use for this order. Please note you require a minimum of 50 points.

    "][/ApHtml][ApHtml form_id="form_33513266052721085" accordion_type="accordion" active="1" title="How do I use my Gift Card?" content_html="

    Choose Gift Card as your payment method on the checkout page; please ensure the gift card you choose has not expired.

    "][/ApHtml][/ApTab][ApTab form_id="form_4940407173378293" id="tab_9060964011911358" css_class="" image="" override_folder="" title="Other Questions" sub_title=""][ApHtml form_id="form_35246729420509395" accordion_type="accordion" title="What kinds of payment are accepted?" content_html="

    We accept the following forms of secure payment:

    _APENTER_

    (1) PayPal

    _APENTER_

    (2) Credit card via Paypal (Visa, MasterCard, Discover, American Express, etc.) For USA customers only at the moment.

    _APENTER_

    (3) Credit Card Directly

    _APENTER_

    (4) Western Union

    _APENTER_

    (5) Wired Transfer

    _APENTER_

    (6) ZAFUL Gift Cards

    "][/ApHtml][ApHtml form_id="form_28886229170536985" accordion_type="accordion" active="1" title="What are the conditions for campaigns?" content_html="

    The campaigns offered on our official website:

    _APENTER_
      _APENTER_
    • Are only valid for orders made directly on our official website.
    • _APENTER_
    _APENTER_
      _APENTER_
    • Are only valid for a limited amount of time; the campaign/promotion cannot be applied to orders made before or after the campaign period.
    • _APENTER_
    "][/ApHtml][ApHtml form_id="form_5555536712454315" accordion_type="accordion" active="1" title="How do I register?" content_html="

    We recommend that you use your email address as your username, this makes it much easier to remember. Please make sure that your password is at least 6 characters in length. You can easily create your own website by clicking here to register.

    "][/ApHtml][/ApTab][/ApTabs][/ApColumn][/ApRow]]]>
    In the event you wish to cancel your order, please contact us.

    _APENTER_

    Upon receiving your cancellation request, we will reach out to our courier service and request that the package be rerouted back to our warehouse. Once we receive the returned package, we will process the order, issue a full refund to your account, and notify you via email.

    _APENTER_

    Kindly note that at this time we are unable to cancel orders before they are shipped.

    "][/ApHtml][ApHtml form_id="form_39189706612991935" accordion_type="accordion" active="1" title="Can I change my order?" content_html="

    Once an order is submitted, we are unable to change the ordered products or the quantity selected.

    _APENTER_

    In this situation, we suggest you contact us and cancel the incorrect order.

    _APENTER_

    Thereafter, we recommend you place a new order for your desired item(s) on our website at your own convenience.

    "][/ApHtml][ApHtml form_id="form_27310439184804055" class="" accordion_type="accordion" override_folder="" active="1" title="Can I change my delivery address?" sub_title="" content_html="

    If you wish to change your delivery address, please contact us and we will do our best to assist you in this matter.

    _APENTER_

    In the event that we are unable to process the address change directly in our system, usually because the package has already been shipped, we will need to contact our courier to request a change of delivery address.

    _APENTER_

    In order to help you further, we would really appreciate if you could provide us with the following information :

    _APENTER_

    - First and Last name,

    _APENTER_

    - Company name (if needed),

    _APENTER_

    - Street name and number,

    _APENTER_

    - Zip code and City,

    _APENTER_

    - Country,

    _APENTER_

    - Phone number and Email Address.

    _APENTER_

    _APENTER_

    Please be aware that an address change will delay the delivery time. We cannot be held responsible for any delay in delivery due to an address change requested by a customer.

    "][/ApHtml][ApHtml form_id="form_7056014438372757" accordion_type="accordion" active="1" title="When will I receive my order?" content_html="

    We aim to ensure that you receive your order as quickly as possible.

    _APENTER_

    Once your order is successfully submitted, the warehouse then processes your order the following business day. It is then picked, packed, and dispatched. Once it is on its way to you, you will receive an email notification containing your tracking information, along with an estimated delivery date.

    _APENTER_

    Kindly note that orders placed after 11:00 am (EST) are not guaranteed to be shipped the same day. Packages are not transported nor delivered on weekends and local public holidays.

    _APENTER_

    While we always strive to have our orders delivered on time, we acknowledge that the unforeseeable is inevitable. External factors outside and its courier’s control, such as extreme weather conditions and technical failures, are bound to occasionally cause delays, and we ask for your patience and understanding when they do.

    _APENTER_

    Additionally, please note that during promotional campaigns, delivery times may be longer than usual.

    _APENTER_

    Feel free to reach out to us if you have any questions about your order_APAPOST_s status. We_APAPOST_re happy to help!

    "][/ApHtml][ApHtml form_id="form_19660625936395425" accordion_type="accordion" active="1" title="How do I place an order?" content_html="

    To place your order, select the item(s) that you wish to purchase and add it to your shopping cart. Then, proceed to the checkout page where you must fill in your personal information and pay for the order. Make sure to double check that you have filled in your details correctly to ensure that you receive all the necessary info and that your order is delivered without any complications.

    _APENTER_

    If you need any help, we strongly advise you to speak to one of our Customer Service advisors , they will be happy to assist you.

    "][/ApHtml][ApHtml form_id="form_8004733695032317" accordion_type="accordion" active="1" title="Was my order successful?" content_html="

    We have several verification stages when customers place an order, this is done to provide our customers with the highest level of security.

    _APENTER_

    If your order is successful, you should within the next 10 minutes receive an order confirmation via the e-mail address provided by you at the checkout page. If not, please contact us and we can assist you in this matter.

    "][/ApHtml][/ApTab][ApTab form_id="form_1817508486938621" id="tab_5888536289412656" css_class="" image="" override_folder="" title="Return _APAMP_ Exchange" sub_title=""][ApHtml form_id="form_6922604929076382" accordion_type="accordion" title="What is your exchange policy?" content_html="

    Kindly observe that we do not offer a direct exchange service.

    _APENTER_

    In the event you are unsatisfied with your purchase and would like to receive a different product, you are most welcome to send back your purchase for a full refund. We will refund your product(s) for its full value to the account originally used when making your purchase. To ensure that you receive the desired product as fast as possible, we kindly ask you to make a new purchase at your own convenience.

    _APENTER_

    Please note you must send back the item(s) you wish to have refunded within 30 days of receiving it. The product(s) must be unused – in its original packaging with labels and protective stickers intact – and still in the same new condition as when it was received. Products purchased directly from our website must be returned to our warehouse for a refund to be made; product(s) cannot be returned to a local retail store.

    _APENTER_

    If you have paid or received customs fees for the item(s) you wish to return, please contact your local UPS office for information on how to receive a credit or refund, respectively.

    _APENTER_

    The offer of any product(s) purchased during a campaign period will still be honored should you wish to receive another item instead. Please contact us for further information, we’re happy to assist you.

    "][/ApHtml][ApHtml form_id="form_9329625882812304" accordion_type="accordion" active="1" title="What is your return policy?" content_html="

    You have the right to return any/all products you have purchased directly from addons.prestashop.com within 30 days of receiving the item(s) for a full refund.

    _APENTER_

    The product(s) must be unused – in original packaging with labels and protective stickers intact - and still in the same, new condition as when received.

    _APENTER_

    Products purchased directly from addons.prestashop.com can be returned to our warehouse using a pre-paid shipping label, which we will provide. Kindly note that items cannot be returned to a local retail store.

    _APENTER_

    _APENTER_

    Please follow the steps below to return your order:

    _APENTER_
      _APENTER_
    1. _APQUOT_Submit a request_APQUOT_ through the link below
    2. _APENTER_
    3. Select Return as topic and provide a return reason - send email
    4. _APENTER_
    5. You will receive an automatic email with your return instructions
    6. _APENTER_
    7. Follow the instructions and create your return label
    8. _APENTER_
    9. Return your order to us via our courier UPS
    10. _APENTER_
    "][/ApHtml][ApHtml form_id="form_2770709531843399" accordion_type="accordion" active="1" title="How do I exchange my order?" content_html="

    In the event you are unsatisfied with your purchase and would like to receive a different product, you are most welcome to send back your purchase for a full refund. To ensure that you receive the desired product as fast as possible, please place a new purchase at your own convenience. If you wish to return your order, please contact us; we will be happy to provide you with further instructions.

    "][/ApHtml][ApHtml form_id="form_4780503759095453" accordion_type="accordion" active="1" title="How do I return my order?" content_html="

    Please follow the steps below to return your order:

    _APENTER_
      _APENTER_
    1. _APQUOT_Submit a request_APQUOT_ through the link below
    2. _APENTER_
    3. Select Return as topic and provide a return reason - send email
    4. _APENTER_
    5. You will receive an automatic email with your return instructions
    6. _APENTER_
    7. Follow the instructions and create your return label
    8. _APENTER_
    9. Return your order to us via our courier UPS
    10. _APENTER_
    _APENTER_

    _APENTER_

    _APENTER_

    TERMS:

    _APENTER_

    Please note, you will need to send back your order within 30 days from receiving it. We will not accept any returns after this period. Your item must be in the same condition as when you received it.

    _APENTER_

    Kindly note that we do not offer the service of exchanging your items. If you wish to receive an exchange, please send back your order and place a new one at your own convenience. Any offer or campaign offered during the original purchase will still be honored when placing a new order - please contact us for more information.

    "][/ApHtml][ApHtml form_id="form_8086660703370280" accordion_type="accordion" active="1" title="Have you received my return?" content_html="

    Once your returning package has been received at our warehouse, it is processed and inspected before we proceed in approving or disapproving the respective return.

    _APENTER_

    We appreciate your understanding that, although we work as quickly as possible, it is possible that this process may take several business days to complete.

    _APENTER_

    Kindly observe that weis not responsible for any items lost during the return shipping if you choose to return the package by yourself. Therefore, we strongly recommend that you return your order using the return label and instructions provided by our customer service. Please submit a request via the link below to receive the necessary details in order to make your return.

    "][/ApHtml][ApHtml form_id="form_9840562733889424" accordion_type="accordion" active="1" title="When will I receive my refund?" content_html="

    Once your returning package has been received at our warehouse, it is processed and inspected before we proceed in approving or disapproving the respective return.

    _APENTER_

    The product(s) must be sent back within 30 days of receiving it. However, it is not an issue if it is received at our warehouse after this period. It must be unused – in its original packaging with labels and protective stickers intact - and still in the same new condition as when the watch was received.

    _APENTER_

    If your return is approved, a full refund will be issued for your order. Once a refund is issued on our system, you can expect it to be visible in your account within 5-10 business days.

    "][/ApHtml][/ApTab][ApTab form_id="form_4020772011054762" id="tab_8765137751205977" css_class="" image="" override_folder="" title="Payment _APAMP_ Security" sub_title=""][ApHtml form_id="form_7750919623855290" accordion_type="accordion" title="What payment options do you accept?" content_html="

    We accepts American Express, Diners, Discover, Maestro, MasterCard, Visa, PayPal as well as various other local debit cards and invoicing options.

    _APENTER_

    We also offer the payment method Cash on Delivery.

    _APENTER_

    All available payment options for each country are displayed at the checkout, once you have entered the country of delivery.

    "][/ApHtml][ApHtml form_id="form_3662239134614965" accordion_type="accordion" active="1" title="Which currency is displayed on the website?" content_html="

    The prices visible on our US and websites are stated in USD. These prices exclude possible duties and taxes which are either added or deducted at the checkout.

    We is not responsible for any discrepancies in currency values or conversation rates that your bank or credit card company may use when purchasing from our website. Should you have questions concerning this, please contact your bank or credit card company, respectively.

    "][/ApHtml][ApHtml form_id="form_9134790750075268" accordion_type="accordion" active="1" title="Do you store my payment information?" content_html="

    We does not receive or store any payment information. All transactions are handled directly by Adyen, our payment service provider. Your credit card details are sent directly to the bank and cannot be read or accessed by any parties other than your bank.

    "][/ApHtml][/ApTab][ApTab form_id="form_8158703749241914" id="tab_5736302845825436" css_class="" image="" override_folder="" title="Shipping" sub_title=""][ApHtml form_id="form_9269147811072614" accordion_type="accordion" title="From where are your products shipped?" content_html="

    All orders to the United States and Canada are sent from our warehouse in New York.

    _APENTER_

    Orders shipped to addresses in Europe, South America, and Africa are shipped from our warehouse in Sweden.

    _APENTER_

    Orders shipped to addresses in Asia (excluding China), Oceania, and the Middle East are shipped from our warehouse in Hong Kong.

    _APENTER_

    Orders shipped to addresses in China and India are shipped from our warehouses in China and India respectively.

    "][/ApHtml][ApHtml form_id="form_4659572243700013" accordion_type="accordion" active="1" title="How long does it take to ship internationally?" content_html="

    It usually takes 5-10 business days to arrive in your country however, in some instances, delivery may be delayed depending on your country_APAPOST_s customs.

    "][/ApHtml][ApHtml form_id="form_16524847045825938" accordion_type="accordion" active="1" title="I received a damaged Item, what do I do?" content_html="

    If you could kindly print and fill out this form, and return it along with the damaged item, we will issue you store credit and you can repurchase the item if desired. We strongly suggest including a tracking number with your package, as we are not liable for those that get lost in transit.

    _APENTER_

    Once we receive your package, we will email you with a store credit code in the amount of your item, plus the cost of the shipping return. Please Note that we can only reimburse you a maximum of $10.00 USD if you include a copy of the receipt in your shipment.

    "][/ApHtml][/ApTab][ApTab form_id="form_8645926171488972" id="tab_6064769222365396" css_class="" image="" override_folder="" title="Shopping guides" sub_title=""][ApHtml form_id="form_2305075705341189" accordion_type="accordion" title="How are taxes and duties applied to international orders?" content_html="

    The prices on our website do not include taxes, duties or shipping. Depending where you live, your country’s customs office may impose a few additional charges on your order: import fees, declaration fees, import duties (tariffs) and/or taxes. In some countries, orders below a certain value may not be subject to duties. This is often known as De Minimis value, and is determined by your local customs office. For all online orders — including the purchase of gift cards — all the fees required for customs clearance are the sole responsibility of the customer (that’s you). They will be charged upon arrival.

    _APENTER_

    On rare occasions, customs agents may delay the delivery of packages at their discretion.

    _APENTER_

    The powers that be also require us to state the value of your order (i.e. the price) directly on your package. We know what you’re thinking, and no, we cannot mark any package(s) as a “gift” to help you avoid paying extra fees. (Sorry.)

    _APENTER_

    We has no control over these charges. For more information on customs, duties, taxes and other import charges, please contact your local customs office.

    "][/ApHtml][ApHtml form_id="form_9810748101330425" accordion_type="accordion" active="1" title="I forgot my password, What Should I do?" content_html="

    To re-set your password, follow the _APAPOST_FORGOT PASSWORD_APAPOST_ instructions on the LOG IN page. Please note, for security reasons we are unable to send your old password via email.

    "][/ApHtml][ApHtml form_id="form_7380109318707037" accordion_type="accordion" active="1" title="Will out of stock items be restocked?" content_html="

    If an item is out of stock, I will try to restock it as soon as possible.

    _APENTER_

    If no stock is available, the item will be removed from the website.

    "][/ApHtml][/ApTab][ApTab form_id="form_7275036643535555" id="tab_4585983866035059" css_class="" image="" override_folder="" title="Gift Purchases" sub_title=""][ApHtml form_id="form_12012849787041577" accordion_type="accordion" active="1" title=" Can I send a gift to someone and add a gift message?" content_html="

    Yes, you can send a gift to someone and add a personalised message easily during checkout. All gifts arrive wrapped and your message is printed on a gift card.

    _APENTER_

    All gifts will have prices removed and the receipt will be sent to the purchaser, not the gift recipient.

    _APENTER_

    Take advantage of our free gift wrapping service to send someone special a gorgeous.

    "][/ApHtml][ApHtml form_id="form_8583691438777360" accordion_type="accordion" active="1" title="Can I purchase and use a gift card online?" content_html="

    We do sell gift cards online, but unfortunately, at the moment you can’t redeem gift cards in our online store. If you buy a gift card online, you’ll only be able to redeem it in one of our stores. We are working on a gift card that can be used both online and in store, and we hope to have this available soon.

    _APENTER_

    Gift cards are valid for twelve months (excluding NSW*) from date of issue and can be used in all our stores across Australia but not online as payment. Gift cards can be redeemed for merchandise only and not for cash, another gift card will be issued if total amount is not redeemed. Please note, gift cards are non-refundable, non-transferable and cannot be redeemed for cash. Gift Cards are treated as cash and cannot be replaced if lost or stolen.


    *All gift Cards purchased in NSW up until the 30th March 2019 are valid for 12 months from date of issue. Any Gift Cards purchased in NSW from the 31st March 2019 onwards will be valid for 3 years from date of issue.

    "][/ApHtml][/ApTab][ApTab form_id="form_6529652059070621" id="tab_5506393441969661" css_class="" image="" override_folder="" title="Member Center" sub_title=""][ApHtml form_id="form_7451323182740895" accordion_type="accordion" active="1" title="How do I get coupons?" content_html="

    Register for a customer account on website. Sign up for our weekly deals newsletter at the bottom of the website. Some special activities will also feature coupon giveaways. Coupons are a great way to save money.

    "][/ApHtml][ApHtml form_id="form_9147683190306530" accordion_type="accordion" active="1" title="How do I use my coupons?" content_html="

    Make sure the coupon has not expired (most will show the expiry date in your account). During the checkout process, go to your shopping cart. Enter the full promotion code and click _APQUOT_APPLY_APQUOT_. You can only use one coupon code per order.

    "][/ApHtml][ApHtml form_id="form_8525121306923476" accordion_type="accordion" active="1" title="How can I get more points?" content_html="

    You can get Points in a number of ways: by confirming your email address, writing reviews, uploading images, purchasing products, participating in some of our special promotions, and other methods.

    "][/ApHtml][ApHtml form_id="form_4590756861117829" accordion_type="accordion" active="1" title="How do I use my points?" content_html="

    You can use points at the checkout page: First, sign in to your account, and add all the items you want to your shopping cart. Then click “PROCEED TO CHECKOUT”. When you go to the “Place Your Order” button, our system will show you how many points you can use for this order. Please note you require a minimum of 50 points.

    "][/ApHtml][ApHtml form_id="form_33513266052721085" accordion_type="accordion" active="1" title="How do I use my Gift Card?" content_html="

    Choose Gift Card as your payment method on the checkout page; please ensure the gift card you choose has not expired.

    "][/ApHtml][/ApTab][ApTab form_id="form_4940407173378293" id="tab_9060964011911358" css_class="" image="" override_folder="" title="Other Questions" sub_title=""][ApHtml form_id="form_35246729420509395" accordion_type="accordion" title="What kinds of payment are accepted?" content_html="

    We accept the following forms of secure payment:

    _APENTER_

    (1) PayPal

    _APENTER_

    (2) Credit card via Paypal (Visa, MasterCard, Discover, American Express, etc.) For USA customers only at the moment.

    _APENTER_

    (3) Credit Card Directly

    _APENTER_

    (4) Western Union

    _APENTER_

    (5) Wired Transfer

    _APENTER_

    (6) ZAFUL Gift Cards

    "][/ApHtml][ApHtml form_id="form_28886229170536985" accordion_type="accordion" active="1" title="What are the conditions for campaigns?" content_html="

    The campaigns offered on our official website:

    _APENTER_
      _APENTER_
    • Are only valid for orders made directly on our official website.
    • _APENTER_
    _APENTER_
      _APENTER_
    • Are only valid for a limited amount of time; the campaign/promotion cannot be applied to orders made before or after the campaign period.
    • _APENTER_
    "][/ApHtml][ApHtml form_id="form_5555536712454315" accordion_type="accordion" active="1" title="How do I register?" content_html="

    We recommend that you use your email address as your username, this makes it much easier to remember. Please make sure that your password is at least 6 characters in length. You can easily create your own website by clicking here to register.

    "][/ApHtml][/ApTab][/ApTabs][/ApColumn][/ApRow]]]>
    In the event you wish to cancel your order, please contact us.

    _APENTER_

    Upon receiving your cancellation request, we will reach out to our courier service and request that the package be rerouted back to our warehouse. Once we receive the returned package, we will process the order, issue a full refund to your account, and notify you via email.

    _APENTER_

    Kindly note that at this time we are unable to cancel orders before they are shipped.

    "][/ApHtml][ApHtml form_id="form_39189706612991935" accordion_type="accordion" active="1" title="Can I change my order?" content_html="

    Once an order is submitted, we are unable to change the ordered products or the quantity selected.

    _APENTER_

    In this situation, we suggest you contact us and cancel the incorrect order.

    _APENTER_

    Thereafter, we recommend you place a new order for your desired item(s) on our website at your own convenience.

    "][/ApHtml][ApHtml form_id="form_27310439184804055" class="" accordion_type="accordion" override_folder="" active="1" title="Can I change my delivery address?" sub_title="" content_html="

    If you wish to change your delivery address, please contact us and we will do our best to assist you in this matter.

    _APENTER_

    In the event that we are unable to process the address change directly in our system, usually because the package has already been shipped, we will need to contact our courier to request a change of delivery address.

    _APENTER_

    In order to help you further, we would really appreciate if you could provide us with the following information :

    _APENTER_

    - First and Last name,

    _APENTER_

    - Company name (if needed),

    _APENTER_

    - Street name and number,

    _APENTER_

    - Zip code and City,

    _APENTER_

    - Country,

    _APENTER_

    - Phone number and Email Address.

    _APENTER_

    _APENTER_

    Please be aware that an address change will delay the delivery time. We cannot be held responsible for any delay in delivery due to an address change requested by a customer.

    "][/ApHtml][ApHtml form_id="form_7056014438372757" accordion_type="accordion" active="1" title="When will I receive my order?" content_html="

    We aim to ensure that you receive your order as quickly as possible.

    _APENTER_

    Once your order is successfully submitted, the warehouse then processes your order the following business day. It is then picked, packed, and dispatched. Once it is on its way to you, you will receive an email notification containing your tracking information, along with an estimated delivery date.

    _APENTER_

    Kindly note that orders placed after 11:00 am (EST) are not guaranteed to be shipped the same day. Packages are not transported nor delivered on weekends and local public holidays.

    _APENTER_

    While we always strive to have our orders delivered on time, we acknowledge that the unforeseeable is inevitable. External factors outside and its courier’s control, such as extreme weather conditions and technical failures, are bound to occasionally cause delays, and we ask for your patience and understanding when they do.

    _APENTER_

    Additionally, please note that during promotional campaigns, delivery times may be longer than usual.

    _APENTER_

    Feel free to reach out to us if you have any questions about your order_APAPOST_s status. We_APAPOST_re happy to help!

    "][/ApHtml][ApHtml form_id="form_19660625936395425" accordion_type="accordion" active="1" title="How do I place an order?" content_html="

    To place your order, select the item(s) that you wish to purchase and add it to your shopping cart. Then, proceed to the checkout page where you must fill in your personal information and pay for the order. Make sure to double check that you have filled in your details correctly to ensure that you receive all the necessary info and that your order is delivered without any complications.

    _APENTER_

    If you need any help, we strongly advise you to speak to one of our Customer Service advisors , they will be happy to assist you.

    "][/ApHtml][ApHtml form_id="form_8004733695032317" accordion_type="accordion" active="1" title="Was my order successful?" content_html="

    We have several verification stages when customers place an order, this is done to provide our customers with the highest level of security.

    _APENTER_

    If your order is successful, you should within the next 10 minutes receive an order confirmation via the e-mail address provided by you at the checkout page. If not, please contact us and we can assist you in this matter.

    "][/ApHtml][/ApTab][ApTab form_id="form_1817508486938621" id="tab_5888536289412656" css_class="" image="" override_folder="" title="Return _APAMP_ Exchange" sub_title=""][ApHtml form_id="form_6922604929076382" accordion_type="accordion" title="What is your exchange policy?" content_html="

    Kindly observe that we do not offer a direct exchange service.

    _APENTER_

    In the event you are unsatisfied with your purchase and would like to receive a different product, you are most welcome to send back your purchase for a full refund. We will refund your product(s) for its full value to the account originally used when making your purchase. To ensure that you receive the desired product as fast as possible, we kindly ask you to make a new purchase at your own convenience.

    _APENTER_

    Please note you must send back the item(s) you wish to have refunded within 30 days of receiving it. The product(s) must be unused – in its original packaging with labels and protective stickers intact – and still in the same new condition as when it was received. Products purchased directly from our website must be returned to our warehouse for a refund to be made; product(s) cannot be returned to a local retail store.

    _APENTER_

    If you have paid or received customs fees for the item(s) you wish to return, please contact your local UPS office for information on how to receive a credit or refund, respectively.

    _APENTER_

    The offer of any product(s) purchased during a campaign period will still be honored should you wish to receive another item instead. Please contact us for further information, we’re happy to assist you.

    "][/ApHtml][ApHtml form_id="form_9329625882812304" accordion_type="accordion" active="1" title="What is your return policy?" content_html="

    You have the right to return any/all products you have purchased directly from addons.prestashop.com within 30 days of receiving the item(s) for a full refund.

    _APENTER_

    The product(s) must be unused – in original packaging with labels and protective stickers intact - and still in the same, new condition as when received.

    _APENTER_

    Products purchased directly from addons.prestashop.com can be returned to our warehouse using a pre-paid shipping label, which we will provide. Kindly note that items cannot be returned to a local retail store.

    _APENTER_

    _APENTER_

    Please follow the steps below to return your order:

    _APENTER_
      _APENTER_
    1. _APQUOT_Submit a request_APQUOT_ through the link below
    2. _APENTER_
    3. Select Return as topic and provide a return reason - send email
    4. _APENTER_
    5. You will receive an automatic email with your return instructions
    6. _APENTER_
    7. Follow the instructions and create your return label
    8. _APENTER_
    9. Return your order to us via our courier UPS
    10. _APENTER_
    "][/ApHtml][ApHtml form_id="form_2770709531843399" accordion_type="accordion" active="1" title="How do I exchange my order?" content_html="

    In the event you are unsatisfied with your purchase and would like to receive a different product, you are most welcome to send back your purchase for a full refund. To ensure that you receive the desired product as fast as possible, please place a new purchase at your own convenience. If you wish to return your order, please contact us; we will be happy to provide you with further instructions.

    "][/ApHtml][ApHtml form_id="form_4780503759095453" accordion_type="accordion" active="1" title="How do I return my order?" content_html="

    Please follow the steps below to return your order:

    _APENTER_
      _APENTER_
    1. _APQUOT_Submit a request_APQUOT_ through the link below
    2. _APENTER_
    3. Select Return as topic and provide a return reason - send email
    4. _APENTER_
    5. You will receive an automatic email with your return instructions
    6. _APENTER_
    7. Follow the instructions and create your return label
    8. _APENTER_
    9. Return your order to us via our courier UPS
    10. _APENTER_
    _APENTER_

    _APENTER_

    _APENTER_

    TERMS:

    _APENTER_

    Please note, you will need to send back your order within 30 days from receiving it. We will not accept any returns after this period. Your item must be in the same condition as when you received it.

    _APENTER_

    Kindly note that we do not offer the service of exchanging your items. If you wish to receive an exchange, please send back your order and place a new one at your own convenience. Any offer or campaign offered during the original purchase will still be honored when placing a new order - please contact us for more information.

    "][/ApHtml][ApHtml form_id="form_8086660703370280" accordion_type="accordion" active="1" title="Have you received my return?" content_html="

    Once your returning package has been received at our warehouse, it is processed and inspected before we proceed in approving or disapproving the respective return.

    _APENTER_

    We appreciate your understanding that, although we work as quickly as possible, it is possible that this process may take several business days to complete.

    _APENTER_

    Kindly observe that weis not responsible for any items lost during the return shipping if you choose to return the package by yourself. Therefore, we strongly recommend that you return your order using the return label and instructions provided by our customer service. Please submit a request via the link below to receive the necessary details in order to make your return.

    "][/ApHtml][ApHtml form_id="form_9840562733889424" accordion_type="accordion" active="1" title="When will I receive my refund?" content_html="

    Once your returning package has been received at our warehouse, it is processed and inspected before we proceed in approving or disapproving the respective return.

    _APENTER_

    The product(s) must be sent back within 30 days of receiving it. However, it is not an issue if it is received at our warehouse after this period. It must be unused – in its original packaging with labels and protective stickers intact - and still in the same new condition as when the watch was received.

    _APENTER_

    If your return is approved, a full refund will be issued for your order. Once a refund is issued on our system, you can expect it to be visible in your account within 5-10 business days.

    "][/ApHtml][/ApTab][ApTab form_id="form_4020772011054762" id="tab_8765137751205977" css_class="" image="" override_folder="" title="Payment _APAMP_ Security" sub_title=""][ApHtml form_id="form_7750919623855290" accordion_type="accordion" title="What payment options do you accept?" content_html="

    We accepts American Express, Diners, Discover, Maestro, MasterCard, Visa, PayPal as well as various other local debit cards and invoicing options.

    _APENTER_

    We also offer the payment method Cash on Delivery.

    _APENTER_

    All available payment options for each country are displayed at the checkout, once you have entered the country of delivery.

    "][/ApHtml][ApHtml form_id="form_3662239134614965" accordion_type="accordion" active="1" title="Which currency is displayed on the website?" content_html="

    The prices visible on our US and websites are stated in USD. These prices exclude possible duties and taxes which are either added or deducted at the checkout.

    We is not responsible for any discrepancies in currency values or conversation rates that your bank or credit card company may use when purchasing from our website. Should you have questions concerning this, please contact your bank or credit card company, respectively.

    "][/ApHtml][ApHtml form_id="form_9134790750075268" accordion_type="accordion" active="1" title="Do you store my payment information?" content_html="

    We does not receive or store any payment information. All transactions are handled directly by Adyen, our payment service provider. Your credit card details are sent directly to the bank and cannot be read or accessed by any parties other than your bank.

    "][/ApHtml][/ApTab][ApTab form_id="form_8158703749241914" id="tab_5736302845825436" css_class="" image="" override_folder="" title="Shipping" sub_title=""][ApHtml form_id="form_9269147811072614" accordion_type="accordion" title="From where are your products shipped?" content_html="

    All orders to the United States and Canada are sent from our warehouse in New York.

    _APENTER_

    Orders shipped to addresses in Europe, South America, and Africa are shipped from our warehouse in Sweden.

    _APENTER_

    Orders shipped to addresses in Asia (excluding China), Oceania, and the Middle East are shipped from our warehouse in Hong Kong.

    _APENTER_

    Orders shipped to addresses in China and India are shipped from our warehouses in China and India respectively.

    "][/ApHtml][ApHtml form_id="form_4659572243700013" accordion_type="accordion" active="1" title="How long does it take to ship internationally?" content_html="

    It usually takes 5-10 business days to arrive in your country however, in some instances, delivery may be delayed depending on your country_APAPOST_s customs.

    "][/ApHtml][ApHtml form_id="form_16524847045825938" accordion_type="accordion" active="1" title="I received a damaged Item, what do I do?" content_html="

    If you could kindly print and fill out this form, and return it along with the damaged item, we will issue you store credit and you can repurchase the item if desired. We strongly suggest including a tracking number with your package, as we are not liable for those that get lost in transit.

    _APENTER_

    Once we receive your package, we will email you with a store credit code in the amount of your item, plus the cost of the shipping return. Please Note that we can only reimburse you a maximum of $10.00 USD if you include a copy of the receipt in your shipment.

    "][/ApHtml][/ApTab][ApTab form_id="form_8645926171488972" id="tab_6064769222365396" css_class="" image="" override_folder="" title="Shopping guides" sub_title=""][ApHtml form_id="form_2305075705341189" accordion_type="accordion" title="How are taxes and duties applied to international orders?" content_html="

    The prices on our website do not include taxes, duties or shipping. Depending where you live, your country’s customs office may impose a few additional charges on your order: import fees, declaration fees, import duties (tariffs) and/or taxes. In some countries, orders below a certain value may not be subject to duties. This is often known as De Minimis value, and is determined by your local customs office. For all online orders — including the purchase of gift cards — all the fees required for customs clearance are the sole responsibility of the customer (that’s you). They will be charged upon arrival.

    _APENTER_

    On rare occasions, customs agents may delay the delivery of packages at their discretion.

    _APENTER_

    The powers that be also require us to state the value of your order (i.e. the price) directly on your package. We know what you’re thinking, and no, we cannot mark any package(s) as a “gift” to help you avoid paying extra fees. (Sorry.)

    _APENTER_

    We has no control over these charges. For more information on customs, duties, taxes and other import charges, please contact your local customs office.

    "][/ApHtml][ApHtml form_id="form_9810748101330425" accordion_type="accordion" active="1" title="I forgot my password, What Should I do?" content_html="

    To re-set your password, follow the _APAPOST_FORGOT PASSWORD_APAPOST_ instructions on the LOG IN page. Please note, for security reasons we are unable to send your old password via email.

    "][/ApHtml][ApHtml form_id="form_7380109318707037" accordion_type="accordion" active="1" title="Will out of stock items be restocked?" content_html="

    If an item is out of stock, I will try to restock it as soon as possible.

    _APENTER_

    If no stock is available, the item will be removed from the website.

    "][/ApHtml][/ApTab][ApTab form_id="form_7275036643535555" id="tab_4585983866035059" css_class="" image="" override_folder="" title="Gift Purchases" sub_title=""][ApHtml form_id="form_12012849787041577" accordion_type="accordion" active="1" title=" Can I send a gift to someone and add a gift message?" content_html="

    Yes, you can send a gift to someone and add a personalised message easily during checkout. All gifts arrive wrapped and your message is printed on a gift card.

    _APENTER_

    All gifts will have prices removed and the receipt will be sent to the purchaser, not the gift recipient.

    _APENTER_

    Take advantage of our free gift wrapping service to send someone special a gorgeous.

    "][/ApHtml][ApHtml form_id="form_8583691438777360" accordion_type="accordion" active="1" title="Can I purchase and use a gift card online?" content_html="

    We do sell gift cards online, but unfortunately, at the moment you can’t redeem gift cards in our online store. If you buy a gift card online, you’ll only be able to redeem it in one of our stores. We are working on a gift card that can be used both online and in store, and we hope to have this available soon.

    _APENTER_

    Gift cards are valid for twelve months (excluding NSW*) from date of issue and can be used in all our stores across Australia but not online as payment. Gift cards can be redeemed for merchandise only and not for cash, another gift card will be issued if total amount is not redeemed. Please note, gift cards are non-refundable, non-transferable and cannot be redeemed for cash. Gift Cards are treated as cash and cannot be replaced if lost or stolen.


    *All gift Cards purchased in NSW up until the 30th March 2019 are valid for 12 months from date of issue. Any Gift Cards purchased in NSW from the 31st March 2019 onwards will be valid for 3 years from date of issue.

    "][/ApHtml][/ApTab][ApTab form_id="form_6529652059070621" id="tab_5506393441969661" css_class="" image="" override_folder="" title="Member Center" sub_title=""][ApHtml form_id="form_7451323182740895" accordion_type="accordion" active="1" title="How do I get coupons?" content_html="

    Register for a customer account on website. Sign up for our weekly deals newsletter at the bottom of the website. Some special activities will also feature coupon giveaways. Coupons are a great way to save money.

    "][/ApHtml][ApHtml form_id="form_9147683190306530" accordion_type="accordion" active="1" title="How do I use my coupons?" content_html="

    Make sure the coupon has not expired (most will show the expiry date in your account). During the checkout process, go to your shopping cart. Enter the full promotion code and click _APQUOT_APPLY_APQUOT_. You can only use one coupon code per order.

    "][/ApHtml][ApHtml form_id="form_8525121306923476" accordion_type="accordion" active="1" title="How can I get more points?" content_html="

    You can get Points in a number of ways: by confirming your email address, writing reviews, uploading images, purchasing products, participating in some of our special promotions, and other methods.

    "][/ApHtml][ApHtml form_id="form_4590756861117829" accordion_type="accordion" active="1" title="How do I use my points?" content_html="

    You can use points at the checkout page: First, sign in to your account, and add all the items you want to your shopping cart. Then click “PROCEED TO CHECKOUT”. When you go to the “Place Your Order” button, our system will show you how many points you can use for this order. Please note you require a minimum of 50 points.

    "][/ApHtml][ApHtml form_id="form_33513266052721085" accordion_type="accordion" active="1" title="How do I use my Gift Card?" content_html="

    Choose Gift Card as your payment method on the checkout page; please ensure the gift card you choose has not expired.

    "][/ApHtml][/ApTab][ApTab form_id="form_4940407173378293" id="tab_9060964011911358" css_class="" image="" override_folder="" title="Other Questions" sub_title=""][ApHtml form_id="form_35246729420509395" accordion_type="accordion" title="What kinds of payment are accepted?" content_html="

    We accept the following forms of secure payment:

    _APENTER_

    (1) PayPal

    _APENTER_

    (2) Credit card via Paypal (Visa, MasterCard, Discover, American Express, etc.) For USA customers only at the moment.

    _APENTER_

    (3) Credit Card Directly

    _APENTER_

    (4) Western Union

    _APENTER_

    (5) Wired Transfer

    _APENTER_

    (6) ZAFUL Gift Cards

    "][/ApHtml][ApHtml form_id="form_28886229170536985" accordion_type="accordion" active="1" title="What are the conditions for campaigns?" content_html="

    The campaigns offered on our official website:

    _APENTER_
      _APENTER_
    • Are only valid for orders made directly on our official website.
    • _APENTER_
    _APENTER_
      _APENTER_
    • Are only valid for a limited amount of time; the campaign/promotion cannot be applied to orders made before or after the campaign period.
    • _APENTER_
    "][/ApHtml][ApHtml form_id="form_5555536712454315" accordion_type="accordion" active="1" title="How do I register?" content_html="

    We recommend that you use your email address as your username, this makes it much easier to remember. Please make sure that your password is at least 6 characters in length. You can easily create your own website by clicking here to register.

    "][/ApHtml][/ApTab][/ApTabs][/ApColumn][/ApRow]]]>
    In the event you wish to cancel your order, please contact us.

    _APENTER_

    Upon receiving your cancellation request, we will reach out to our courier service and request that the package be rerouted back to our warehouse. Once we receive the returned package, we will process the order, issue a full refund to your account, and notify you via email.

    _APENTER_

    Kindly note that at this time we are unable to cancel orders before they are shipped.

    "][/ApHtml][ApHtml form_id="form_39189706612991935" accordion_type="accordion" active="1" title="Can I change my order?" content_html="

    Once an order is submitted, we are unable to change the ordered products or the quantity selected.

    _APENTER_

    In this situation, we suggest you contact us and cancel the incorrect order.

    _APENTER_

    Thereafter, we recommend you place a new order for your desired item(s) on our website at your own convenience.

    "][/ApHtml][ApHtml form_id="form_27310439184804055" class="" accordion_type="accordion" override_folder="" active="1" title="Can I change my delivery address?" sub_title="" content_html="

    If you wish to change your delivery address, please contact us and we will do our best to assist you in this matter.

    _APENTER_

    In the event that we are unable to process the address change directly in our system, usually because the package has already been shipped, we will need to contact our courier to request a change of delivery address.

    _APENTER_

    In order to help you further, we would really appreciate if you could provide us with the following information :

    _APENTER_

    - First and Last name,

    _APENTER_

    - Company name (if needed),

    _APENTER_

    - Street name and number,

    _APENTER_

    - Zip code and City,

    _APENTER_

    - Country,

    _APENTER_

    - Phone number and Email Address.

    _APENTER_

    _APENTER_

    Please be aware that an address change will delay the delivery time. We cannot be held responsible for any delay in delivery due to an address change requested by a customer.

    "][/ApHtml][ApHtml form_id="form_7056014438372757" accordion_type="accordion" active="1" title="When will I receive my order?" content_html="

    We aim to ensure that you receive your order as quickly as possible.

    _APENTER_

    Once your order is successfully submitted, the warehouse then processes your order the following business day. It is then picked, packed, and dispatched. Once it is on its way to you, you will receive an email notification containing your tracking information, along with an estimated delivery date.

    _APENTER_

    Kindly note that orders placed after 11:00 am (EST) are not guaranteed to be shipped the same day. Packages are not transported nor delivered on weekends and local public holidays.

    _APENTER_

    While we always strive to have our orders delivered on time, we acknowledge that the unforeseeable is inevitable. External factors outside and its courier’s control, such as extreme weather conditions and technical failures, are bound to occasionally cause delays, and we ask for your patience and understanding when they do.

    _APENTER_

    Additionally, please note that during promotional campaigns, delivery times may be longer than usual.

    _APENTER_

    Feel free to reach out to us if you have any questions about your order_APAPOST_s status. We_APAPOST_re happy to help!

    "][/ApHtml][ApHtml form_id="form_19660625936395425" accordion_type="accordion" active="1" title="How do I place an order?" content_html="

    To place your order, select the item(s) that you wish to purchase and add it to your shopping cart. Then, proceed to the checkout page where you must fill in your personal information and pay for the order. Make sure to double check that you have filled in your details correctly to ensure that you receive all the necessary info and that your order is delivered without any complications.

    _APENTER_

    If you need any help, we strongly advise you to speak to one of our Customer Service advisors , they will be happy to assist you.

    "][/ApHtml][ApHtml form_id="form_8004733695032317" accordion_type="accordion" active="1" title="Was my order successful?" content_html="

    We have several verification stages when customers place an order, this is done to provide our customers with the highest level of security.

    _APENTER_

    If your order is successful, you should within the next 10 minutes receive an order confirmation via the e-mail address provided by you at the checkout page. If not, please contact us and we can assist you in this matter.

    "][/ApHtml][/ApTab][ApTab form_id="form_1817508486938621" id="tab_5888536289412656" css_class="" image="" override_folder="" title="Return _APAMP_ Exchange" sub_title=""][ApHtml form_id="form_6922604929076382" accordion_type="accordion" title="What is your exchange policy?" content_html="

    Kindly observe that we do not offer a direct exchange service.

    _APENTER_

    In the event you are unsatisfied with your purchase and would like to receive a different product, you are most welcome to send back your purchase for a full refund. We will refund your product(s) for its full value to the account originally used when making your purchase. To ensure that you receive the desired product as fast as possible, we kindly ask you to make a new purchase at your own convenience.

    _APENTER_

    Please note you must send back the item(s) you wish to have refunded within 30 days of receiving it. The product(s) must be unused – in its original packaging with labels and protective stickers intact – and still in the same new condition as when it was received. Products purchased directly from our website must be returned to our warehouse for a refund to be made; product(s) cannot be returned to a local retail store.

    _APENTER_

    If you have paid or received customs fees for the item(s) you wish to return, please contact your local UPS office for information on how to receive a credit or refund, respectively.

    _APENTER_

    The offer of any product(s) purchased during a campaign period will still be honored should you wish to receive another item instead. Please contact us for further information, we’re happy to assist you.

    "][/ApHtml][ApHtml form_id="form_9329625882812304" accordion_type="accordion" active="1" title="What is your return policy?" content_html="

    You have the right to return any/all products you have purchased directly from addons.prestashop.com within 30 days of receiving the item(s) for a full refund.

    _APENTER_

    The product(s) must be unused – in original packaging with labels and protective stickers intact - and still in the same, new condition as when received.

    _APENTER_

    Products purchased directly from addons.prestashop.com can be returned to our warehouse using a pre-paid shipping label, which we will provide. Kindly note that items cannot be returned to a local retail store.

    _APENTER_

    _APENTER_

    Please follow the steps below to return your order:

    _APENTER_
      _APENTER_
    1. _APQUOT_Submit a request_APQUOT_ through the link below
    2. _APENTER_
    3. Select Return as topic and provide a return reason - send email
    4. _APENTER_
    5. You will receive an automatic email with your return instructions
    6. _APENTER_
    7. Follow the instructions and create your return label
    8. _APENTER_
    9. Return your order to us via our courier UPS
    10. _APENTER_
    "][/ApHtml][ApHtml form_id="form_2770709531843399" accordion_type="accordion" active="1" title="How do I exchange my order?" content_html="

    In the event you are unsatisfied with your purchase and would like to receive a different product, you are most welcome to send back your purchase for a full refund. To ensure that you receive the desired product as fast as possible, please place a new purchase at your own convenience. If you wish to return your order, please contact us; we will be happy to provide you with further instructions.

    "][/ApHtml][ApHtml form_id="form_4780503759095453" accordion_type="accordion" active="1" title="How do I return my order?" content_html="

    Please follow the steps below to return your order:

    _APENTER_
      _APENTER_
    1. _APQUOT_Submit a request_APQUOT_ through the link below
    2. _APENTER_
    3. Select Return as topic and provide a return reason - send email
    4. _APENTER_
    5. You will receive an automatic email with your return instructions
    6. _APENTER_
    7. Follow the instructions and create your return label
    8. _APENTER_
    9. Return your order to us via our courier UPS
    10. _APENTER_
    _APENTER_

    _APENTER_

    _APENTER_

    TERMS:

    _APENTER_

    Please note, you will need to send back your order within 30 days from receiving it. We will not accept any returns after this period. Your item must be in the same condition as when you received it.

    _APENTER_

    Kindly note that we do not offer the service of exchanging your items. If you wish to receive an exchange, please send back your order and place a new one at your own convenience. Any offer or campaign offered during the original purchase will still be honored when placing a new order - please contact us for more information.

    "][/ApHtml][ApHtml form_id="form_8086660703370280" accordion_type="accordion" active="1" title="Have you received my return?" content_html="

    Once your returning package has been received at our warehouse, it is processed and inspected before we proceed in approving or disapproving the respective return.

    _APENTER_

    We appreciate your understanding that, although we work as quickly as possible, it is possible that this process may take several business days to complete.

    _APENTER_

    Kindly observe that weis not responsible for any items lost during the return shipping if you choose to return the package by yourself. Therefore, we strongly recommend that you return your order using the return label and instructions provided by our customer service. Please submit a request via the link below to receive the necessary details in order to make your return.

    "][/ApHtml][ApHtml form_id="form_9840562733889424" accordion_type="accordion" active="1" title="When will I receive my refund?" content_html="

    Once your returning package has been received at our warehouse, it is processed and inspected before we proceed in approving or disapproving the respective return.

    _APENTER_

    The product(s) must be sent back within 30 days of receiving it. However, it is not an issue if it is received at our warehouse after this period. It must be unused – in its original packaging with labels and protective stickers intact - and still in the same new condition as when the watch was received.

    _APENTER_

    If your return is approved, a full refund will be issued for your order. Once a refund is issued on our system, you can expect it to be visible in your account within 5-10 business days.

    "][/ApHtml][/ApTab][ApTab form_id="form_4020772011054762" id="tab_8765137751205977" css_class="" image="" override_folder="" title="Payment _APAMP_ Security" sub_title=""][ApHtml form_id="form_7750919623855290" accordion_type="accordion" title="What payment options do you accept?" content_html="

    We accepts American Express, Diners, Discover, Maestro, MasterCard, Visa, PayPal as well as various other local debit cards and invoicing options.

    _APENTER_

    We also offer the payment method Cash on Delivery.

    _APENTER_

    All available payment options for each country are displayed at the checkout, once you have entered the country of delivery.

    "][/ApHtml][ApHtml form_id="form_3662239134614965" accordion_type="accordion" active="1" title="Which currency is displayed on the website?" content_html="

    The prices visible on our US and websites are stated in USD. These prices exclude possible duties and taxes which are either added or deducted at the checkout.

    We is not responsible for any discrepancies in currency values or conversation rates that your bank or credit card company may use when purchasing from our website. Should you have questions concerning this, please contact your bank or credit card company, respectively.

    "][/ApHtml][ApHtml form_id="form_9134790750075268" accordion_type="accordion" active="1" title="Do you store my payment information?" content_html="

    We does not receive or store any payment information. All transactions are handled directly by Adyen, our payment service provider. Your credit card details are sent directly to the bank and cannot be read or accessed by any parties other than your bank.

    "][/ApHtml][/ApTab][ApTab form_id="form_8158703749241914" id="tab_5736302845825436" css_class="" image="" override_folder="" title="Shipping" sub_title=""][ApHtml form_id="form_9269147811072614" accordion_type="accordion" title="From where are your products shipped?" content_html="

    All orders to the United States and Canada are sent from our warehouse in New York.

    _APENTER_

    Orders shipped to addresses in Europe, South America, and Africa are shipped from our warehouse in Sweden.

    _APENTER_

    Orders shipped to addresses in Asia (excluding China), Oceania, and the Middle East are shipped from our warehouse in Hong Kong.

    _APENTER_

    Orders shipped to addresses in China and India are shipped from our warehouses in China and India respectively.

    "][/ApHtml][ApHtml form_id="form_4659572243700013" accordion_type="accordion" active="1" title="How long does it take to ship internationally?" content_html="

    It usually takes 5-10 business days to arrive in your country however, in some instances, delivery may be delayed depending on your country_APAPOST_s customs.

    "][/ApHtml][ApHtml form_id="form_16524847045825938" accordion_type="accordion" active="1" title="I received a damaged Item, what do I do?" content_html="

    If you could kindly print and fill out this form, and return it along with the damaged item, we will issue you store credit and you can repurchase the item if desired. We strongly suggest including a tracking number with your package, as we are not liable for those that get lost in transit.

    _APENTER_

    Once we receive your package, we will email you with a store credit code in the amount of your item, plus the cost of the shipping return. Please Note that we can only reimburse you a maximum of $10.00 USD if you include a copy of the receipt in your shipment.

    "][/ApHtml][/ApTab][ApTab form_id="form_8645926171488972" id="tab_6064769222365396" css_class="" image="" override_folder="" title="Shopping guides" sub_title=""][ApHtml form_id="form_2305075705341189" accordion_type="accordion" title="How are taxes and duties applied to international orders?" content_html="

    The prices on our website do not include taxes, duties or shipping. Depending where you live, your country’s customs office may impose a few additional charges on your order: import fees, declaration fees, import duties (tariffs) and/or taxes. In some countries, orders below a certain value may not be subject to duties. This is often known as De Minimis value, and is determined by your local customs office. For all online orders — including the purchase of gift cards — all the fees required for customs clearance are the sole responsibility of the customer (that’s you). They will be charged upon arrival.

    _APENTER_

    On rare occasions, customs agents may delay the delivery of packages at their discretion.

    _APENTER_

    The powers that be also require us to state the value of your order (i.e. the price) directly on your package. We know what you’re thinking, and no, we cannot mark any package(s) as a “gift” to help you avoid paying extra fees. (Sorry.)

    _APENTER_

    We has no control over these charges. For more information on customs, duties, taxes and other import charges, please contact your local customs office.

    "][/ApHtml][ApHtml form_id="form_9810748101330425" accordion_type="accordion" active="1" title="I forgot my password, What Should I do?" content_html="

    To re-set your password, follow the _APAPOST_FORGOT PASSWORD_APAPOST_ instructions on the LOG IN page. Please note, for security reasons we are unable to send your old password via email.

    "][/ApHtml][ApHtml form_id="form_7380109318707037" accordion_type="accordion" active="1" title="Will out of stock items be restocked?" content_html="

    If an item is out of stock, I will try to restock it as soon as possible.

    _APENTER_

    If no stock is available, the item will be removed from the website.

    "][/ApHtml][/ApTab][ApTab form_id="form_7275036643535555" id="tab_4585983866035059" css_class="" image="" override_folder="" title="Gift Purchases" sub_title=""][ApHtml form_id="form_12012849787041577" accordion_type="accordion" active="1" title=" Can I send a gift to someone and add a gift message?" content_html="

    Yes, you can send a gift to someone and add a personalised message easily during checkout. All gifts arrive wrapped and your message is printed on a gift card.

    _APENTER_

    All gifts will have prices removed and the receipt will be sent to the purchaser, not the gift recipient.

    _APENTER_

    Take advantage of our free gift wrapping service to send someone special a gorgeous.

    "][/ApHtml][ApHtml form_id="form_8583691438777360" accordion_type="accordion" active="1" title="Can I purchase and use a gift card online?" content_html="

    We do sell gift cards online, but unfortunately, at the moment you can’t redeem gift cards in our online store. If you buy a gift card online, you’ll only be able to redeem it in one of our stores. We are working on a gift card that can be used both online and in store, and we hope to have this available soon.

    _APENTER_

    Gift cards are valid for twelve months (excluding NSW*) from date of issue and can be used in all our stores across Australia but not online as payment. Gift cards can be redeemed for merchandise only and not for cash, another gift card will be issued if total amount is not redeemed. Please note, gift cards are non-refundable, non-transferable and cannot be redeemed for cash. Gift Cards are treated as cash and cannot be replaced if lost or stolen.


    *All gift Cards purchased in NSW up until the 30th March 2019 are valid for 12 months from date of issue. Any Gift Cards purchased in NSW from the 31st March 2019 onwards will be valid for 3 years from date of issue.

    "][/ApHtml][/ApTab][ApTab form_id="form_6529652059070621" id="tab_5506393441969661" css_class="" image="" override_folder="" title="Member Center" sub_title=""][ApHtml form_id="form_7451323182740895" accordion_type="accordion" active="1" title="How do I get coupons?" content_html="

    Register for a customer account on website. Sign up for our weekly deals newsletter at the bottom of the website. Some special activities will also feature coupon giveaways. Coupons are a great way to save money.

    "][/ApHtml][ApHtml form_id="form_9147683190306530" accordion_type="accordion" active="1" title="How do I use my coupons?" content_html="

    Make sure the coupon has not expired (most will show the expiry date in your account). During the checkout process, go to your shopping cart. Enter the full promotion code and click _APQUOT_APPLY_APQUOT_. You can only use one coupon code per order.

    "][/ApHtml][ApHtml form_id="form_8525121306923476" accordion_type="accordion" active="1" title="How can I get more points?" content_html="

    You can get Points in a number of ways: by confirming your email address, writing reviews, uploading images, purchasing products, participating in some of our special promotions, and other methods.

    "][/ApHtml][ApHtml form_id="form_4590756861117829" accordion_type="accordion" active="1" title="How do I use my points?" content_html="

    You can use points at the checkout page: First, sign in to your account, and add all the items you want to your shopping cart. Then click “PROCEED TO CHECKOUT”. When you go to the “Place Your Order” button, our system will show you how many points you can use for this order. Please note you require a minimum of 50 points.

    "][/ApHtml][ApHtml form_id="form_33513266052721085" accordion_type="accordion" active="1" title="How do I use my Gift Card?" content_html="

    Choose Gift Card as your payment method on the checkout page; please ensure the gift card you choose has not expired.

    "][/ApHtml][/ApTab][ApTab form_id="form_4940407173378293" id="tab_9060964011911358" css_class="" image="" override_folder="" title="Other Questions" sub_title=""][ApHtml form_id="form_35246729420509395" accordion_type="accordion" title="What kinds of payment are accepted?" content_html="

    We accept the following forms of secure payment:

    _APENTER_

    (1) PayPal

    _APENTER_

    (2) Credit card via Paypal (Visa, MasterCard, Discover, American Express, etc.) For USA customers only at the moment.

    _APENTER_

    (3) Credit Card Directly

    _APENTER_

    (4) Western Union

    _APENTER_

    (5) Wired Transfer

    _APENTER_

    (6) ZAFUL Gift Cards

    "][/ApHtml][ApHtml form_id="form_28886229170536985" accordion_type="accordion" active="1" title="What are the conditions for campaigns?" content_html="

    The campaigns offered on our official website:

    _APENTER_
      _APENTER_
    • Are only valid for orders made directly on our official website.
    • _APENTER_
    _APENTER_
      _APENTER_
    • Are only valid for a limited amount of time; the campaign/promotion cannot be applied to orders made before or after the campaign period.
    • _APENTER_
    "][/ApHtml][ApHtml form_id="form_5555536712454315" accordion_type="accordion" active="1" title="How do I register?" content_html="

    We recommend that you use your email address as your username, this makes it much easier to remember. Please make sure that your password is at least 6 characters in length. You can easily create your own website by clicking here to register.

    "][/ApHtml][/ApTab][/ApTabs][/ApColumn][/ApRow]]]>
    In the event you wish to cancel your order, please contact us.

    _APENTER_

    Upon receiving your cancellation request, we will reach out to our courier service and request that the package be rerouted back to our warehouse. Once we receive the returned package, we will process the order, issue a full refund to your account, and notify you via email.

    _APENTER_

    Kindly note that at this time we are unable to cancel orders before they are shipped.

    "][/ApHtml][ApHtml form_id="form_39189706612991935" accordion_type="accordion" active="1" title="Can I change my order?" content_html="

    Once an order is submitted, we are unable to change the ordered products or the quantity selected.

    _APENTER_

    In this situation, we suggest you contact us and cancel the incorrect order.

    _APENTER_

    Thereafter, we recommend you place a new order for your desired item(s) on our website at your own convenience.

    "][/ApHtml][ApHtml form_id="form_27310439184804055" class="" accordion_type="accordion" override_folder="" active="1" title="Can I change my delivery address?" sub_title="" content_html="

    If you wish to change your delivery address, please contact us and we will do our best to assist you in this matter.

    _APENTER_

    In the event that we are unable to process the address change directly in our system, usually because the package has already been shipped, we will need to contact our courier to request a change of delivery address.

    _APENTER_

    In order to help you further, we would really appreciate if you could provide us with the following information :

    _APENTER_

    - First and Last name,

    _APENTER_

    - Company name (if needed),

    _APENTER_

    - Street name and number,

    _APENTER_

    - Zip code and City,

    _APENTER_

    - Country,

    _APENTER_

    - Phone number and Email Address.

    _APENTER_

    _APENTER_

    Please be aware that an address change will delay the delivery time. We cannot be held responsible for any delay in delivery due to an address change requested by a customer.

    "][/ApHtml][ApHtml form_id="form_7056014438372757" accordion_type="accordion" active="1" title="When will I receive my order?" content_html="

    We aim to ensure that you receive your order as quickly as possible.

    _APENTER_

    Once your order is successfully submitted, the warehouse then processes your order the following business day. It is then picked, packed, and dispatched. Once it is on its way to you, you will receive an email notification containing your tracking information, along with an estimated delivery date.

    _APENTER_

    Kindly note that orders placed after 11:00 am (EST) are not guaranteed to be shipped the same day. Packages are not transported nor delivered on weekends and local public holidays.

    _APENTER_

    While we always strive to have our orders delivered on time, we acknowledge that the unforeseeable is inevitable. External factors outside and its courier’s control, such as extreme weather conditions and technical failures, are bound to occasionally cause delays, and we ask for your patience and understanding when they do.

    _APENTER_

    Additionally, please note that during promotional campaigns, delivery times may be longer than usual.

    _APENTER_

    Feel free to reach out to us if you have any questions about your order_APAPOST_s status. We_APAPOST_re happy to help!

    "][/ApHtml][ApHtml form_id="form_19660625936395425" accordion_type="accordion" active="1" title="How do I place an order?" content_html="

    To place your order, select the item(s) that you wish to purchase and add it to your shopping cart. Then, proceed to the checkout page where you must fill in your personal information and pay for the order. Make sure to double check that you have filled in your details correctly to ensure that you receive all the necessary info and that your order is delivered without any complications.

    _APENTER_

    If you need any help, we strongly advise you to speak to one of our Customer Service advisors , they will be happy to assist you.

    "][/ApHtml][ApHtml form_id="form_8004733695032317" accordion_type="accordion" active="1" title="Was my order successful?" content_html="

    We have several verification stages when customers place an order, this is done to provide our customers with the highest level of security.

    _APENTER_

    If your order is successful, you should within the next 10 minutes receive an order confirmation via the e-mail address provided by you at the checkout page. If not, please contact us and we can assist you in this matter.

    "][/ApHtml][/ApTab][ApTab form_id="form_1817508486938621" id="tab_5888536289412656" css_class="" image="" override_folder="" title="Return _APAMP_ Exchange" sub_title=""][ApHtml form_id="form_6922604929076382" accordion_type="accordion" title="What is your exchange policy?" content_html="

    Kindly observe that we do not offer a direct exchange service.

    _APENTER_

    In the event you are unsatisfied with your purchase and would like to receive a different product, you are most welcome to send back your purchase for a full refund. We will refund your product(s) for its full value to the account originally used when making your purchase. To ensure that you receive the desired product as fast as possible, we kindly ask you to make a new purchase at your own convenience.

    _APENTER_

    Please note you must send back the item(s) you wish to have refunded within 30 days of receiving it. The product(s) must be unused – in its original packaging with labels and protective stickers intact – and still in the same new condition as when it was received. Products purchased directly from our website must be returned to our warehouse for a refund to be made; product(s) cannot be returned to a local retail store.

    _APENTER_

    If you have paid or received customs fees for the item(s) you wish to return, please contact your local UPS office for information on how to receive a credit or refund, respectively.

    _APENTER_

    The offer of any product(s) purchased during a campaign period will still be honored should you wish to receive another item instead. Please contact us for further information, we’re happy to assist you.

    "][/ApHtml][ApHtml form_id="form_9329625882812304" accordion_type="accordion" active="1" title="What is your return policy?" content_html="

    You have the right to return any/all products you have purchased directly from addons.prestashop.com within 30 days of receiving the item(s) for a full refund.

    _APENTER_

    The product(s) must be unused – in original packaging with labels and protective stickers intact - and still in the same, new condition as when received.

    _APENTER_

    Products purchased directly from addons.prestashop.com can be returned to our warehouse using a pre-paid shipping label, which we will provide. Kindly note that items cannot be returned to a local retail store.

    _APENTER_

    _APENTER_

    Please follow the steps below to return your order:

    _APENTER_
      _APENTER_
    1. _APQUOT_Submit a request_APQUOT_ through the link below
    2. _APENTER_
    3. Select Return as topic and provide a return reason - send email
    4. _APENTER_
    5. You will receive an automatic email with your return instructions
    6. _APENTER_
    7. Follow the instructions and create your return label
    8. _APENTER_
    9. Return your order to us via our courier UPS
    10. _APENTER_
    "][/ApHtml][ApHtml form_id="form_2770709531843399" accordion_type="accordion" active="1" title="How do I exchange my order?" content_html="

    In the event you are unsatisfied with your purchase and would like to receive a different product, you are most welcome to send back your purchase for a full refund. To ensure that you receive the desired product as fast as possible, please place a new purchase at your own convenience. If you wish to return your order, please contact us; we will be happy to provide you with further instructions.

    "][/ApHtml][ApHtml form_id="form_4780503759095453" accordion_type="accordion" active="1" title="How do I return my order?" content_html="

    Please follow the steps below to return your order:

    _APENTER_
      _APENTER_
    1. _APQUOT_Submit a request_APQUOT_ through the link below
    2. _APENTER_
    3. Select Return as topic and provide a return reason - send email
    4. _APENTER_
    5. You will receive an automatic email with your return instructions
    6. _APENTER_
    7. Follow the instructions and create your return label
    8. _APENTER_
    9. Return your order to us via our courier UPS
    10. _APENTER_
    _APENTER_

    _APENTER_

    _APENTER_

    TERMS:

    _APENTER_

    Please note, you will need to send back your order within 30 days from receiving it. We will not accept any returns after this period. Your item must be in the same condition as when you received it.

    _APENTER_

    Kindly note that we do not offer the service of exchanging your items. If you wish to receive an exchange, please send back your order and place a new one at your own convenience. Any offer or campaign offered during the original purchase will still be honored when placing a new order - please contact us for more information.

    "][/ApHtml][ApHtml form_id="form_8086660703370280" accordion_type="accordion" active="1" title="Have you received my return?" content_html="

    Once your returning package has been received at our warehouse, it is processed and inspected before we proceed in approving or disapproving the respective return.

    _APENTER_

    We appreciate your understanding that, although we work as quickly as possible, it is possible that this process may take several business days to complete.

    _APENTER_

    Kindly observe that weis not responsible for any items lost during the return shipping if you choose to return the package by yourself. Therefore, we strongly recommend that you return your order using the return label and instructions provided by our customer service. Please submit a request via the link below to receive the necessary details in order to make your return.

    "][/ApHtml][ApHtml form_id="form_9840562733889424" accordion_type="accordion" active="1" title="When will I receive my refund?" content_html="

    Once your returning package has been received at our warehouse, it is processed and inspected before we proceed in approving or disapproving the respective return.

    _APENTER_

    The product(s) must be sent back within 30 days of receiving it. However, it is not an issue if it is received at our warehouse after this period. It must be unused – in its original packaging with labels and protective stickers intact - and still in the same new condition as when the watch was received.

    _APENTER_

    If your return is approved, a full refund will be issued for your order. Once a refund is issued on our system, you can expect it to be visible in your account within 5-10 business days.

    "][/ApHtml][/ApTab][ApTab form_id="form_4020772011054762" id="tab_8765137751205977" css_class="" image="" override_folder="" title="Payment _APAMP_ Security" sub_title=""][ApHtml form_id="form_7750919623855290" accordion_type="accordion" title="What payment options do you accept?" content_html="

    We accepts American Express, Diners, Discover, Maestro, MasterCard, Visa, PayPal as well as various other local debit cards and invoicing options.

    _APENTER_

    We also offer the payment method Cash on Delivery.

    _APENTER_

    All available payment options for each country are displayed at the checkout, once you have entered the country of delivery.

    "][/ApHtml][ApHtml form_id="form_3662239134614965" accordion_type="accordion" active="1" title="Which currency is displayed on the website?" content_html="

    The prices visible on our US and websites are stated in USD. These prices exclude possible duties and taxes which are either added or deducted at the checkout.

    We is not responsible for any discrepancies in currency values or conversation rates that your bank or credit card company may use when purchasing from our website. Should you have questions concerning this, please contact your bank or credit card company, respectively.

    "][/ApHtml][ApHtml form_id="form_9134790750075268" accordion_type="accordion" active="1" title="Do you store my payment information?" content_html="

    We does not receive or store any payment information. All transactions are handled directly by Adyen, our payment service provider. Your credit card details are sent directly to the bank and cannot be read or accessed by any parties other than your bank.

    "][/ApHtml][/ApTab][ApTab form_id="form_8158703749241914" id="tab_5736302845825436" css_class="" image="" override_folder="" title="Shipping" sub_title=""][ApHtml form_id="form_9269147811072614" accordion_type="accordion" title="From where are your products shipped?" content_html="

    All orders to the United States and Canada are sent from our warehouse in New York.

    _APENTER_

    Orders shipped to addresses in Europe, South America, and Africa are shipped from our warehouse in Sweden.

    _APENTER_

    Orders shipped to addresses in Asia (excluding China), Oceania, and the Middle East are shipped from our warehouse in Hong Kong.

    _APENTER_

    Orders shipped to addresses in China and India are shipped from our warehouses in China and India respectively.

    "][/ApHtml][ApHtml form_id="form_4659572243700013" accordion_type="accordion" active="1" title="How long does it take to ship internationally?" content_html="

    It usually takes 5-10 business days to arrive in your country however, in some instances, delivery may be delayed depending on your country_APAPOST_s customs.

    "][/ApHtml][ApHtml form_id="form_16524847045825938" accordion_type="accordion" active="1" title="I received a damaged Item, what do I do?" content_html="

    If you could kindly print and fill out this form, and return it along with the damaged item, we will issue you store credit and you can repurchase the item if desired. We strongly suggest including a tracking number with your package, as we are not liable for those that get lost in transit.

    _APENTER_

    Once we receive your package, we will email you with a store credit code in the amount of your item, plus the cost of the shipping return. Please Note that we can only reimburse you a maximum of $10.00 USD if you include a copy of the receipt in your shipment.

    "][/ApHtml][/ApTab][ApTab form_id="form_8645926171488972" id="tab_6064769222365396" css_class="" image="" override_folder="" title="Shopping guides" sub_title=""][ApHtml form_id="form_2305075705341189" accordion_type="accordion" title="How are taxes and duties applied to international orders?" content_html="

    The prices on our website do not include taxes, duties or shipping. Depending where you live, your country’s customs office may impose a few additional charges on your order: import fees, declaration fees, import duties (tariffs) and/or taxes. In some countries, orders below a certain value may not be subject to duties. This is often known as De Minimis value, and is determined by your local customs office. For all online orders — including the purchase of gift cards — all the fees required for customs clearance are the sole responsibility of the customer (that’s you). They will be charged upon arrival.

    _APENTER_

    On rare occasions, customs agents may delay the delivery of packages at their discretion.

    _APENTER_

    The powers that be also require us to state the value of your order (i.e. the price) directly on your package. We know what you’re thinking, and no, we cannot mark any package(s) as a “gift” to help you avoid paying extra fees. (Sorry.)

    _APENTER_

    We has no control over these charges. For more information on customs, duties, taxes and other import charges, please contact your local customs office.

    "][/ApHtml][ApHtml form_id="form_9810748101330425" accordion_type="accordion" active="1" title="I forgot my password, What Should I do?" content_html="

    To re-set your password, follow the _APAPOST_FORGOT PASSWORD_APAPOST_ instructions on the LOG IN page. Please note, for security reasons we are unable to send your old password via email.

    "][/ApHtml][ApHtml form_id="form_7380109318707037" accordion_type="accordion" active="1" title="Will out of stock items be restocked?" content_html="

    If an item is out of stock, I will try to restock it as soon as possible.

    _APENTER_

    If no stock is available, the item will be removed from the website.

    "][/ApHtml][/ApTab][ApTab form_id="form_7275036643535555" id="tab_4585983866035059" css_class="" image="" override_folder="" title="Gift Purchases" sub_title=""][ApHtml form_id="form_12012849787041577" accordion_type="accordion" active="1" title=" Can I send a gift to someone and add a gift message?" content_html="

    Yes, you can send a gift to someone and add a personalised message easily during checkout. All gifts arrive wrapped and your message is printed on a gift card.

    _APENTER_

    All gifts will have prices removed and the receipt will be sent to the purchaser, not the gift recipient.

    _APENTER_

    Take advantage of our free gift wrapping service to send someone special a gorgeous.

    "][/ApHtml][ApHtml form_id="form_8583691438777360" accordion_type="accordion" active="1" title="Can I purchase and use a gift card online?" content_html="

    We do sell gift cards online, but unfortunately, at the moment you can’t redeem gift cards in our online store. If you buy a gift card online, you’ll only be able to redeem it in one of our stores. We are working on a gift card that can be used both online and in store, and we hope to have this available soon.

    _APENTER_

    Gift cards are valid for twelve months (excluding NSW*) from date of issue and can be used in all our stores across Australia but not online as payment. Gift cards can be redeemed for merchandise only and not for cash, another gift card will be issued if total amount is not redeemed. Please note, gift cards are non-refundable, non-transferable and cannot be redeemed for cash. Gift Cards are treated as cash and cannot be replaced if lost or stolen.


    *All gift Cards purchased in NSW up until the 30th March 2019 are valid for 12 months from date of issue. Any Gift Cards purchased in NSW from the 31st March 2019 onwards will be valid for 3 years from date of issue.

    "][/ApHtml][/ApTab][ApTab form_id="form_6529652059070621" id="tab_5506393441969661" css_class="" image="" override_folder="" title="Member Center" sub_title=""][ApHtml form_id="form_7451323182740895" accordion_type="accordion" active="1" title="How do I get coupons?" content_html="

    Register for a customer account on website. Sign up for our weekly deals newsletter at the bottom of the website. Some special activities will also feature coupon giveaways. Coupons are a great way to save money.

    "][/ApHtml][ApHtml form_id="form_9147683190306530" accordion_type="accordion" active="1" title="How do I use my coupons?" content_html="

    Make sure the coupon has not expired (most will show the expiry date in your account). During the checkout process, go to your shopping cart. Enter the full promotion code and click _APQUOT_APPLY_APQUOT_. You can only use one coupon code per order.

    "][/ApHtml][ApHtml form_id="form_8525121306923476" accordion_type="accordion" active="1" title="How can I get more points?" content_html="

    You can get Points in a number of ways: by confirming your email address, writing reviews, uploading images, purchasing products, participating in some of our special promotions, and other methods.

    "][/ApHtml][ApHtml form_id="form_4590756861117829" accordion_type="accordion" active="1" title="How do I use my points?" content_html="

    You can use points at the checkout page: First, sign in to your account, and add all the items you want to your shopping cart. Then click “PROCEED TO CHECKOUT”. When you go to the “Place Your Order” button, our system will show you how many points you can use for this order. Please note you require a minimum of 50 points.

    "][/ApHtml][ApHtml form_id="form_33513266052721085" accordion_type="accordion" active="1" title="How do I use my Gift Card?" content_html="

    Choose Gift Card as your payment method on the checkout page; please ensure the gift card you choose has not expired.

    "][/ApHtml][/ApTab][ApTab form_id="form_4940407173378293" id="tab_9060964011911358" css_class="" image="" override_folder="" title="Other Questions" sub_title=""][ApHtml form_id="form_35246729420509395" accordion_type="accordion" title="What kinds of payment are accepted?" content_html="

    We accept the following forms of secure payment:

    _APENTER_

    (1) PayPal

    _APENTER_

    (2) Credit card via Paypal (Visa, MasterCard, Discover, American Express, etc.) For USA customers only at the moment.

    _APENTER_

    (3) Credit Card Directly

    _APENTER_

    (4) Western Union

    _APENTER_

    (5) Wired Transfer

    _APENTER_

    (6) ZAFUL Gift Cards

    "][/ApHtml][ApHtml form_id="form_28886229170536985" accordion_type="accordion" active="1" title="What are the conditions for campaigns?" content_html="

    The campaigns offered on our official website:

    _APENTER_
      _APENTER_
    • Are only valid for orders made directly on our official website.
    • _APENTER_
    _APENTER_
      _APENTER_
    • Are only valid for a limited amount of time; the campaign/promotion cannot be applied to orders made before or after the campaign period.
    • _APENTER_
    "][/ApHtml][ApHtml form_id="form_5555536712454315" accordion_type="accordion" active="1" title="How do I register?" content_html="

    We recommend that you use your email address as your username, this makes it much easier to remember. Please make sure that your password is at least 6 characters in length. You can easily create your own website by clicking here to register.

    "][/ApHtml][/ApTab][/ApTabs][/ApColumn][/ApRow]]]>
    In the event you wish to cancel your order, please contact us.

    _APENTER_

    Upon receiving your cancellation request, we will reach out to our courier service and request that the package be rerouted back to our warehouse. Once we receive the returned package, we will process the order, issue a full refund to your account, and notify you via email.

    _APENTER_

    Kindly note that at this time we are unable to cancel orders before they are shipped.

    "][/ApHtml][ApHtml form_id="form_39189706612991935" accordion_type="accordion" active="1" title="Can I change my order?" content_html="

    Once an order is submitted, we are unable to change the ordered products or the quantity selected.

    _APENTER_

    In this situation, we suggest you contact us and cancel the incorrect order.

    _APENTER_

    Thereafter, we recommend you place a new order for your desired item(s) on our website at your own convenience.

    "][/ApHtml][ApHtml form_id="form_27310439184804055" class="" accordion_type="accordion" override_folder="" active="1" title="Can I change my delivery address?" sub_title="" content_html="

    If you wish to change your delivery address, please contact us and we will do our best to assist you in this matter.

    _APENTER_

    In the event that we are unable to process the address change directly in our system, usually because the package has already been shipped, we will need to contact our courier to request a change of delivery address.

    _APENTER_

    In order to help you further, we would really appreciate if you could provide us with the following information :

    _APENTER_

    - First and Last name,

    _APENTER_

    - Company name (if needed),

    _APENTER_

    - Street name and number,

    _APENTER_

    - Zip code and City,

    _APENTER_

    - Country,

    _APENTER_

    - Phone number and Email Address.

    _APENTER_

    _APENTER_

    Please be aware that an address change will delay the delivery time. We cannot be held responsible for any delay in delivery due to an address change requested by a customer.

    "][/ApHtml][ApHtml form_id="form_7056014438372757" accordion_type="accordion" active="1" title="When will I receive my order?" content_html="

    We aim to ensure that you receive your order as quickly as possible.

    _APENTER_

    Once your order is successfully submitted, the warehouse then processes your order the following business day. It is then picked, packed, and dispatched. Once it is on its way to you, you will receive an email notification containing your tracking information, along with an estimated delivery date.

    _APENTER_

    Kindly note that orders placed after 11:00 am (EST) are not guaranteed to be shipped the same day. Packages are not transported nor delivered on weekends and local public holidays.

    _APENTER_

    While we always strive to have our orders delivered on time, we acknowledge that the unforeseeable is inevitable. External factors outside and its courier’s control, such as extreme weather conditions and technical failures, are bound to occasionally cause delays, and we ask for your patience and understanding when they do.

    _APENTER_

    Additionally, please note that during promotional campaigns, delivery times may be longer than usual.

    _APENTER_

    Feel free to reach out to us if you have any questions about your order_APAPOST_s status. We_APAPOST_re happy to help!

    "][/ApHtml][ApHtml form_id="form_19660625936395425" accordion_type="accordion" active="1" title="How do I place an order?" content_html="

    To place your order, select the item(s) that you wish to purchase and add it to your shopping cart. Then, proceed to the checkout page where you must fill in your personal information and pay for the order. Make sure to double check that you have filled in your details correctly to ensure that you receive all the necessary info and that your order is delivered without any complications.

    _APENTER_

    If you need any help, we strongly advise you to speak to one of our Customer Service advisors , they will be happy to assist you.

    "][/ApHtml][ApHtml form_id="form_8004733695032317" accordion_type="accordion" active="1" title="Was my order successful?" content_html="

    We have several verification stages when customers place an order, this is done to provide our customers with the highest level of security.

    _APENTER_

    If your order is successful, you should within the next 10 minutes receive an order confirmation via the e-mail address provided by you at the checkout page. If not, please contact us and we can assist you in this matter.

    "][/ApHtml][/ApTab][ApTab form_id="form_1817508486938621" id="tab_5888536289412656" css_class="" image="" override_folder="" title="Return _APAMP_ Exchange" sub_title=""][ApHtml form_id="form_6922604929076382" accordion_type="accordion" title="What is your exchange policy?" content_html="

    Kindly observe that we do not offer a direct exchange service.

    _APENTER_

    In the event you are unsatisfied with your purchase and would like to receive a different product, you are most welcome to send back your purchase for a full refund. We will refund your product(s) for its full value to the account originally used when making your purchase. To ensure that you receive the desired product as fast as possible, we kindly ask you to make a new purchase at your own convenience.

    _APENTER_

    Please note you must send back the item(s) you wish to have refunded within 30 days of receiving it. The product(s) must be unused – in its original packaging with labels and protective stickers intact – and still in the same new condition as when it was received. Products purchased directly from our website must be returned to our warehouse for a refund to be made; product(s) cannot be returned to a local retail store.

    _APENTER_

    If you have paid or received customs fees for the item(s) you wish to return, please contact your local UPS office for information on how to receive a credit or refund, respectively.

    _APENTER_

    The offer of any product(s) purchased during a campaign period will still be honored should you wish to receive another item instead. Please contact us for further information, we’re happy to assist you.

    "][/ApHtml][ApHtml form_id="form_9329625882812304" accordion_type="accordion" active="1" title="What is your return policy?" content_html="

    You have the right to return any/all products you have purchased directly from addons.prestashop.com within 30 days of receiving the item(s) for a full refund.

    _APENTER_

    The product(s) must be unused – in original packaging with labels and protective stickers intact - and still in the same, new condition as when received.

    _APENTER_

    Products purchased directly from addons.prestashop.com can be returned to our warehouse using a pre-paid shipping label, which we will provide. Kindly note that items cannot be returned to a local retail store.

    _APENTER_

    _APENTER_

    Please follow the steps below to return your order:

    _APENTER_
      _APENTER_
    1. _APQUOT_Submit a request_APQUOT_ through the link below
    2. _APENTER_
    3. Select Return as topic and provide a return reason - send email
    4. _APENTER_
    5. You will receive an automatic email with your return instructions
    6. _APENTER_
    7. Follow the instructions and create your return label
    8. _APENTER_
    9. Return your order to us via our courier UPS
    10. _APENTER_
    "][/ApHtml][ApHtml form_id="form_2770709531843399" accordion_type="accordion" active="1" title="How do I exchange my order?" content_html="

    In the event you are unsatisfied with your purchase and would like to receive a different product, you are most welcome to send back your purchase for a full refund. To ensure that you receive the desired product as fast as possible, please place a new purchase at your own convenience. If you wish to return your order, please contact us; we will be happy to provide you with further instructions.

    "][/ApHtml][ApHtml form_id="form_4780503759095453" accordion_type="accordion" active="1" title="How do I return my order?" content_html="

    Please follow the steps below to return your order:

    _APENTER_
      _APENTER_
    1. _APQUOT_Submit a request_APQUOT_ through the link below
    2. _APENTER_
    3. Select Return as topic and provide a return reason - send email
    4. _APENTER_
    5. You will receive an automatic email with your return instructions
    6. _APENTER_
    7. Follow the instructions and create your return label
    8. _APENTER_
    9. Return your order to us via our courier UPS
    10. _APENTER_
    _APENTER_

    _APENTER_

    _APENTER_

    TERMS:

    _APENTER_

    Please note, you will need to send back your order within 30 days from receiving it. We will not accept any returns after this period. Your item must be in the same condition as when you received it.

    _APENTER_

    Kindly note that we do not offer the service of exchanging your items. If you wish to receive an exchange, please send back your order and place a new one at your own convenience. Any offer or campaign offered during the original purchase will still be honored when placing a new order - please contact us for more information.

    "][/ApHtml][ApHtml form_id="form_8086660703370280" accordion_type="accordion" active="1" title="Have you received my return?" content_html="

    Once your returning package has been received at our warehouse, it is processed and inspected before we proceed in approving or disapproving the respective return.

    _APENTER_

    We appreciate your understanding that, although we work as quickly as possible, it is possible that this process may take several business days to complete.

    _APENTER_

    Kindly observe that weis not responsible for any items lost during the return shipping if you choose to return the package by yourself. Therefore, we strongly recommend that you return your order using the return label and instructions provided by our customer service. Please submit a request via the link below to receive the necessary details in order to make your return.

    "][/ApHtml][ApHtml form_id="form_9840562733889424" accordion_type="accordion" active="1" title="When will I receive my refund?" content_html="

    Once your returning package has been received at our warehouse, it is processed and inspected before we proceed in approving or disapproving the respective return.

    _APENTER_

    The product(s) must be sent back within 30 days of receiving it. However, it is not an issue if it is received at our warehouse after this period. It must be unused – in its original packaging with labels and protective stickers intact - and still in the same new condition as when the watch was received.

    _APENTER_

    If your return is approved, a full refund will be issued for your order. Once a refund is issued on our system, you can expect it to be visible in your account within 5-10 business days.

    "][/ApHtml][/ApTab][ApTab form_id="form_4020772011054762" id="tab_8765137751205977" css_class="" image="" override_folder="" title="Payment _APAMP_ Security" sub_title=""][ApHtml form_id="form_7750919623855290" accordion_type="accordion" title="What payment options do you accept?" content_html="

    We accepts American Express, Diners, Discover, Maestro, MasterCard, Visa, PayPal as well as various other local debit cards and invoicing options.

    _APENTER_

    We also offer the payment method Cash on Delivery.

    _APENTER_

    All available payment options for each country are displayed at the checkout, once you have entered the country of delivery.

    "][/ApHtml][ApHtml form_id="form_3662239134614965" accordion_type="accordion" active="1" title="Which currency is displayed on the website?" content_html="

    The prices visible on our US and websites are stated in USD. These prices exclude possible duties and taxes which are either added or deducted at the checkout.

    We is not responsible for any discrepancies in currency values or conversation rates that your bank or credit card company may use when purchasing from our website. Should you have questions concerning this, please contact your bank or credit card company, respectively.

    "][/ApHtml][ApHtml form_id="form_9134790750075268" accordion_type="accordion" active="1" title="Do you store my payment information?" content_html="

    We does not receive or store any payment information. All transactions are handled directly by Adyen, our payment service provider. Your credit card details are sent directly to the bank and cannot be read or accessed by any parties other than your bank.

    "][/ApHtml][/ApTab][ApTab form_id="form_8158703749241914" id="tab_5736302845825436" css_class="" image="" override_folder="" title="Shipping" sub_title=""][ApHtml form_id="form_9269147811072614" accordion_type="accordion" title="From where are your products shipped?" content_html="

    All orders to the United States and Canada are sent from our warehouse in New York.

    _APENTER_

    Orders shipped to addresses in Europe, South America, and Africa are shipped from our warehouse in Sweden.

    _APENTER_

    Orders shipped to addresses in Asia (excluding China), Oceania, and the Middle East are shipped from our warehouse in Hong Kong.

    _APENTER_

    Orders shipped to addresses in China and India are shipped from our warehouses in China and India respectively.

    "][/ApHtml][ApHtml form_id="form_4659572243700013" accordion_type="accordion" active="1" title="How long does it take to ship internationally?" content_html="

    It usually takes 5-10 business days to arrive in your country however, in some instances, delivery may be delayed depending on your country_APAPOST_s customs.

    "][/ApHtml][ApHtml form_id="form_16524847045825938" accordion_type="accordion" active="1" title="I received a damaged Item, what do I do?" content_html="

    If you could kindly print and fill out this form, and return it along with the damaged item, we will issue you store credit and you can repurchase the item if desired. We strongly suggest including a tracking number with your package, as we are not liable for those that get lost in transit.

    _APENTER_

    Once we receive your package, we will email you with a store credit code in the amount of your item, plus the cost of the shipping return. Please Note that we can only reimburse you a maximum of $10.00 USD if you include a copy of the receipt in your shipment.

    "][/ApHtml][/ApTab][ApTab form_id="form_8645926171488972" id="tab_6064769222365396" css_class="" image="" override_folder="" title="Shopping guides" sub_title=""][ApHtml form_id="form_2305075705341189" accordion_type="accordion" title="How are taxes and duties applied to international orders?" content_html="

    The prices on our website do not include taxes, duties or shipping. Depending where you live, your country’s customs office may impose a few additional charges on your order: import fees, declaration fees, import duties (tariffs) and/or taxes. In some countries, orders below a certain value may not be subject to duties. This is often known as De Minimis value, and is determined by your local customs office. For all online orders — including the purchase of gift cards — all the fees required for customs clearance are the sole responsibility of the customer (that’s you). They will be charged upon arrival.

    _APENTER_

    On rare occasions, customs agents may delay the delivery of packages at their discretion.

    _APENTER_

    The powers that be also require us to state the value of your order (i.e. the price) directly on your package. We know what you’re thinking, and no, we cannot mark any package(s) as a “gift” to help you avoid paying extra fees. (Sorry.)

    _APENTER_

    We has no control over these charges. For more information on customs, duties, taxes and other import charges, please contact your local customs office.

    "][/ApHtml][ApHtml form_id="form_9810748101330425" accordion_type="accordion" active="1" title="I forgot my password, What Should I do?" content_html="

    To re-set your password, follow the _APAPOST_FORGOT PASSWORD_APAPOST_ instructions on the LOG IN page. Please note, for security reasons we are unable to send your old password via email.

    "][/ApHtml][ApHtml form_id="form_7380109318707037" accordion_type="accordion" active="1" title="Will out of stock items be restocked?" content_html="

    If an item is out of stock, I will try to restock it as soon as possible.

    _APENTER_

    If no stock is available, the item will be removed from the website.

    "][/ApHtml][/ApTab][ApTab form_id="form_7275036643535555" id="tab_4585983866035059" css_class="" image="" override_folder="" title="Gift Purchases" sub_title=""][ApHtml form_id="form_12012849787041577" accordion_type="accordion" active="1" title=" Can I send a gift to someone and add a gift message?" content_html="

    Yes, you can send a gift to someone and add a personalised message easily during checkout. All gifts arrive wrapped and your message is printed on a gift card.

    _APENTER_

    All gifts will have prices removed and the receipt will be sent to the purchaser, not the gift recipient.

    _APENTER_

    Take advantage of our free gift wrapping service to send someone special a gorgeous.

    "][/ApHtml][ApHtml form_id="form_8583691438777360" accordion_type="accordion" active="1" title="Can I purchase and use a gift card online?" content_html="

    We do sell gift cards online, but unfortunately, at the moment you can’t redeem gift cards in our online store. If you buy a gift card online, you’ll only be able to redeem it in one of our stores. We are working on a gift card that can be used both online and in store, and we hope to have this available soon.

    _APENTER_

    Gift cards are valid for twelve months (excluding NSW*) from date of issue and can be used in all our stores across Australia but not online as payment. Gift cards can be redeemed for merchandise only and not for cash, another gift card will be issued if total amount is not redeemed. Please note, gift cards are non-refundable, non-transferable and cannot be redeemed for cash. Gift Cards are treated as cash and cannot be replaced if lost or stolen.


    *All gift Cards purchased in NSW up until the 30th March 2019 are valid for 12 months from date of issue. Any Gift Cards purchased in NSW from the 31st March 2019 onwards will be valid for 3 years from date of issue.

    "][/ApHtml][/ApTab][ApTab form_id="form_6529652059070621" id="tab_5506393441969661" css_class="" image="" override_folder="" title="Member Center" sub_title=""][ApHtml form_id="form_7451323182740895" accordion_type="accordion" active="1" title="How do I get coupons?" content_html="

    Register for a customer account on website. Sign up for our weekly deals newsletter at the bottom of the website. Some special activities will also feature coupon giveaways. Coupons are a great way to save money.

    "][/ApHtml][ApHtml form_id="form_9147683190306530" accordion_type="accordion" active="1" title="How do I use my coupons?" content_html="

    Make sure the coupon has not expired (most will show the expiry date in your account). During the checkout process, go to your shopping cart. Enter the full promotion code and click _APQUOT_APPLY_APQUOT_. You can only use one coupon code per order.

    "][/ApHtml][ApHtml form_id="form_8525121306923476" accordion_type="accordion" active="1" title="How can I get more points?" content_html="

    You can get Points in a number of ways: by confirming your email address, writing reviews, uploading images, purchasing products, participating in some of our special promotions, and other methods.

    "][/ApHtml][ApHtml form_id="form_4590756861117829" accordion_type="accordion" active="1" title="How do I use my points?" content_html="

    You can use points at the checkout page: First, sign in to your account, and add all the items you want to your shopping cart. Then click “PROCEED TO CHECKOUT”. When you go to the “Place Your Order” button, our system will show you how many points you can use for this order. Please note you require a minimum of 50 points.

    "][/ApHtml][ApHtml form_id="form_33513266052721085" accordion_type="accordion" active="1" title="How do I use my Gift Card?" content_html="

    Choose Gift Card as your payment method on the checkout page; please ensure the gift card you choose has not expired.

    "][/ApHtml][/ApTab][ApTab form_id="form_4940407173378293" id="tab_9060964011911358" css_class="" image="" override_folder="" title="Other Questions" sub_title=""][ApHtml form_id="form_35246729420509395" accordion_type="accordion" title="What kinds of payment are accepted?" content_html="

    We accept the following forms of secure payment:

    _APENTER_

    (1) PayPal

    _APENTER_

    (2) Credit card via Paypal (Visa, MasterCard, Discover, American Express, etc.) For USA customers only at the moment.

    _APENTER_

    (3) Credit Card Directly

    _APENTER_

    (4) Western Union

    _APENTER_

    (5) Wired Transfer

    _APENTER_

    (6) ZAFUL Gift Cards

    "][/ApHtml][ApHtml form_id="form_28886229170536985" accordion_type="accordion" active="1" title="What are the conditions for campaigns?" content_html="

    The campaigns offered on our official website:

    _APENTER_
      _APENTER_
    • Are only valid for orders made directly on our official website.
    • _APENTER_
    _APENTER_
      _APENTER_
    • Are only valid for a limited amount of time; the campaign/promotion cannot be applied to orders made before or after the campaign period.
    • _APENTER_
    "][/ApHtml][ApHtml form_id="form_5555536712454315" accordion_type="accordion" active="1" title="How do I register?" content_html="

    We recommend that you use your email address as your username, this makes it much easier to remember. Please make sure that your password is at least 6 characters in length. You can easily create your own website by clicking here to register.

    "][/ApHtml][/ApTab][/ApTabs][/ApColumn][/ApRow]]]>
    1
    +
    + 21 + + 290TEAM MEMBERS _APENTER_

    OUR CREATIVE TEAM

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit. Magni sequi dolorum voluptates tus.

    "][/ApHtml][/ApColumn][ApColumn form_id="form_9752814820465964" xl="2" lg="2" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_7053424292062008" container="container" class="row box-outteam" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_29865703278454635" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_7166142772021428" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_2.jpg" description="

    JOHN DOE

    _APENTER_

    CEO

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_6697677003287556" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_3.jpg" description="

    KENVIL

    _APENTER_

    Designer

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][ApColumn form_id="form_9257356180172536" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_15501303751837892" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_5.jpg" description="

    ALEX

    _APENTER_

    MANAGER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_5641969376105913" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_6.jpg" description="

    TOM DOE

    _APENTER_

    SALE

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][ApColumn form_id="form_6408976074537568" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_1448629491978716" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_7.jpg" description="

    EDOVEL

    _APENTER_

    LEADER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_22641822633469835" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_4.jpg" description="

    ANTONI

    _APENTER_

    ORDER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][/ApRow]]]>
    TEAM MEMBERS _APENTER_

    OUR CREATIVE TEAM

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit. Magni sequi dolorum voluptates tus.

    "][/ApHtml][/ApColumn][ApColumn form_id="form_9752814820465964" xl="2" lg="2" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_7053424292062008" container="container" class="row box-outteam" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_29865703278454635" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_7166142772021428" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_2.jpg" description="

    JOHN DOE

    _APENTER_

    CEO

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_6697677003287556" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_3.jpg" description="

    KENVIL

    _APENTER_

    Designer

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][ApColumn form_id="form_9257356180172536" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_15501303751837892" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_5.jpg" description="

    ALEX

    _APENTER_

    MANAGER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_5641969376105913" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_6.jpg" description="

    TOM DOE

    _APENTER_

    SALE

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][ApColumn form_id="form_6408976074537568" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_1448629491978716" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_7.jpg" description="

    EDOVEL

    _APENTER_

    LEADER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_22641822633469835" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_4.jpg" description="

    ANTONI

    _APENTER_

    ORDER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][/ApRow]]]>
    TEAM MEMBERS _APENTER_

    OUR CREATIVE TEAM

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit. Magni sequi dolorum voluptates tus.

    "][/ApHtml][/ApColumn][ApColumn form_id="form_9752814820465964" xl="2" lg="2" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_7053424292062008" container="container" class="row box-outteam" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_29865703278454635" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_7166142772021428" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_2.jpg" description="

    JOHN DOE

    _APENTER_

    CEO

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_6697677003287556" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_3.jpg" description="

    KENVIL

    _APENTER_

    Designer

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][ApColumn form_id="form_9257356180172536" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_15501303751837892" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_5.jpg" description="

    ALEX

    _APENTER_

    MANAGER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_5641969376105913" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_6.jpg" description="

    TOM DOE

    _APENTER_

    SALE

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][ApColumn form_id="form_6408976074537568" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_1448629491978716" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_7.jpg" description="

    EDOVEL

    _APENTER_

    LEADER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_22641822633469835" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_4.jpg" description="

    ANTONI

    _APENTER_

    ORDER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][/ApRow]]]>
    TEAM MEMBERS _APENTER_

    OUR CREATIVE TEAM

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit. Magni sequi dolorum voluptates tus.

    "][/ApHtml][/ApColumn][ApColumn form_id="form_9752814820465964" xl="2" lg="2" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_7053424292062008" container="container" class="row box-outteam" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_29865703278454635" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_7166142772021428" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_2.jpg" description="

    JOHN DOE

    _APENTER_

    CEO

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_6697677003287556" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_3.jpg" description="

    KENVIL

    _APENTER_

    Designer

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][ApColumn form_id="form_9257356180172536" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_15501303751837892" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_5.jpg" description="

    ALEX

    _APENTER_

    MANAGER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_5641969376105913" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_6.jpg" description="

    TOM DOE

    _APENTER_

    SALE

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][ApColumn form_id="form_6408976074537568" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_1448629491978716" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_7.jpg" description="

    EDOVEL

    _APENTER_

    LEADER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_22641822633469835" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_4.jpg" description="

    ANTONI

    _APENTER_

    ORDER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][/ApRow]]]>
    TEAM MEMBERS _APENTER_

    OUR CREATIVE TEAM

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit. Magni sequi dolorum voluptates tus.

    "][/ApHtml][/ApColumn][ApColumn form_id="form_9752814820465964" xl="2" lg="2" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_7053424292062008" container="container" class="row box-outteam" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_29865703278454635" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_7166142772021428" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_2.jpg" description="

    JOHN DOE

    _APENTER_

    CEO

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_6697677003287556" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_3.jpg" description="

    KENVIL

    _APENTER_

    Designer

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][ApColumn form_id="form_9257356180172536" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_15501303751837892" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_5.jpg" description="

    ALEX

    _APENTER_

    MANAGER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_5641969376105913" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_6.jpg" description="

    TOM DOE

    _APENTER_

    SALE

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][ApColumn form_id="form_6408976074537568" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_1448629491978716" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_7.jpg" description="

    EDOVEL

    _APENTER_

    LEADER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_22641822633469835" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_4.jpg" description="

    ANTONI

    _APENTER_

    ORDER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][/ApRow]]]>
    TEAM MEMBERS _APENTER_

    OUR CREATIVE TEAM

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit. Magni sequi dolorum voluptates tus.

    "][/ApHtml][/ApColumn][ApColumn form_id="form_9752814820465964" xl="2" lg="2" md="12" sm="12" xs="12" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][/ApColumn][/ApRow][ApRow form_id="form_7053424292062008" container="container" class="row box-outteam" bg_config="boxed" bg_type="normal" bg_repeat="no-repeat" parallax_speed="0.1" parallax_axis="both" parallax_strength="0.5" parallax_rid="0.5" parallax_hoffsets="0.1" parallax_voffsets="0.1" specific_type="all" active="1" controller_pages="" controller_id=""][ApColumn form_id="form_29865703278454635" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_7166142772021428" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_2.jpg" description="

    JOHN DOE

    _APENTER_

    CEO

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_6697677003287556" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_3.jpg" description="

    KENVIL

    _APENTER_

    Designer

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][ApColumn form_id="form_9257356180172536" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_15501303751837892" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_5.jpg" description="

    ALEX

    _APENTER_

    MANAGER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_5641969376105913" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_6.jpg" description="

    TOM DOE

    _APENTER_

    SALE

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][ApColumn form_id="form_6408976074537568" xl="4" lg="4" md="4" sm="4" xs="4" sp="12" specific_type="all" active="1" controller_pages="" controller_id=""][ApImage form_id="form_1448629491978716" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_7.jpg" description="

    EDOVEL

    _APENTER_

    LEADER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][ApImage form_id="form_22641822633469835" animation="none" animation_delay="0.5" is_open="0" width="100%" height="auto" image="team_4.jpg" description="

    ANTONI

    _APENTER_

    ORDER

    _APENTER_

    Lorem ipsum dolor sit amet, sectetur adipisicing elit. Officiis tempore, nulla magni sequi dolorum voluptates tus quisquam perspiciatis voluptatibus minus nisi tenetur! Nemo, nam, odit.

    "][/ApImage][/ApColumn][/ApRow]]]>
    2
    +
    + 31 + + 3003 + + 41 + + 3704 + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/at_movic/samples/blockgrouptop.xml b/themes/at_movic/samples/blockgrouptop.xml new file mode 100644 index 00000000..e726e676 --- /dev/null +++ b/themes/at_movic/samples/blockgrouptop.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/themes/at_movic/samples/index.php b/themes/at_movic/samples/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/samples/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/samples/leoblog.xml b/themes/at_movic/samples/leoblog.xml new file mode 100644 index 00000000..707f9270 --- /dev/null +++ b/themes/at_movic/samples/leoblog.xml @@ -0,0 +1,251 @@ + + + + + + + + + + + + + + + + 100000<en><![CDATA[Root]]></en><fr><![CDATA[Root]]></fr><de><![CDATA[Root]]></de><it><![CDATA[Root]]></it><es><![CDATA[Root]]></es><ar><![CDATA[Root]]></ar> + 12111000<en><![CDATA[Category 1]]></en><fr><![CDATA[Category 1]]></fr><de><![CDATA[Category 1]]></de><it><![CDATA[Category 1]]></it><es><![CDATA[Category 1]]></es><ar><![CDATA[Category 1]]></ar>Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    + 131221000<en><![CDATA[Sub Category 1]]></en><fr><![CDATA[Sub Category 1]]></fr><de><![CDATA[Sub Category 1]]></de><it><![CDATA[Sub Category 1]]></it><es><![CDATA[Sub Category 1]]></es><ar><![CDATA[Sub Category 1]]></ar>Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    + + 24130110140]]>Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    +

    +

    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    + + 9241 + 10241 +
    + 251311101109Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae. Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae. Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    +

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    ]]>
    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae. Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae. Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    +

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    ]]>
    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae. Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae. Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    +

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    ]]>
    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae. Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae. Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    +

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    ]]>
    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae. Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae. Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    +

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    ]]>
    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae. Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae. Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    +

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    ]]>
    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus

    ]]>
    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus

    ]]>
    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus

    ]]>
    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus

    ]]>
    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus

    ]]>
    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus

    ]]>
    + +
    + 26132100117Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare.

    ]]>
    + +
    + 271331001122Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum. Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum. Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum. Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum. Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum. Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum. Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare.

    ]]>
    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare.

    ]]>
    + +
    + 28134100186Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Commodo laoreet semper tincidunt lorem Vestibulum nunc at In Curabitur magna. Euismod euismod Suspendisse tortor ante adipiscing risus Aenean Lorem vitae id. Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor Aenean nulla lacinia Nullam elit vel vel. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh. Morbi condimentum molestie Nam enim odio sodales pretium eros sem pellentesque. Sit tellus Integer elit egestas lacus turpis id auctor nascetur ut. Ac elit vitae.

    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Commodo laoreet semper tincidunt lorem Vestibulum nunc at In Curabitur magna. Euismod euismod Suspendisse tortor ante adipiscing risus Aenean Lorem vitae id. Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor Aenean nulla lacinia Nullam elit vel vel. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh. Morbi condimentum molestie Nam enim odio sodales pretium eros sem pellentesque. Sit tellus Integer elit egestas lacus turpis id auctor nascetur ut. Ac elit vitae.

    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Commodo laoreet semper tincidunt lorem Vestibulum nunc at In Curabitur magna. Euismod euismod Suspendisse tortor ante adipiscing risus Aenean Lorem vitae id. Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor Aenean nulla lacinia Nullam elit vel vel. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh. Morbi condimentum molestie Nam enim odio sodales pretium eros sem pellentesque. Sit tellus Integer elit egestas lacus turpis id auctor nascetur ut. Ac elit vitae.

    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Commodo laoreet semper tincidunt lorem Vestibulum nunc at In Curabitur magna. Euismod euismod Suspendisse tortor ante adipiscing risus Aenean Lorem vitae id. Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor Aenean nulla lacinia Nullam elit vel vel. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh. Morbi condimentum molestie Nam enim odio sodales pretium eros sem pellentesque. Sit tellus Integer elit egestas lacus turpis id auctor nascetur ut. Ac elit vitae.

    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Commodo laoreet semper tincidunt lorem Vestibulum nunc at In Curabitur magna. Euismod euismod Suspendisse tortor ante adipiscing risus Aenean Lorem vitae id. Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor Aenean nulla lacinia Nullam elit vel vel. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh. Morbi condimentum molestie Nam enim odio sodales pretium eros sem pellentesque. Sit tellus Integer elit egestas lacus turpis id auctor nascetur ut. Ac elit vitae.

    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Commodo laoreet semper tincidunt lorem Vestibulum nunc at In Curabitur magna. Euismod euismod Suspendisse tortor ante adipiscing risus Aenean Lorem vitae id. Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor Aenean nulla lacinia Nullam elit vel vel. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh. Morbi condimentum molestie Nam enim odio sodales pretium eros sem pellentesque. Sit tellus Integer elit egestas lacus turpis id auctor nascetur ut. Ac elit vitae.

    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh.

    ]]>
    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh.

    ]]>
    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh.

    ]]>
    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh.

    ]]>
    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh.

    ]]>
    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh.

    ]]>
    + +
    + 29135100123Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Commodo laoreet semper tincidunt lorem Vestibulum nunc at In Curabitur magna. Euismod euismod Suspendisse tortor ante adipiscing risus Aenean Lorem vitae id. Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor Aenean nulla lacinia Nullam elit vel vel. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    +

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    +

    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh. Morbi condimentum molestie Nam enim odio sodales pretium eros sem pellentesque. Sit tellus Integer elit egestas lacus turpis id auctor nascetur ut. Ac elit vitae.

    +

    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Commodo laoreet semper tincidunt lorem Vestibulum nunc at In Curabitur magna. Euismod euismod Suspendisse tortor ante adipiscing risus Aenean Lorem vitae id. Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor Aenean nulla lacinia Nullam elit vel vel. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    +

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    +

    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh. Morbi condimentum molestie Nam enim odio sodales pretium eros sem pellentesque. Sit tellus Integer elit egestas lacus turpis id auctor nascetur ut. Ac elit vitae.

    +

    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Commodo laoreet semper tincidunt lorem Vestibulum nunc at In Curabitur magna. Euismod euismod Suspendisse tortor ante adipiscing risus Aenean Lorem vitae id. Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor Aenean nulla lacinia Nullam elit vel vel. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    +

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    +

    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh. Morbi condimentum molestie Nam enim odio sodales pretium eros sem pellentesque. Sit tellus Integer elit egestas lacus turpis id auctor nascetur ut. Ac elit vitae.

    +

    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Commodo laoreet semper tincidunt lorem Vestibulum nunc at In Curabitur magna. Euismod euismod Suspendisse tortor ante adipiscing risus Aenean Lorem vitae id. Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor Aenean nulla lacinia Nullam elit vel vel. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    +

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    +

    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh. Morbi condimentum molestie Nam enim odio sodales pretium eros sem pellentesque. Sit tellus Integer elit egestas lacus turpis id auctor nascetur ut. Ac elit vitae.

    +

    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Commodo laoreet semper tincidunt lorem Vestibulum nunc at In Curabitur magna. Euismod euismod Suspendisse tortor ante adipiscing risus Aenean Lorem vitae id. Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor Aenean nulla lacinia Nullam elit vel vel. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    +

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    +

    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh. Morbi condimentum molestie Nam enim odio sodales pretium eros sem pellentesque. Sit tellus Integer elit egestas lacus turpis id auctor nascetur ut. Ac elit vitae.

    +

    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    Commodo laoreet semper tincidunt lorem Vestibulum nunc at In Curabitur magna. Euismod euismod Suspendisse tortor ante adipiscing risus Aenean Lorem vitae id. Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor Aenean nulla lacinia Nullam elit vel vel. At risus pretium urna tortor metus fringilla interdum mauris tempor congue.

    +

    Donec tellus Nulla lorem Nullam elit id ut elit feugiat lacus. Congue eget dapibus congue tincidunt senectus nibh risus Phasellus tristique justo. Justo Pellentesque Donec lobortis faucibus Vestibulum Praesent mauris volutpat vitae metus. Ipsum cursus vestibulum at interdum Vivamus nunc fringilla Curabitur ac quis. Nam lacinia wisi tortor orci quis vitae.

    +

    Sed mauris Pellentesque elit Aliquam at lacus interdum nascetur elit ipsum. Enim ipsum hendrerit Suspendisse turpis laoreet fames tempus ligula pede ac. Et Lorem penatibus orci eu ultrices egestas Nam quam Vivamus nibh. Morbi condimentum molestie Nam enim odio sodales pretium eros sem pellentesque. Sit tellus Integer elit egestas lacus turpis id auctor nascetur ut. Ac elit vitae.

    +

    Mi vitae magnis Fusce laoreet nibh felis porttitor laoreet Vestibulum faucibus. At Nulla id tincidunt ut sed semper vel Lorem condimentum ornare. Laoreet Vestibulum lacinia massa a commodo habitasse velit Vestibulum tincidunt In. Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum.

    ]]>
    Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum

    ]]>
    Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum

    ]]>
    Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum

    ]]>
    Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum

    ]]>
    Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum

    ]]>
    Turpis at eleifend leo mi elit Aenean porta ac sed faucibus. Nunc urna Morbi fringilla vitae orci convallis condimentum auctor sit dui. Urna pretium elit mauris cursus Curabitur at elit Vestibulum

    ]]>
    + +
    + 30136110133[ApSC sc_key=sc1531218817][/ApSC]

    +

    Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quas.

    +

    Suspendisse posuere, diam in bibendum lobortis, turpis ipsum aliquam risus, sit amet dictum ligula lorem non nisl. Ut vitae nibh id massa vulputate euismod ut quis justo. Ut bibendum sem at massa lacinia, eget elementum ante consectetur. Nulla id pharetra dui, at rhoncus urna. Maecenas non porttitor purus. Nullam ullamcorper nisl quis ornare molestie.

    +

    Etiam eget erat est. Phasellus elit justo, mattis non lorem non, aliquam aliquam leo. Sed fermentum consectetur magna, eget semper ante. Aliquam scelerisque justo velit. Fusce cursus blandit dolor, in sodales urna vulputate lobortis. Nulla ut tellus turpis. Nullam lacus sem, volutpat id odio sed, cursus tristique eros. Duis at pellentesque magna. Donec magna nisi, vulputate ac nulla eu, ultricies tincidunt tellus. Nunc tincidunt sem urna, nec venenatis libero vehicula ut.

    +

    Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur faucibus aliquam pulvinar. Vivamus mattis volutpat erat, et congue nisi semper quis. Cras vehicula dignissim libero in elementum. Mauris sit amet dolor justo. Morbi consequat velit vel est fermentum euismod. Curabitur in magna augue.

    ]]>
    Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quas.

    +

    Suspendisse posuere, diam in bibendum lobortis, turpis ipsum aliquam risus, sit amet dictum ligula lorem non nisl. Ut vitae nibh id massa vulputate euismod ut quis justo. Ut bibendum sem at massa lacinia, eget elementum ante consectetur. Nulla id pharetra dui, at rhoncus urna. Maecenas non porttitor purus. Nullam ullamcorper nisl quis ornare molestie.

    +

    Etiam eget erat est. Phasellus elit justo, mattis non lorem non, aliquam aliquam leo. Sed fermentum consectetur magna, eget semper ante. Aliquam scelerisque justo velit. Fusce cursus blandit dolor, in sodales urna vulputate lobortis. Nulla ut tellus turpis. Nullam lacus sem, volutpat id odio sed, cursus tristique eros. Duis at pellentesque magna. Donec magna nisi, vulputate ac nulla eu, ultricies tincidunt tellus. Nunc tincidunt sem urna, nec venenatis libero vehicula ut.

    +

    Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur faucibus aliquam pulvinar. Vivamus mattis volutpat erat, et congue nisi semper quis. Cras vehicula dignissim libero in elementum. Mauris sit amet dolor justo. Morbi consequat velit vel est fermentum euismod. Curabitur in magna augue.

    ]]>
    Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quas.

    +

    Suspendisse posuere, diam in bibendum lobortis, turpis ipsum aliquam risus, sit amet dictum ligula lorem non nisl. Ut vitae nibh id massa vulputate euismod ut quis justo. Ut bibendum sem at massa lacinia, eget elementum ante consectetur. Nulla id pharetra dui, at rhoncus urna. Maecenas non porttitor purus. Nullam ullamcorper nisl quis ornare molestie.

    +

    Etiam eget erat est. Phasellus elit justo, mattis non lorem non, aliquam aliquam leo. Sed fermentum consectetur magna, eget semper ante. Aliquam scelerisque justo velit. Fusce cursus blandit dolor, in sodales urna vulputate lobortis. Nulla ut tellus turpis. Nullam lacus sem, volutpat id odio sed, cursus tristique eros. Duis at pellentesque magna. Donec magna nisi, vulputate ac nulla eu, ultricies tincidunt tellus. Nunc tincidunt sem urna, nec venenatis libero vehicula ut.

    +

    Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur faucibus aliquam pulvinar. Vivamus mattis volutpat erat, et congue nisi semper quis. Cras vehicula dignissim libero in elementum. Mauris sit amet dolor justo. Morbi consequat velit vel est fermentum euismod. Curabitur in magna augue.

    ]]>
    Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quas.

    +

    Suspendisse posuere, diam in bibendum lobortis, turpis ipsum aliquam risus, sit amet dictum ligula lorem non nisl. Ut vitae nibh id massa vulputate euismod ut quis justo. Ut bibendum sem at massa lacinia, eget elementum ante consectetur. Nulla id pharetra dui, at rhoncus urna. Maecenas non porttitor purus. Nullam ullamcorper nisl quis ornare molestie.

    +

    Etiam eget erat est. Phasellus elit justo, mattis non lorem non, aliquam aliquam leo. Sed fermentum consectetur magna, eget semper ante. Aliquam scelerisque justo velit. Fusce cursus blandit dolor, in sodales urna vulputate lobortis. Nulla ut tellus turpis. Nullam lacus sem, volutpat id odio sed, cursus tristique eros. Duis at pellentesque magna. Donec magna nisi, vulputate ac nulla eu, ultricies tincidunt tellus. Nunc tincidunt sem urna, nec venenatis libero vehicula ut.

    +

    Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur faucibus aliquam pulvinar. Vivamus mattis volutpat erat, et congue nisi semper quis. Cras vehicula dignissim libero in elementum. Mauris sit amet dolor justo. Morbi consequat velit vel est fermentum euismod. Curabitur in magna augue.

    ]]>
    Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quas.

    +

    Suspendisse posuere, diam in bibendum lobortis, turpis ipsum aliquam risus, sit amet dictum ligula lorem non nisl. Ut vitae nibh id massa vulputate euismod ut quis justo. Ut bibendum sem at massa lacinia, eget elementum ante consectetur. Nulla id pharetra dui, at rhoncus urna. Maecenas non porttitor purus. Nullam ullamcorper nisl quis ornare molestie.

    +

    Etiam eget erat est. Phasellus elit justo, mattis non lorem non, aliquam aliquam leo. Sed fermentum consectetur magna, eget semper ante. Aliquam scelerisque justo velit. Fusce cursus blandit dolor, in sodales urna vulputate lobortis. Nulla ut tellus turpis. Nullam lacus sem, volutpat id odio sed, cursus tristique eros. Duis at pellentesque magna. Donec magna nisi, vulputate ac nulla eu, ultricies tincidunt tellus. Nunc tincidunt sem urna, nec venenatis libero vehicula ut.

    +

    Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur faucibus aliquam pulvinar. Vivamus mattis volutpat erat, et congue nisi semper quis. Cras vehicula dignissim libero in elementum. Mauris sit amet dolor justo. Morbi consequat velit vel est fermentum euismod. Curabitur in magna augue.

    ]]>
    Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quas.

    +

    Suspendisse posuere, diam in bibendum lobortis, turpis ipsum aliquam risus, sit amet dictum ligula lorem non nisl. Ut vitae nibh id massa vulputate euismod ut quis justo. Ut bibendum sem at massa lacinia, eget elementum ante consectetur. Nulla id pharetra dui, at rhoncus urna. Maecenas non porttitor purus. Nullam ullamcorper nisl quis ornare molestie.

    +

    Etiam eget erat est. Phasellus elit justo, mattis non lorem non, aliquam aliquam leo. Sed fermentum consectetur magna, eget semper ante. Aliquam scelerisque justo velit. Fusce cursus blandit dolor, in sodales urna vulputate lobortis. Nulla ut tellus turpis. Nullam lacus sem, volutpat id odio sed, cursus tristique eros. Duis at pellentesque magna. Donec magna nisi, vulputate ac nulla eu, ultricies tincidunt tellus. Nunc tincidunt sem urna, nec venenatis libero vehicula ut.

    +

    Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur faucibus aliquam pulvinar. Vivamus mattis volutpat erat, et congue nisi semper quis. Cras vehicula dignissim libero in elementum. Mauris sit amet dolor justo. Morbi consequat velit vel est fermentum euismod. Curabitur in magna augue.

    ]]>
    Suspendisse posuere, diam in bibendum lobortis, turpis ipsum aliquam risus, sit amet dictum ligula lorem non nisl Urna pretium elit mauris cursus Curabitur at elit Vestibulum

    ]]>
    Suspendisse posuere, diam in bibendum lobortis, turpis ipsum aliquam risus, sit amet dictum ligula lorem non nisl Urna pretium elit mauris cursus Curabitur at elit Vestibulum

    ]]>
    Suspendisse posuere, diam in bibendum lobortis, turpis ipsum aliquam risus, sit amet dictum ligula lorem non nisl Urna pretium elit mauris cursus Curabitur at elit Vestibulum

    ]]>
    Suspendisse posuere, diam in bibendum lobortis, turpis ipsum aliquam risus, sit amet dictum ligula lorem non nisl Urna pretium elit mauris cursus Curabitur at elit Vestibulum

    ]]>
    Suspendisse posuere, diam in bibendum lobortis, turpis ipsum aliquam risus, sit amet dictum ligula lorem non nisl Urna pretium elit mauris cursus Curabitur at elit Vestibulum

    ]]>
    Suspendisse posuere, diam in bibendum lobortis, turpis ipsum aliquam risus, sit amet dictum ligula lorem non nisl Urna pretium elit mauris cursus Curabitur at elit Vestibulum

    ]]>
    + +
    +
    + 141221010<en><![CDATA[Sub Category 2]]></en><fr><![CDATA[Sub Category 2]]></fr><de><![CDATA[Sub Category 2]]></de><it><![CDATA[Sub Category 2]]></it><es><![CDATA[Sub Category 2]]></es><ar><![CDATA[Sub Category 2]]></ar>Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    Odio ut pretium ligula quam Vestibulum consequat convallis fringilla Vestibulum nulla. Accumsan morbi tristique auctor. At risus pretium urna tortor metus fringilla interdum mauris tempor congue

    ]]>
    + +
    + +
    + +
    +
    + + + + + + + + + + + + + + +
    diff --git a/themes/at_movic/samples/leobootstrapmenu.xml b/themes/at_movic/samples/leobootstrapmenu.xml new file mode 100644 index 00000000..4112f7db --- /dev/null +++ b/themes/at_movic/samples/leobootstrapmenu.xml @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + 5101<en><![CDATA[main menu]]></en><fr><![CDATA[main menu]]></fr><de><![CDATA[main menu]]></de><it><![CDATA[main menu]]></it><es><![CDATA[main menu]]></es><ar><![CDATA[main menu]]></ar> + + 76500101111000000<en><![CDATA[home]]></en><fr><![CDATA[accueil]]></fr><de><![CDATA[Hause]]></de><it><![CDATA[Casa]]></it><es><![CDATA[Inicio]]></es><ar><![CDATA[الصفحة]]></ar> + 1075760101111000000<en><![CDATA[home 1]]></en><fr><![CDATA[home 1]]></fr><de><![CDATA[home 1]]></de><it><![CDATA[home 1]]></it><es><![CDATA[home 1]]></es><ar><![CDATA[home 1]]></ar> + 1085760101111100000<en><![CDATA[home 2]]></en><fr><![CDATA[home 2]]></fr><de><![CDATA[home 2]]></de><it><![CDATA[home 2]]></it><es><![CDATA[home 2]]></es><ar><![CDATA[home 2]]></ar> + 1095760101121200000<en><![CDATA[home 3]]></en><fr><![CDATA[home 3]]></fr><de><![CDATA[home 3]]></de><it><![CDATA[home 3]]></it><es><![CDATA[home 3]]></es><ar><![CDATA[home 3]]></ar> + 1435760101121300000<en><![CDATA[home 4]]></en><fr><![CDATA[home 4]]></fr><de><![CDATA[home 4]]></de><it><![CDATA[home 4]]></it><es><![CDATA[home 4]]></es><ar><![CDATA[home 4]]></ar> + 1505760101121400000<en><![CDATA[home 5]]></en><fr><![CDATA[home 5]]></fr><de><![CDATA[home 5]]></de><it><![CDATA[home 5]]></it><es><![CDATA[home 5]]></es><ar><![CDATA[home 5]]></ar> + 1515760101121500000<en><![CDATA[home 6]]></en><fr><![CDATA[home 6]]></fr><de><![CDATA[home 6]]></de><it><![CDATA[home 6]]></it><es><![CDATA[home 6]]></es><ar><![CDATA[home 6]]></ar> + 1535760101121600000<en><![CDATA[home 7]]></en><fr><![CDATA[home 7]]></fr><de><![CDATA[home 7]]></de><it><![CDATA[home 7]]></it><es><![CDATA[home 7]]></es><ar><![CDATA[home 7]]></ar> + 1545760101121700000<en><![CDATA[home 8]]></en><fr><![CDATA[home 8]]></fr><de><![CDATA[home 8]]></de><it><![CDATA[home 8]]></it><es><![CDATA[home 8]]></es><ar><![CDATA[home 8]]></ar> + 1555760101121800000<en><![CDATA[home 9]]></en><fr><![CDATA[home 9]]></fr><de><![CDATA[home 9]]></de><it><![CDATA[home 9]]></it><es><![CDATA[home 9]]></es><ar><![CDATA[home 9]]></ar> + 1595760101120900000<en><![CDATA[QUICK GUIDE]]></en><fr><![CDATA[QUICK GUIDE]]></fr><de><![CDATA[QUICK GUIDE]]></de><it><![CDATA[QUICK GUIDE]]></it><es><![CDATA[QUICK GUIDE]]></es><ar><![CDATA[QUICK GUIDE]]></ar> + 88500101111200000<en><![CDATA[shop]]></en><fr><![CDATA[Boutique]]></fr><de><![CDATA[shop]]></de><it><![CDATA[negozio]]></it><es><![CDATA[tienda]]></es><ar><![CDATA[متجر]]></ar> + 89500101111500000<en><![CDATA[page]]></en><fr><![CDATA[page]]></fr><de><![CDATA[Seite]]></de><it><![CDATA[pagina]]></it><es><![CDATA[Página]]></es><ar><![CDATA[الصفحة]]></ar> + 90500101111600000<en><![CDATA[Blog]]></en><fr><![CDATA[Blog]]></fr><de><![CDATA[Blog]]></de><it><![CDATA[Blog]]></it><es><![CDATA[Blog]]></es><ar><![CDATA[عناصر]]></ar> + 915900101121000000<en><![CDATA[viris exerci]]></en><fr><![CDATA[viris exerci]]></fr><de><![CDATA[viris exerci]]></de><it><![CDATA[viris exerci]]></it><es><![CDATA[viris exerci]]></es><ar><![CDATA[viris exerci]]></ar> + 925900101121100000<en><![CDATA[vidit menandri]]></en><fr><![CDATA[vidit menandri]]></fr><de><![CDATA[vidit menandri]]></de><it><![CDATA[vidit menandri]]></it><es><![CDATA[vidit menandri]]></es><ar><![CDATA[vidit menandri]]></ar> + 935920101131000000<en><![CDATA[invenire partiendo]]></en><fr><![CDATA[invenire partiendo]]></fr><de><![CDATA[invenire partiendo]]></de><it><![CDATA[invenire partiendo]]></it><es><![CDATA[invenire partiendo]]></es><ar><![CDATA[invenire partiendo]]></ar> + 945920101131100000<en><![CDATA[gloriatur reprimique]]></en><fr><![CDATA[gloriatur reprimique]]></fr><de><![CDATA[gloriatur reprimique]]></de><it><![CDATA[gloriatur reprimique]]></it><es><![CDATA[gloriatur reprimique]]></es><ar><![CDATA[gloriatur reprimique]]></ar> + 955920101131200000<en><![CDATA[quo lorem]]></en><fr><![CDATA[quo lorem]]></fr><de><![CDATA[quo lorem]]></de><it><![CDATA[quo lorem]]></it><es><![CDATA[quo lorem]]></es><ar><![CDATA[quo lorem]]></ar> + 965900101121200000<en><![CDATA[omnes partem]]></en><fr><![CDATA[omnes partem]]></fr><de><![CDATA[omnes partem]]></de><it><![CDATA[omnes partem]]></it><es><![CDATA[omnes partem]]></es><ar><![CDATA[omnes partem]]></ar> + 975900101121300000<en><![CDATA[reque fierent]]></en><fr><![CDATA[reque fierent]]></fr><de><![CDATA[reque fierent]]></de><it><![CDATA[reque fierent]]></it><es><![CDATA[reque fierent]]></es><ar><![CDATA[reque fierent]]></ar> + 985970101131000000<en><![CDATA[dolor omittantur]]></en><fr><![CDATA[dolor omittantur]]></fr><de><![CDATA[dolor omittantur]]></de><it><![CDATA[dolor omittantur]]></it><es><![CDATA[dolor omittantur]]></es><ar><![CDATA[dolor omittantur]]></ar> + 995900101121400000<en><![CDATA[has graeco]]></en><fr><![CDATA[has graeco]]></fr><de><![CDATA[has graeco]]></de><it><![CDATA[has graeco]]></it><es><![CDATA[has graeco]]></es><ar><![CDATA[has graeco]]></ar> + 100500101111400000<en><![CDATA[Category]]></en><fr><![CDATA[Catégorie]]></fr><de><![CDATA[Kategorie]]></de><it><![CDATA[Categoria]]></it><es><![CDATA[Categoría]]></es><ar><![CDATA[الفئة]]></ar> + 10151000101111000000<en><![CDATA[Product style 1]]></en><fr><![CDATA[Product style 1]]></fr><de><![CDATA[Product style 1]]></de><it><![CDATA[Product style 1]]></it><es><![CDATA[Product style 1]]></es><ar><![CDATA[Product style 1]]></ar> + 10251000101111100000<en><![CDATA[Product style 2]]></en><fr><![CDATA[Product style 2]]></fr><de><![CDATA[Product style 2]]></de><it><![CDATA[Product style 2]]></it><es><![CDATA[Product style 2]]></es><ar><![CDATA[Product style 2]]></ar> + 10351000101111200000<en><![CDATA[Product style 3]]></en><fr><![CDATA[Product style 3]]></fr><de><![CDATA[Product style 3]]></de><it><![CDATA[Product style 3]]></it><es><![CDATA[Product style 3]]></es><ar><![CDATA[Product style 3]]></ar> + 10451000101111300000<en><![CDATA[Product style 4]]></en><fr><![CDATA[Product style 4]]></fr><de><![CDATA[Product style 4]]></de><it><![CDATA[Product style 4]]></it><es><![CDATA[Product style 4]]></es><ar><![CDATA[Product style 4]]></ar> + 10551000101111400000<en><![CDATA[Product style 5]]></en><fr><![CDATA[Product style 5]]></fr><de><![CDATA[Product style 5]]></de><it><![CDATA[Product style 5]]></it><es><![CDATA[Product style 5]]></es><ar><![CDATA[Product style 5]]></ar> + 11151000101121600000<en><![CDATA[Shortcode]]></en><fr><![CDATA[Shortcode]]></fr><de><![CDATA[Shortcode]]></de><it><![CDATA[Shortcode]]></it><es><![CDATA[Shortcode]]></es><ar><![CDATA[Shortcode]]></ar> + 11251110101121000000<en><![CDATA[CMS Faqs]]></en><fr><![CDATA[CMS Faqs]]></fr><de><![CDATA[CMS Faqs]]></de><it><![CDATA[CMS Faqs]]></it><es><![CDATA[CMS Faqs]]></es><ar><![CDATA[CMS Faqs]]></ar> + 11351110101121100000<en><![CDATA[product desception]]></en><fr><![CDATA[product desception]]></fr><de><![CDATA[product desception]]></de><it><![CDATA[product desception]]></it><es><![CDATA[product desception]]></es><ar><![CDATA[product desception]]></ar> + 11451110101111200000<en><![CDATA[Category desception]]></en><fr><![CDATA[Category desception]]></fr><de><![CDATA[Category desception]]></de><it><![CDATA[Category desception]]></it><es><![CDATA[Category desception]]></es><ar><![CDATA[Category desception]]></ar> + 15251000101121500000<en><![CDATA[Product style 6]]></en><fr><![CDATA[Product style 6]]></fr><de><![CDATA[Product style 6]]></de><it><![CDATA[Product style 6]]></it><es><![CDATA[Product style 6]]></es><ar><![CDATA[Product style 6]]></ar> + 110500101111800000<en><![CDATA[Detail]]></en><fr><![CDATA[Detail]]></fr><de><![CDATA[Detail]]></de><it><![CDATA[Detail]]></it><es><![CDATA[Detail]]></es><ar><![CDATA[Detail]]></ar> + + 6111<en><![CDATA[cupshe menu]]></en><fr><![CDATA[cupshe menu]]></fr><de><![CDATA[cupshe menu]]></de><it><![CDATA[cupshe menu]]></it><es><![CDATA[cupshe menu]]></es><ar><![CDATA[cupshe menu]]></ar> + + 115600101111000000<en><![CDATA[home]]></en><fr><![CDATA[accueil]]></fr><de><![CDATA[Hause]]></de><it><![CDATA[Casa]]></it><es><![CDATA[Inicio]]></es><ar><![CDATA[الصفحة]]></ar> + 12161150101121000000<en><![CDATA[home 1]]></en><fr><![CDATA[home 1]]></fr><de><![CDATA[home 1]]></de><it><![CDATA[home 1]]></it><es><![CDATA[home 1]]></es><ar><![CDATA[home 1]]></ar> + 12261150101121100000<en><![CDATA[home 2]]></en><fr><![CDATA[home 2]]></fr><de><![CDATA[home 2]]></de><it><![CDATA[home 2]]></it><es><![CDATA[home 2]]></es><ar><![CDATA[home 2]]></ar> + 12361150101121200000<en><![CDATA[home 3]]></en><fr><![CDATA[home 3]]></fr><de><![CDATA[home 3]]></de><it><![CDATA[home 3]]></it><es><![CDATA[home 3]]></es><ar><![CDATA[home 3]]></ar> + 14261150101121300000<en><![CDATA[home 4]]></en><fr><![CDATA[home 4]]></fr><de><![CDATA[home 4]]></de><it><![CDATA[home 4]]></it><es><![CDATA[home 4]]></es><ar><![CDATA[home 4]]></ar> + 14861150101121400000<en><![CDATA[home 5]]></en><fr><![CDATA[home 5]]></fr><de><![CDATA[home 5]]></de><it><![CDATA[home 5]]></it><es><![CDATA[home 5]]></es><ar><![CDATA[home 5]]></ar> + 14961150101121500000<en><![CDATA[home 6]]></en><fr><![CDATA[home 6]]></fr><de><![CDATA[home 6]]></de><it><![CDATA[home 6]]></it><es><![CDATA[home 6]]></es><ar><![CDATA[home 6]]></ar> + 15661150101121600000<en><![CDATA[home 7]]></en><fr><![CDATA[home 7]]></fr><de><![CDATA[home 7]]></de><it><![CDATA[home 7]]></it><es><![CDATA[home 7]]></es><ar><![CDATA[home 7]]></ar> + 15761150101121700000<en><![CDATA[home 8]]></en><fr><![CDATA[home 8]]></fr><de><![CDATA[home 8]]></de><it><![CDATA[home 8]]></it><es><![CDATA[home 8]]></es><ar><![CDATA[home 8]]></ar> + 15861150101121800000<en><![CDATA[home 9]]></en><fr><![CDATA[home 9]]></fr><de><![CDATA[home 9]]></de><it><![CDATA[home 9]]></it><es><![CDATA[home 9]]></es><ar><![CDATA[home 9]]></ar> + 16061150101110900000<en><![CDATA[QUICK GUIDE]]></en><fr><![CDATA[QUICK GUIDE]]></fr><de><![CDATA[QUICK GUIDE]]></de><it><![CDATA[QUICK GUIDE]]></it><es><![CDATA[QUICK GUIDE]]></es><ar><![CDATA[QUICK GUIDE]]></ar> + 144600101111100000<en><![CDATA[New In]]></en><fr><![CDATA[New In]]></fr><de><![CDATA[New In]]></de><it><![CDATA[New In]]></it><es><![CDATA[New In]]></es><ar><![CDATA[New In]]></ar> + 145600101111300000<en><![CDATA[SALE]]></en><fr><![CDATA[SALE]]></fr><de><![CDATA[SALE]]></de><it><![CDATA[SALE]]></it><es><![CDATA[SALE]]></es><ar><![CDATA[SALE]]></ar> + 146600101111400000<en><![CDATA[About Us]]></en><fr><![CDATA[About Us]]></fr><de><![CDATA[About Us]]></de><it><![CDATA[About Us]]></it><es><![CDATA[About Us]]></es><ar><![CDATA[About Us]]></ar> + 147600101111200000<en><![CDATA[Bikinis]]></en><fr><![CDATA[Bikinis]]></fr><de><![CDATA[Bikinis]]></de><it><![CDATA[Bikinis]]></it><es><![CDATA[Bikinis]]></es><ar><![CDATA[Bikinis]]></ar> + + + + 311510300861 + 321510301051 + 331510301064 + 341510301443 + 351510301713 + 361510301801 + 371510301975 + 381510302417 + 391510302616 + 401510303465 + 411521789469 + 421521789494 + 431521789615 + 441521789763 + 451521789826 + 461521789885 + 471521789946 + 481570153331 + 491597179327 + 501597179396 + 511597179513 + 521597179590 + 531597179664 + 541597179752 + + + + + + + + + + + diff --git a/themes/at_movic/samples/leofeature.xml b/themes/at_movic/samples/leofeature.xml new file mode 100644 index 00000000..7fd984bb --- /dev/null +++ b/themes/at_movic/samples/leofeature.xml @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 31444 + 41543 + 51645 + 61744 + 71844 + 81944 + + + 411 + + + 13120<![CDATA[nice]]>410 + 14120<![CDATA[sapientem et. ]]>410 + 15520<![CDATA[invidunt intellegat dissentias]]>310 + 16420<![CDATA[ipsum dolor sit amet, mel paulo ]]>510 + 17120<![CDATA[mandamus sed id. ]]>410 + 188036<![CDATA[Easy to customize]]>410 + 19120<![CDATA[Dv]]>400 + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/at_movic/samples/leoproductsearch.xml b/themes/at_movic/samples/leoproductsearch.xml new file mode 100644 index 00000000..ff8383e2 --- /dev/null +++ b/themes/at_movic/samples/leoproductsearch.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/at_movic/samples/leoquicklogin.xml b/themes/at_movic/samples/leoquicklogin.xml new file mode 100644 index 00000000..86c12050 --- /dev/null +++ b/themes/at_movic/samples/leoquicklogin.xml @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/at_movic/samples/leoslideshow.xml b/themes/at_movic/samples/leoslideshow.xml new file mode 100644 index 00000000..27db29d2 --- /dev/null +++ b/themes/at_movic/samples/leoslideshow.xml @@ -0,0 +1,92 @@ + + + + + + + + + 19<![CDATA[slider 1 - 1920x800]]>11 + + 431190<en><![CDATA[slide 1]]></en><fr><![CDATA[slide 1]]></fr><de><![CDATA[slide 1]]></de><it><![CDATA[slide 1]]></it><es><![CDATA[slide 1]]></es><ar><![CDATA[slide 1]]></ar> + 441190<en><![CDATA[slide 2]]></en><fr><![CDATA[Duplicate of slide 1]]></fr><de><![CDATA[Duplicate of slide 1]]></de><it><![CDATA[Duplicate of slide 1]]></it><es><![CDATA[Duplicate of slide 1]]></es><ar><![CDATA[Duplicate of slide 1]]></ar> + 451190<en><![CDATA[slide 3]]></en><fr><![CDATA[Duplicate of slide 1]]></fr><de><![CDATA[Duplicate of slide 1]]></de><it><![CDATA[Duplicate of slide 1]]></it><es><![CDATA[Duplicate of slide 1]]></es><ar><![CDATA[Duplicate of slide 1]]></ar> + + 20<![CDATA[slider 1 - Tablet]]>10 + + 461200<en><![CDATA[slide 2]]></en><fr><![CDATA[slide 2]]></fr><de><![CDATA[slide 2]]></de><it><![CDATA[slide 2]]></it><es><![CDATA[slide 2]]></es><ar><![CDATA[slide 2]]></ar> + 491200<en><![CDATA[slide 1]]></en><fr><![CDATA[slide 1]]></fr><de><![CDATA[slide 1]]></de><it><![CDATA[slide 1]]></it><es><![CDATA[slide 1]]></es><ar><![CDATA[slide 1]]></ar> + + 21<![CDATA[slider 1 - Mobile]]>11 + + 501210<en><![CDATA[slide 1]]></en><fr><![CDATA[slide 1]]></fr><de><![CDATA[slide 1]]></de><it><![CDATA[slide 1]]></it><es><![CDATA[slide 1]]></es><ar><![CDATA[slide 1]]></ar> + 511210<en><![CDATA[slide 2]]></en><fr><![CDATA[slide 2]]></fr><de><![CDATA[slide 2]]></de><it><![CDATA[slide 2]]></it><es><![CDATA[slide 2]]></es><ar><![CDATA[slide 2]]></ar> + + 22<![CDATA[slide h4 - 1920x940]]>11 + + 521220<en><![CDATA[slide 1]]></en><fr><![CDATA[slide 1]]></fr><de><![CDATA[slide 1]]></de><it><![CDATA[slide 1]]></it><es><![CDATA[slide 1]]></es><ar><![CDATA[slide 1]]></ar> + 531220<en><![CDATA[slide 2]]></en><fr><![CDATA[slide 2]]></fr><de><![CDATA[slide 2]]></de><it><![CDATA[slide 2]]></it><es><![CDATA[slide 2]]></es><ar><![CDATA[slide 2]]></ar> + 541220<en><![CDATA[slide 3]]></en><fr><![CDATA[slide 3]]></fr><de><![CDATA[slide 3]]></de><it><![CDATA[slide 3]]></it><es><![CDATA[slide 3]]></es><ar><![CDATA[slide 3]]></ar> + + 23<![CDATA[slide h5 -1800x810]]>11 + + 551230<en><![CDATA[slide 1]]></en><fr><![CDATA[slide 1]]></fr><de><![CDATA[slide 1]]></de><it><![CDATA[slide 1]]></it><es><![CDATA[slide 1]]></es><ar><![CDATA[slide 1]]></ar> + 561230<en><![CDATA[slide 2]]></en><fr><![CDATA[slide 2]]></fr><de><![CDATA[slide 2]]></de><it><![CDATA[slide 2]]></it><es><![CDATA[slide 2]]></es><ar><![CDATA[slide 2]]></ar> + + 24<![CDATA[slide h6 - 1860x880]]>11 + + 571240<en><![CDATA[slide 1]]></en><fr><![CDATA[slide 1]]></fr><de><![CDATA[slide 1]]></de><it><![CDATA[slide 1]]></it><es><![CDATA[slide 1]]></es><ar><![CDATA[slide 1]]></ar> + 581240<en><![CDATA[slide 2]]></en><fr><![CDATA[slide 2]]></fr><de><![CDATA[slide 2]]></de><it><![CDATA[slide 2]]></it><es><![CDATA[slide 2]]></es><ar><![CDATA[slide 2]]></ar> + 591240<en><![CDATA[slide 3]]></en><fr><![CDATA[slide 3]]></fr><de><![CDATA[slide 3]]></de><it><![CDATA[slide 3]]></it><es><![CDATA[slide 3]]></es><ar><![CDATA[slide 3]]></ar> + + 26<![CDATA[slider h7 - 1920x900]]>11 + + 601260<en><![CDATA[slide 1]]></en><fr><![CDATA[slide 1]]></fr><de><![CDATA[slide 1]]></de><it><![CDATA[slide 1]]></it><es><![CDATA[slide 1]]></es><ar><![CDATA[slide 1]]></ar> + 611260<en><![CDATA[slide 2]]></en><fr><![CDATA[Duplicate of slide 1]]></fr><de><![CDATA[Duplicate of slide 1]]></de><it><![CDATA[Duplicate of slide 1]]></it><es><![CDATA[Duplicate of slide 1]]></es><ar><![CDATA[Duplicate of slide 1]]></ar> + + + + + + + + + + + + + + diff --git a/themes/at_movic/templates/_partials/BK-javascript.tpl b/themes/at_movic/templates/_partials/BK-javascript.tpl new file mode 100644 index 00000000..0b71da14 --- /dev/null +++ b/themes/at_movic/templates/_partials/BK-javascript.tpl @@ -0,0 +1,57 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{foreach $javascript.external as $js} + +{/foreach} + +{foreach $javascript.inline as $js} + +{/foreach} + +{if isset($vars) && $vars|@count} + +{/if} + \ No newline at end of file diff --git a/themes/at_movic/templates/_partials/breadcrumb.tpl b/themes/at_movic/templates/_partials/breadcrumb.tpl new file mode 100644 index 00000000..fa73e14b --- /dev/null +++ b/themes/at_movic/templates/_partials/breadcrumb.tpl @@ -0,0 +1,74 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +{assign var="leobrbg" value={hook h="pagebuilderConfig" configName="leobrbg"}} +{assign var="leobrcolor" value={hook h="pagebuilderConfig" configName="leobrcolor"}} +{assign var="leobgfull" value={hook h="pagebuilderConfig" configName="leobgfull"}} +{assign var="leobgheight" value={hook h="pagebuilderConfig" configName="leobgheight"}} +{assign var="leobrtext" value={hook h="pagebuilderConfig" configName="leobrtext"}} + +{if $leobrbg || $leobrcolor} + +{else} + +{/if} \ No newline at end of file diff --git a/themes/at_movic/templates/_partials/breadcrumb_old.tpl b/themes/at_movic/templates/_partials/breadcrumb_old.tpl new file mode 100644 index 00000000..fea411b1 --- /dev/null +++ b/themes/at_movic/templates/_partials/breadcrumb_old.tpl @@ -0,0 +1,40 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + diff --git a/themes/at_movic/templates/_partials/footer.tpl b/themes/at_movic/templates/_partials/footer.tpl new file mode 100644 index 00000000..c4b9eb6c --- /dev/null +++ b/themes/at_movic/templates/_partials/footer.tpl @@ -0,0 +1,65 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='hook_footer_before'} + +{/block} +{block name='hook_footer'} + +{/block} +{block name='hook_footer_after'} + +{/block} + \ No newline at end of file diff --git a/themes/at_movic/templates/_partials/form-errors.tpl b/themes/at_movic/templates/_partials/form-errors.tpl new file mode 100644 index 00000000..a43e09d4 --- /dev/null +++ b/themes/at_movic/templates/_partials/form-errors.tpl @@ -0,0 +1,35 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{if $errors|count} +
    + {block name='form_errors'} +
      + {foreach $errors as $error} +
    • {$error|nl2br nofilter}
    • + {/foreach} +
    + {/block} +
    +{/if} diff --git a/themes/at_movic/templates/_partials/form-fields.tpl b/themes/at_movic/templates/_partials/form-fields.tpl new file mode 100644 index 00000000..ac58e1f5 --- /dev/null +++ b/themes/at_movic/templates/_partials/form-fields.tpl @@ -0,0 +1,195 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{if $field.type == 'hidden'} + + {block name='form_field_item_hidden'} + + {/block} + +{else} + +
    + +
    + + {if $field.type === 'select'} + + {block name='form_field_item_select'} + + {/block} + + {elseif $field.type === 'countrySelect'} + + {block name='form_field_item_country'} + + {/block} + + {elseif $field.type === 'radio-buttons'} + + {block name='form_field_item_radio'} + {foreach from=$field.availableValues item="label" key="value"} + + {/foreach} + {/block} + + {elseif $field.type === 'checkbox'} + + {block name='form_field_item_checkbox'} + + + + {/block} + + {elseif $field.type === 'date'} + + {block name='form_field_item_date'} + + {if isset($field.availableValues.comment)} + + {$field.availableValues.comment} + + {/if} + {/block} + + {elseif $field.type === 'birthday'} + + {block name='form_field_item_birthday'} +
    + {html_select_date + field_order=DMY + time={$field.value} + field_array={$field.name} + prefix=false + reverse_years=true + field_separator='
    ' + day_extra='class="form-control form-control-select"' + month_extra='class="form-control form-control-select"' + year_extra='class="form-control form-control-select"' + day_empty={l s='-- day --' d='Shop.Forms.Labels'} + month_empty={l s='-- month --' d='Shop.Forms.Labels'} + year_empty={l s='-- year --' d='Shop.Forms.Labels'} + start_year={'Y'|date}-100 end_year={'Y'|date} + } +
    + {/block} + + {elseif $field.type === 'password'} + + {block name='form_field_item_password'} +
    + + + + +
    + {/block} + + {else} + + {block name='form_field_item_other'} + + {if isset($field.availableValues.comment)} + + {$field.availableValues.comment} + + {/if} + {/block} + + {/if} + + {block name='form_field_errors'} + {include file='_partials/form-errors.tpl' errors=$field.errors} + {/block} + +
    + +
    + {block name='form_field_comment'} + {if (!$field.required && !in_array($field.type, ['radio-buttons', 'checkbox']))} + {l s='Optional' d='Shop.Forms.Labels'} + {/if} + {/block} +
    +
    + +{/if} diff --git a/themes/at_movic/templates/_partials/head.tpl b/themes/at_movic/templates/_partials/head.tpl new file mode 100644 index 00000000..da93fa4a --- /dev/null +++ b/themes/at_movic/templates/_partials/head.tpl @@ -0,0 +1,126 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='head_charset'} + +{/block} +{block name='head_ie_compatibility'} + +{/block} + +{block name='head_seo'} + {block name='head_seo_title'}{$page.meta.title}{/block} + + + {if $page.meta.robots !== 'index'} + + {/if} + {if $page.canonical} + + {/if} + {block name='head_hreflang'} + {foreach from=$urls.alternative_langs item=pageUrl key=code} + + {/foreach} + {/block} +{/block} + +{block name='head_viewport'} + +{/block} + +{block name='head_icons'} + + +{/block} +{block name="setting"} + {include file="layouts/setting.tpl"} +{/block} +{block name='stylesheets'} + {include file="_partials/stylesheets.tpl" stylesheets=$stylesheets} +{/block} + +{* LEO - Load Css With Prestashop Standard *} +{if isset($LOAD_CSS_TYPE) && !$LOAD_CSS_TYPE} + + {if isset($LEO_CSS)} + {foreach from=$LEO_CSS key=css_uri item=media} + + {/foreach} + {/if} + + {if isset($LEO_SKIN_CSS)} + {foreach from=$LEO_SKIN_CSS item=linkCss} + {$linkCss nofilter} + {/foreach} + {/if} +{/if} +{* LEO LAYOUT *} +{if isset($LAYOUT_WIDTH)} + {$LAYOUT_WIDTH nofilter} +{/if} + +{block name='javascript_head'} + {include file="_partials/javascript.tpl" javascript=$javascript.head vars=$js_custom_vars} +{/block} + +{block name='hook_header'} + {$HOOK_HEADER nofilter} +{/block} + +{block name='hook_extra'}{/block} + + + +{literal} + + + + + +{/literal} + + + + + \ No newline at end of file diff --git a/themes/at_movic/templates/_partials/header.tpl b/themes/at_movic/templates/_partials/header.tpl new file mode 100644 index 00000000..ae1113a5 --- /dev/null +++ b/themes/at_movic/templates/_partials/header.tpl @@ -0,0 +1,71 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='header_banner'} +
    + {if isset($fullwidth_hook.displayBanner) AND $fullwidth_hook.displayBanner == 0} +
    + {/if} +
    {hook h='displayBanner'}
    + {if isset($fullwidth_hook.displayBanner) AND $fullwidth_hook.displayBanner == 0} +
    + {/if} +
    +{/block} + +{block name='header_nav'} + +{/block} + +{block name='header_top'} +
    + {if isset($fullwidth_hook.displayTop) AND $fullwidth_hook.displayTop == 0} +
    + {/if} +
    {hook h='displayTop'}
    + {if isset($fullwidth_hook.displayTop) AND $fullwidth_hook.displayTop == 0} +
    + {/if} +
    + {hook h='displayNavFullWidth'} +{/block} \ No newline at end of file diff --git a/themes/at_movic/templates/_partials/index.php b/themes/at_movic/templates/_partials/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/_partials/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/_partials/javascript.tpl b/themes/at_movic/templates/_partials/javascript.tpl new file mode 100644 index 00000000..1d92fc91 --- /dev/null +++ b/themes/at_movic/templates/_partials/javascript.tpl @@ -0,0 +1,64 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + {if $javascript.external|@count == 1} + {foreach $javascript.external as $js} + + {/foreach} + {else} + {foreach $javascript.external as $js} + + {/foreach} +{/if} + + +{foreach $javascript.inline as $js} + +{/foreach} + +{if isset($vars) && $vars|@count} + +{/if} + \ No newline at end of file diff --git a/themes/at_movic/templates/_partials/notifications.tpl b/themes/at_movic/templates/_partials/notifications.tpl new file mode 100644 index 00000000..256b9bc2 --- /dev/null +++ b/themes/at_movic/templates/_partials/notifications.tpl @@ -0,0 +1,78 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +{if isset($notifications)} + +{/if} diff --git a/themes/at_movic/templates/_partials/pagination.tpl b/themes/at_movic/templates/_partials/pagination.tpl new file mode 100644 index 00000000..397c8d7d --- /dev/null +++ b/themes/at_movic/templates/_partials/pagination.tpl @@ -0,0 +1,62 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + diff --git a/themes/at_movic/templates/_partials/stylesheets.tpl b/themes/at_movic/templates/_partials/stylesheets.tpl new file mode 100644 index 00000000..07e30a40 --- /dev/null +++ b/themes/at_movic/templates/_partials/stylesheets.tpl @@ -0,0 +1,33 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{foreach $stylesheets.external as $stylesheet} + +{/foreach} + +{foreach $stylesheets.inline as $stylesheet} + +{/foreach} diff --git a/themes/at_movic/templates/catalog/_partials/active_filters.tpl b/themes/at_movic/templates/catalog/_partials/active_filters.tpl new file mode 100644 index 00000000..e452d172 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/active_filters.tpl @@ -0,0 +1,43 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + {block name='active_filters_title'} +

    {l s='Active filters' d='Shop.Theme.Global'}

    + {/block} + + {if $activeFilters|count} +
      + {foreach from=$activeFilters item="filter"} + {block name='active_filters_item'} +
    • + {l s='%1$s: ' d='Shop.Theme.Catalog' sprintf=[$filter.facetLabel]} + {$filter.label} + +
    • + {/block} + {/foreach} +
    + {/if} +
    diff --git a/themes/at_movic/templates/catalog/_partials/category-header.tpl b/themes/at_movic/templates/catalog/_partials/category-header.tpl new file mode 100644 index 00000000..846e8ed3 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/category-header.tpl @@ -0,0 +1,38 @@ +{** + * PrestaShop. + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + {if $listing.pagination.items_shown_from == 1} +
    +

    {$category.name}

    +
    + {if $category.image.large.url} +
    + {if !empty($category.image.legend)}{$category.image.legend}{else}{$category.name}{/if} +
    + {/if} +
    +
    + {/if} +
    diff --git a/themes/at_movic/templates/catalog/_partials/facets.tpl b/themes/at_movic/templates/catalog/_partials/facets.tpl new file mode 100644 index 00000000..ab275c12 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/facets.tpl @@ -0,0 +1,177 @@ +{** + * PrestaShop and Contributors + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to https://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA and Contributors + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{if $facets|count} +
    + {block name='facets_title'} +

    {l s='Filter By' d='Shop.Theme.Actions'}

    + {/block} + + {block name='facets_clearall_button'} + {if $activeFilters|count} +
    + +
    + {/if} + {/block} + + {foreach from=$facets item="facet" name=smartyloop} + {assign var="counter" value=$smarty.foreach.smartyloop.iteration} + {if !$facet.displayed} + {continue} + {/if} + +
    +

    {$facet.label}

    + {assign var=_expand_id value=10|mt_rand:100000} + {assign var=_collapse value=true} + {foreach from=$facet.filters item="filter"} + {if $filter.active}{assign var=_collapse value=false}{/if} + {/foreach} + +
    +

    {$facet.label}

    + + + + + + +
    + + {if $facet.widgetType !== 'dropdown'} + {block name='facet_item_other'} + {if $counter == 2} +
    + {/foreach} +
    +{/if} diff --git a/themes/at_movic/templates/catalog/_partials/index.php b/themes/at_movic/templates/catalog/_partials/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/catalog/_partials/miniatures/brand.tpl b/themes/at_movic/templates/catalog/_partials/miniatures/brand.tpl new file mode 100644 index 00000000..a0f5d214 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/miniatures/brand.tpl @@ -0,0 +1,37 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='brand_miniature_item'} +
  • +
    {$brand.name}
    +
    +

    {$brand.name}

    + {$brand.text nofilter} +
    + +
  • +{/block} diff --git a/themes/at_movic/templates/catalog/_partials/miniatures/category.tpl b/themes/at_movic/templates/catalog/_partials/miniatures/category.tpl new file mode 100644 index 00000000..b04a193b --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/miniatures/category.tpl @@ -0,0 +1,37 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='category_miniature_item'} +
    + + {$category.image.legend} + + +

    + {$category.name} +

    + +
    {$category.description nofilter}
    +
    +{/block} diff --git a/themes/at_movic/templates/catalog/_partials/miniatures/index.php b/themes/at_movic/templates/catalog/_partials/miniatures/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/miniatures/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/catalog/_partials/miniatures/leo_col_products.tpl b/themes/at_movic/templates/catalog/_partials/miniatures/leo_col_products.tpl new file mode 100644 index 00000000..4dd28bc3 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/miniatures/leo_col_products.tpl @@ -0,0 +1,91 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{if !isset($LISTING_GRID_MODE) || !isset($LISTING_PRODUCT_COLUMN) || !isset($LISTING_PRODUCT_COLUMN_MODULE) || !isset($LISTING_PRODUCT_TABLET) || !isset($LISTING_PRODUCT_SMALLDEVICE) || !isset($LISTING_PRODUCT_EXTRASMALLDEVICE) || !isset($LISTING_PRODUCT_MOBILE)} + {block name="setting"} + {include file="layouts/setting.tpl"} + {/block} +{/if} + +{if !isset($productClassWidget)} + {assign var="productClassWidget" value={hook h="pagebuilderConfig" configName="productClass"}} +{/if} +{if !isset($productProfileDefault)} + {assign var="productProfileDefault" value={hook h="pagebuilderConfig" configName="productKey"}} +{/if} + +{*define numbers of product per line in other page for desktop*} +{if (isset($page.page_name) && $page.page_name == 'category') || (isset($leo_page) && $leo_page=='category')} + {assign var='nbItemsPerLine' value=$LISTING_PRODUCT_COLUMN} + + {if $LISTING_PRODUCT_COLUMN=="5"} {assign var="col_cat_product_xl" value="col-xl-2-4"}{else}{assign var="col_cat_product_xl" value="col-xl-{12/$LISTING_PRODUCT_COLUMN}"}{/if} + {if $LISTING_PRODUCT_LARGEDEVICE=="5"} {assign var="col_cat_product_lg" value="col-lg-2-4"}{else}{assign var="col_cat_product_lg" value="col-lg-{12/$LISTING_PRODUCT_LARGEDEVICE}"}{/if} + {assign var="colValue" value="col-sp-{12/$LISTING_PRODUCT_MOBILE} col-xs-{12/$LISTING_PRODUCT_EXTRASMALLDEVICE} col-sm-{12/$LISTING_PRODUCT_SMALLDEVICE} col-md-{12/$LISTING_PRODUCT_TABLET} {$col_cat_product_lg} {$col_cat_product_xl}" scope="global"} +{else} + {assign var='nbItemsPerLine' value=$LISTING_PRODUCT_COLUMN_MODULE} + + {if $LISTING_PRODUCT_COLUMN_MODULE=="5"}{assign var="col_cat_product_xl" value="col-xl-2-4"}{else}{assign var="col_cat_product_xl" value="col-xl-{12/$LISTING_PRODUCT_COLUMN_MODULE}"}{/if} + {if $LISTING_PRODUCT_LARGEDEVICE=="5"} {assign var="col_cat_product_lg" value="col-lg-2-4"}{else}{assign var="col_cat_product_lg" value="col-lg-{12/$LISTING_PRODUCT_LARGEDEVICE}"}{/if} + + {assign var="colValue" value="col-sp-{12/$LISTING_PRODUCT_MOBILE} col-xs-{12/$LISTING_PRODUCT_EXTRASMALLDEVICE} col-sm-{12/$LISTING_PRODUCT_SMALLDEVICE} col-md-{12/$LISTING_PRODUCT_TABLET} {$col_cat_product_lg} {$col_cat_product_xl}" scope="global"} +{/if} + +{assign var='nbItemsPerLineTablet' value=$LISTING_PRODUCT_TABLET} +{assign var='nbItemsPerLineMobile' value=$LISTING_PRODUCT_EXTRASMALLDEVICE} +{*define numbers of product per line in other page for tablet*} +{assign var='nbLi' value=$products|count} +{math equation="nbLi/nbItemsPerLine" nbLi=$nbLi nbItemsPerLine=$nbItemsPerLine assign=nbLines} +{math equation="nbLi/nbItemsPerLineTablet" nbLi=$nbLi nbItemsPerLineTablet=$nbItemsPerLineTablet assign=nbLinesTablet} + + +{assign var="categoryLayout" value={hook h="pagebuilderConfig" configName="categoryLayout"}} +{assign var="classCategoryLayout" value={hook h="pagebuilderConfig" configName="classCategoryLayout"}} + +
    +
    + {foreach from=$products item=product name=products} + {math equation="(total%perLine)" total=$products|count perLine=$nbItemsPerLine assign=totModulo} + {math equation="(total%perLineT)" total=$products|count perLineT=$nbItemsPerLineTablet assign=totModuloTablet} + {math equation="(total%perLineT)" total=$products|count perLineT=$nbItemsPerLineMobile assign=totModuloMobile} + {if $totModulo == 0}{assign var='totModulo' value=$nbItemsPerLine}{/if} + {if $totModuloTablet == 0}{assign var='totModuloTablet' value=$nbItemsPerLineTablet}{/if} + {if $totModuloMobile == 0}{assign var='totModuloMobile' value=$nbItemsPerLineMobile}{/if} +
    + {block name='product_miniature'} + {if isset($productProfileDefault) && $productProfileDefault} + {* exits THEME_NAME/profiles/profile_name.tpl -> load template*} + {if isset($categoryLayout) && $categoryLayout != ""} + {hook h='displayLeoProfileProduct' product=$product profile=$categoryLayout} + {else} + {hook h='displayLeoProfileProduct' product=$product profile=$productProfileDefault} + {/if} + {else} + {include file='catalog/_partials/miniatures/product.tpl' product=$product} + {/if} + {/block} +
    + {/foreach} +
    +
    + \ No newline at end of file diff --git a/themes/at_movic/templates/catalog/_partials/miniatures/pack-product.tpl b/themes/at_movic/templates/catalog/_partials/miniatures/pack-product.tpl new file mode 100644 index 00000000..2b028d55 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/miniatures/pack-product.tpl @@ -0,0 +1,54 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='pack_miniature_item'} + +{/block} diff --git a/themes/at_movic/templates/catalog/_partials/miniatures/product.tpl b/themes/at_movic/templates/catalog/_partials/miniatures/product.tpl new file mode 100644 index 00000000..0516e787 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/miniatures/product.tpl @@ -0,0 +1,126 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='product_miniature_item'} +
    +
    +
    + {block name='product_thumbnail'} + {if isset($cfg_product_list_image) && $cfg_product_list_image} +
    + {/if} + {if $product.cover} + + {if !empty($product.cover.legend)}{$product.cover.legend}{else}{$product.name}{/if} + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + {else} + + + {if isset($cfg_product_one_img) && $cfg_product_one_img} + + {/if} + + {/if} + {/block} + + + {block name='product_flags'} +
      + {foreach from=$product.flags item=flag} +
    • {$flag.label}
    • + {/foreach} +
    + {/block} +
    + {block name='quick_view'} + + {/block} + {hook h='displayLeoCartButton' product=$product} + {hook h='displayLeoCompareButton' product=$product} + {hook h='displayLeoWishlistButton' product=$product} +
    +
    +
    + + {hook h='displayLeoCartAttribute' product=$product} + {hook h='displayLeoCartQuantity' product=$product} + + {block name='product_name'} +

    {$product.name}

    + {/block} + + {block name='product_price_and_shipping'} + {if $product.show_price} +
    + {if $product.has_discount} + {hook h='displayProductPriceBlock' product=$product type="old_price"} + {l s='Regular price' d='Shop.Theme.Catalog'} + {$product.regular_price} + {if $product.discount_type === 'percentage'} + {$product.discount_percentage} + {elseif $product.discount_type === 'amount'} + {$product.discount_amount_to_display} + {/if} + {/if} + + {hook h='displayProductPriceBlock' product=$product type="before_price"} + + {l s='Price' d='Shop.Theme.Catalog'} + {$product.price} + + {hook h='displayProductPriceBlock' product=$product type='unit_price'} + + {hook h='displayProductPriceBlock' product=$product type='weight'} +
    + {/if} + {/block} + + {block name='product_description_short'} +
    {$product.description_short|strip_tags|truncate:150:'...' nofilter}
    + {/block} +
    +
    +
    +{/block} diff --git a/themes/at_movic/templates/catalog/_partials/product-activation.tpl b/themes/at_movic/templates/catalog/_partials/product-activation.tpl new file mode 100644 index 00000000..071d885b --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/product-activation.tpl @@ -0,0 +1,38 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{if $page.admin_notifications} + +{/if} diff --git a/themes/at_movic/templates/catalog/_partials/product-add-to-cart.tpl b/themes/at_movic/templates/catalog/_partials/product-add-to-cart.tpl new file mode 100644 index 00000000..0a404311 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/product-add-to-cart.tpl @@ -0,0 +1,101 @@ +{** + * PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + {if !$configuration.is_catalog} + {block name='product_quantity'} +
    +
    +
    + {l s='Quantity' d='Shop.Theme.Catalog'} + +
    + +
    + +
    +
    + {hook h='displayLeoWishlistButton' product=$product} + {hook h='displayLeoCompareButton' product=$product} +
    + + {hook h='displayProductActions' product=$product} + +
    + + {block name='product_minimal_quantity'} +
    + {if $product.minimal_quantity > 1} + {l + s='The minimum purchase order quantity for the product is %quantity%.' + d='Shop.Theme.Checkout' + sprintf=['%quantity%' => $product.minimal_quantity] + } + {/if} +
    + {/block} + {block name='product_availability'} + + {if $product.show_availability} + {if $product.quantity <= 5 && $product.quantity > 0 } + + + {l s='Small quantity in stock' d='Shop.Theme.Global'} + + {elseif $product.quantity > 5 && $product.quantity <= 10 } + + + {l s='Average quantity in stock' d='Shop.Theme.Global'} + + {elseif $product.quantity > 10} + + + {l s='Large quantity in stock' d='Shop.Theme.Global'} + + {/if} + {/if} + + {/block} +
    + {/block} + {/if} +
    \ No newline at end of file diff --git a/themes/at_movic/templates/catalog/_partials/product-additional-info.tpl b/themes/at_movic/templates/catalog/_partials/product-additional-info.tpl new file mode 100644 index 00000000..a374c118 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/product-additional-info.tpl @@ -0,0 +1,27 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + {hook h='displayProductAdditionalInfo' product=$product} +
    diff --git a/themes/at_movic/templates/catalog/_partials/product-after-cart-button.tpl b/themes/at_movic/templates/catalog/_partials/product-after-cart-button.tpl new file mode 100644 index 00000000..0c715039 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/product-after-cart-button.tpl @@ -0,0 +1,27 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + {hook h='displayAfterCartButton' product=$product} +
    \ No newline at end of file diff --git a/themes/at_movic/templates/catalog/_partials/product-cover-thumbnails.tpl b/themes/at_movic/templates/catalog/_partials/product-cover-thumbnails.tpl new file mode 100644 index 00000000..c0d5ced9 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/product-cover-thumbnails.tpl @@ -0,0 +1,102 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + {block name='product_cover_thumbnails'} + {if $isMobile && $dmobile_swipe} +
    + {foreach from=$product.images item=image} +
    + {$image.legend} +
    + {/foreach} +
    + {else} + {block name='product_cover'} +
    + {block name='product_flags'} +
      + {foreach from=$product.flags item=flag} +
    • {$flag.label}
    • + {/foreach} +
    + {/block} + {if $product.cover} + {$product.cover.legend} +
    + +
    + {else} + + {/if} +
    + {/block} + {block name='product_images'} + {assign var="image_big" value=""} + + {/block} + {if $product.images|@count > 1} +
    + + +
    + {/if} + {/if} + {/block} + {hook h='displayAfterProductThumbs'} +
    +{literal} + +{/literal} diff --git a/themes/at_movic/templates/catalog/_partials/product-customization.tpl b/themes/at_movic/templates/catalog/_partials/product-customization.tpl new file mode 100644 index 00000000..6007512f --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/product-customization.tpl @@ -0,0 +1,69 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + {if !$configuration.is_catalog} +
    +

    {l s='Product customization' d='Shop.Theme.Catalog'}

    + {l s='Don\'t forget to save your customization to be able to add to cart' d='Shop.Forms.Help'} + + {block name='product_customization_form'} +
    +
      + {foreach from=$customizations.fields item="field"} +
    • + + {if $field.type == 'text'} + + {l s='250 char. max' d='Shop.Forms.Help'} + {if $field.text !== ''} +
      {l s='Your customization:' d='Shop.Theme.Catalog'} + +
      + {/if} + {elseif $field.type == 'image'} + {if $field.is_customized} +
      + + {l s='Remove Image' d='Shop.Theme.Actions'} + {/if} + + {l s='No selected file' d='Shop.Forms.Help'} + + + + {l s='.png .jpg .gif' d='Shop.Forms.Help'} + {/if} +
    • + {/foreach} +
    +
    + +
    +
    + {/block} + +
    + {/if} +
    diff --git a/themes/at_movic/templates/catalog/_partials/product-details.tpl b/themes/at_movic/templates/catalog/_partials/product-details.tpl new file mode 100644 index 00000000..010bf82a --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/product-details.tpl @@ -0,0 +1,101 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +
    + + {*hook h="DisplayILabsManufacturerLogo" product=$products type=product*} + {assign var=logos value=(int)Configuration::get('manufacturerlogo_name')} + {if isset($logos) && $logos==1} + {Manufacturer::getNameById($product->id_manufacturer)} + {/if} + + {Manufacturer::getNameById($product->id_manufacturer)} + + + + {block name='product_reference'} + {if isset($product.reference_to_display)} +
    + + + {if $combinations[$product.id_product_attribute].reference} + {$combinations[$product.id_product_attribute].reference} + {else} + {$product.reference_to_display} + {/if} + +
    + {/if} + {/block} + + {block name='product_quantities'} + {if $product.show_quantities} +
    + + {$product.quantity} {$product.quantity_label} +
    + {/if} + {/block} + + {block name='product_availability_date'} + {if $product.availability_date} +
    + + {$product.availability_date} +
    + {/if} + {/block} + + {block name='product_out_of_stock'} +
    + {hook h='actionProductOutOfStock' product=$product} +
    + {/block} + + {block name='product_features'} + {if $product.grouped_features} +
    +

    {l s='Data sheet' d='Shop.Theme.Catalog'}

    +
    + {foreach from=$product.grouped_features item=feature} +
    {$feature.name}
    +
    {$feature.value|escape:'htmlall'|nl2br nofilter}
    + {/foreach} +
    +
    + {/if} + {/block} + + {* if product have specific references, a table will be added to product details section *} + {block name='product_specific_references'} + {if !empty($product.specific_references)} +
    +

    {l s='Specific References' d='Shop.Theme.Catalog'}

    +
    + {foreach from=$product.specific_references item=reference key=key} +
    {$key}
    +
    {$reference}
    + {/foreach} +
    +
    + {/if} + {/block} + + {block name='product_condition'} + {if $product.condition} +
    + + + {$product.condition.label} +
    + {/if} + {/block} +
    diff --git a/themes/at_movic/templates/catalog/_partials/product-discounts.tpl b/themes/at_movic/templates/catalog/_partials/product-discounts.tpl new file mode 100644 index 00000000..450ee257 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/product-discounts.tpl @@ -0,0 +1,60 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + {if $product.additional_delivery_times == 1} + {if $product.delivery_information} + {$product.delivery_information} + {/if} + {elseif $product.additional_delivery_times == 2} + {if $product.quantity > 0} + {$product.delivery_in_stock} + {elseif $product.quantity <= 0} + {$product.delivery_out_stock} + {/if} + {/if} + {if $product.quantity_discounts} +

    {l s='Volume discounts' d='Shop.Theme.Catalog'}

    + {block name='product_discount_table'} + + + + + + + + + + {foreach from=$product.quantity_discounts item='quantity_discount' name='quantity_discounts'} + + + + + + {/foreach} + +
    {l s='Quantity' d='Shop.Theme.Catalog'}{l s='Discount' d='Shop.Theme.Catalog'}{l s='You Save' d='Shop.Theme.Catalog'}
    {$quantity_discount.quantity}{$quantity_discount.discount}{$quantity_discount.save}
    + {/block} + {/if} +
    diff --git a/themes/at_movic/templates/catalog/_partials/product-flags.tpl b/themes/at_movic/templates/catalog/_partials/product-flags.tpl new file mode 100644 index 00000000..a20ebfc3 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/product-flags.tpl @@ -0,0 +1,31 @@ +{** + * PrestaShop and Contributors + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to https://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA and Contributors + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='product_flags'} +
      + {foreach from=$product.flags item=flag} +
    • {$flag.label}
    • + {/foreach} +
    +{/block} diff --git a/themes/at_movic/templates/catalog/_partials/product-images-modal.tpl b/themes/at_movic/templates/catalog/_partials/product-images-modal.tpl new file mode 100644 index 00000000..7f3822ce --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/product-images-modal.tpl @@ -0,0 +1,56 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + +{* + +*} \ No newline at end of file diff --git a/themes/at_movic/templates/catalog/_partials/product-prices.tpl b/themes/at_movic/templates/catalog/_partials/product-prices.tpl new file mode 100644 index 00000000..b13d5257 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/product-prices.tpl @@ -0,0 +1,105 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{if $product.show_price} +
    + {block name='product_discount'} + {if $product.has_discount} +
    + {hook h='displayProductPriceBlock' product=$product type="old_price"} + {$product.regular_price} +
    + {/if} + {/block} + + {block name='product_price'} +
    + + + +
    + {$product.price} + + {if $product.has_discount} + {if $product.discount_type === 'percentage'} + {l s='Save %percentage%' d='Shop.Theme.Catalog' sprintf=['%percentage%' => $product.discount_percentage_absolute]} + {else} + + {l s='Save %amount%' d='Shop.Theme.Catalog' sprintf=['%amount%' => $product.discount_to_display]} + + {/if} + {/if} +
    + + {block name='product_unit_price'} + {if $displayUnitPrice} +

    {l s='(%unit_price%)' d='Shop.Theme.Catalog' sprintf=['%unit_price%' => $product.unit_price_full]}

    + {/if} + {/block} +
    + {/block} + + {block name='product_without_taxes'} + {if $priceDisplay == 2} +

    {l s='%price% tax excl.' d='Shop.Theme.Catalog' sprintf=['%price%' => $product.price_tax_exc]}

    + {/if} + {/block} + + {block name='product_pack_price'} + {if $displayPackPrice} +

    {l s='Instead of %price%' d='Shop.Theme.Catalog' sprintf=['%price%' => $noPackPrice]}

    + {/if} + {/block} + + {block name='product_ecotax'} + {if $product.ecotax.amount > 0} +

    {l s='Including %amount% for ecotax' d='Shop.Theme.Catalog' sprintf=['%amount%' => $product.ecotax.value]} + {if $product.has_discount} + {l s='(not impacted by the discount)' d='Shop.Theme.Catalog'} + {/if} +

    + {/if} + {/block} + + {hook h='displayProductPriceBlock' product=$product type="weight" hook_origin='product_sheet'} + +
    + {if isset($configuration.taxes_enabled) && !$configuration.taxes_enabled} +

    {l s='No tax' d='Shop.Theme.Catalog'}

    + {elseif $configuration.display_taxes_label} +

    {$product.labels.tax_long}

    + {/if} + {hook h='displayProductPriceBlock' product=$product type="price"} +
    +
    + {l s='Free delivery from' d='Shop.Theme.Global'} 299 zł +
    + {hook h='displayProductPriceBlock' product=$product type="after_price"} +
    +{/if} diff --git a/themes/at_movic/templates/catalog/_partials/product-variants.tpl b/themes/at_movic/templates/catalog/_partials/product-variants.tpl new file mode 100644 index 00000000..6035fc94 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/product-variants.tpl @@ -0,0 +1,92 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + {foreach from=$groups key=id_attribute_group item=group} + {if !empty($group.attributes)} +
    + {$group.name} + {if $group.group_type == 'select'} + + {elseif $group.group_type == 'color'} +
      + {foreach from=$group.attributes key=id_attribute item=group_attribute} +
    • + +
    • + {/foreach} +
    + {elseif $group.group_type == 'radio'} + +
      + {foreach from=$group.attributes key=id_attribute item=group_attribute} + +
    • + +
    • + {/foreach} +
    + {/if} +
    + {/if} + {/foreach} +
    + +{* *} + \ No newline at end of file diff --git a/themes/at_movic/templates/catalog/_partials/products-bottom.tpl b/themes/at_movic/templates/catalog/_partials/products-bottom.tpl new file mode 100644 index 00000000..776fa848 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/products-bottom.tpl @@ -0,0 +1,13 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{* + * Classic theme doesn't use this subtemplate, feel free to do whatever you need here. + * This template is generated at each ajax calls. + * See ProductListingFrontController::getAjaxProductSearchVariables() + *} +
    diff --git a/themes/at_movic/templates/catalog/_partials/products-top.tpl b/themes/at_movic/templates/catalog/_partials/products-top.tpl new file mode 100644 index 00000000..1ce340a0 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/products-top.tpl @@ -0,0 +1,69 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{if !isset($LISTING_GRID_MODE) || !isset($LISTING_PRODUCT_COLUMN) || !isset($LISTING_PRODUCT_COLUMN_MODULE) || !isset($LISTING_PRODUCT_TABLET) || !isset($LISTING_PRODUCT_SMALLDEVICE) || !isset($LISTING_PRODUCT_EXTRASMALLDEVICE) || !isset($LISTING_PRODUCT_MOBILE)} + {block name="setting"} + {include file="layouts/setting.tpl"} + {/block} +{/if} + +
    +
    +
    + {block name='leo_gird_list'} +
    +
    +
    +
    + {/block} + {if $listing.pagination.total_items > 1} +

    {l s='There are %product_count% products.' d='Shop.Theme.Catalog' sprintf=['%product_count%' => $listing.pagination.total_items]}

    + {elseif $listing.pagination.total_items > 0} +

    {l s='There is 1 product.' d='Shop.Theme.Catalog'}

    + {/if} +
    +
    +
    + {block name='sort_by'} + {include file='catalog/_partials/sort-orders.tpl' sort_orders=$listing.sort_orders} + {/block} + + {if !empty($listing.rendered_facets)} +
    + +
    + {/if} +
    +
    +
    + {l s='Showing %from%-%to% of %total% item(s)' d='Shop.Theme.Catalog' sprintf=[ + '%from%' => $listing.pagination.items_shown_from , + '%to%' => $listing.pagination.items_shown_to, + '%total%' => $listing.pagination.total_items + ]} +
    +
    +
    diff --git a/themes/at_movic/templates/catalog/_partials/products.tpl b/themes/at_movic/templates/catalog/_partials/products.tpl new file mode 100644 index 00000000..bc3aca00 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/products.tpl @@ -0,0 +1,41 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    +
    + {assign var="leo_page" value='category'} + {include file='catalog/_partials/miniatures/leo_col_products.tpl' products=$listing.products} +
    + + {block name='pagination'} + {include file='_partials/pagination.tpl' pagination=$listing.pagination} + {/block} + + +
    diff --git a/themes/at_movic/templates/catalog/_partials/quickview.tpl b/themes/at_movic/templates/catalog/_partials/quickview.tpl new file mode 100644 index 00000000..13ad74fe --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/quickview.tpl @@ -0,0 +1,77 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + diff --git a/themes/at_movic/templates/catalog/_partials/sort-orders.tpl b/themes/at_movic/templates/catalog/_partials/sort-orders.tpl new file mode 100644 index 00000000..f7ffd367 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/sort-orders.tpl @@ -0,0 +1,47 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{l s='Sort by:' d='Shop.Theme.Global'} + diff --git a/themes/at_movic/templates/catalog/_partials/variant-links.tpl b/themes/at_movic/templates/catalog/_partials/variant-links.tpl new file mode 100644 index 00000000..2752e355 --- /dev/null +++ b/themes/at_movic/templates/catalog/_partials/variant-links.tpl @@ -0,0 +1,23 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} + diff --git a/themes/at_movic/templates/catalog/brands.tpl b/themes/at_movic/templates/catalog/brands.tpl new file mode 100644 index 00000000..24f67856 --- /dev/null +++ b/themes/at_movic/templates/catalog/brands.tpl @@ -0,0 +1,44 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file=$layout} + +{block name='content'} +
    + + {block name='brand_header'} +

    {l s='Brands' d='Shop.Theme.Catalog'}

    + {/block} + + {block name='brand_miniature'} +
      + {foreach from=$brands item=brand} + {include file='catalog/_partials/miniatures/brand.tpl' brand=$brand} + {/foreach} +
    + {/block} + +
    + +{/block} diff --git a/themes/at_movic/templates/catalog/index.php b/themes/at_movic/templates/catalog/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/catalog/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/catalog/listing/best-sales.tpl b/themes/at_movic/templates/catalog/listing/best-sales.tpl new file mode 100644 index 00000000..f306de5b --- /dev/null +++ b/themes/at_movic/templates/catalog/listing/best-sales.tpl @@ -0,0 +1,12 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{* + * This file allows you to customize your best-sales page. + * You can safely remove it if you want it to appear exactly like all other product listing pages + *} +{extends file='catalog/listing/product-list.tpl'} diff --git a/themes/at_movic/templates/catalog/listing/category.tpl b/themes/at_movic/templates/catalog/listing/category.tpl new file mode 100644 index 00000000..150862d8 --- /dev/null +++ b/themes/at_movic/templates/catalog/listing/category.tpl @@ -0,0 +1,48 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='catalog/listing/product-list.tpl'} + +{block name='product_list_header'} + {include file='catalog/_partials/category-header.tpl' listing=$listing category=$category} + {if isset($LEO_SUBCATEGORY) && $LEO_SUBCATEGORY && isset($subcategories) && count($subcategories) > 0} +
    +
    + {foreach from=$subcategories item=subcategory} +
    +
    + + {$subcategory.name|escape:'html':'UTF-8'} + +
    +
    +

    {$subcategory.name|truncate:25:'...'|escape:'html':'UTF-8'}

    +
    {$subcategory.description|strip_tags|truncate:120:'...'|escape:'html':'UTF-8' nofilter}
    +
    +
    + {/foreach} +
    +
    + {/if} +{/block} diff --git a/themes/at_movic/templates/catalog/listing/index.php b/themes/at_movic/templates/catalog/listing/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/catalog/listing/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/catalog/listing/manufacturer.tpl b/themes/at_movic/templates/catalog/listing/manufacturer.tpl new file mode 100644 index 00000000..7365e8f5 --- /dev/null +++ b/themes/at_movic/templates/catalog/listing/manufacturer.tpl @@ -0,0 +1,31 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='catalog/listing/product-list.tpl'} + +{block name='product_list_header'} +

    {l s='List of products by brand %brand_name%' sprintf=['%brand_name%' => $manufacturer.name] d='Shop.Theme.Catalog'}

    +
    {$manufacturer.short_description nofilter}
    +
    {$manufacturer.description nofilter}
    +{/block} diff --git a/themes/at_movic/templates/catalog/listing/new-products.tpl b/themes/at_movic/templates/catalog/listing/new-products.tpl new file mode 100644 index 00000000..28b0f729 --- /dev/null +++ b/themes/at_movic/templates/catalog/listing/new-products.tpl @@ -0,0 +1,12 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{* + * This file allows you to customize your new-product page. + * You can safely remove it if you want it to appear exactly like all other product listing pages + *} +{extends file='catalog/listing/product-list.tpl'} diff --git a/themes/at_movic/templates/catalog/listing/prices-drop.tpl b/themes/at_movic/templates/catalog/listing/prices-drop.tpl new file mode 100644 index 00000000..665c41f1 --- /dev/null +++ b/themes/at_movic/templates/catalog/listing/prices-drop.tpl @@ -0,0 +1,12 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{* + * This file allows you to customize your price-drop page. + * You can safely remove it if you want it to appear exactly like all other product listing pages + *} +{extends file='catalog/listing/product-list.tpl'} diff --git a/themes/at_movic/templates/catalog/listing/product-list.tpl b/themes/at_movic/templates/catalog/listing/product-list.tpl new file mode 100644 index 00000000..931d38c9 --- /dev/null +++ b/themes/at_movic/templates/catalog/listing/product-list.tpl @@ -0,0 +1,77 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file=$layout} + +{block name='content'} +
    + + {block name='product_list_header'} +

    {$listing.label}

    + {/block} + +
    + {if $listing.products|count} + +
    + {block name='product_list_top'} + {include file='catalog/_partials/products-top.tpl' listing=$listing} + {/block} +
    + + {block name='product_list_active_filters'} +
    + {$listing.rendered_active_filters nofilter} +
    + {/block} + +
    + {block name='product_list'} + {include file='catalog/_partials/products.tpl' listing=$listing} + {/block} +
    + +
    + {block name='product_list_bottom'} + {include file='catalog/_partials/products-bottom.tpl' listing=$listing} + {/block} +
    + + {else} +
    + +
    + {include file='errors/not-found.tpl'} +
    + +
    + {/if} + + {if $category.description} +
    {$category.description nofilter}
    + {/if} +
    + +
    +{/block} diff --git a/themes/at_movic/templates/catalog/listing/search.tpl b/themes/at_movic/templates/catalog/listing/search.tpl new file mode 100644 index 00000000..907f9129 --- /dev/null +++ b/themes/at_movic/templates/catalog/listing/search.tpl @@ -0,0 +1,12 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{* + * This file allows you to customize your search page. + * You can safely remove it if you want it to appear exactly like all other product listing pages + *} +{extends file='catalog/listing/product-list.tpl'} diff --git a/themes/at_movic/templates/catalog/listing/supplier.tpl b/themes/at_movic/templates/catalog/listing/supplier.tpl new file mode 100644 index 00000000..32ba1b90 --- /dev/null +++ b/themes/at_movic/templates/catalog/listing/supplier.tpl @@ -0,0 +1,30 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='catalog/listing/product-list.tpl'} + +{block name='product_list_header'} +

    {l s='List of products by supplier %s' sprintf=[$supplier.name] d='Shop.Theme.Catalog'}

    +
    {$supplier.description nofilter}
    +{/block} diff --git a/themes/at_movic/templates/catalog/manufacturers.tpl b/themes/at_movic/templates/catalog/manufacturers.tpl new file mode 100644 index 00000000..a8680ffd --- /dev/null +++ b/themes/at_movic/templates/catalog/manufacturers.tpl @@ -0,0 +1,25 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='catalog/brands.tpl'} diff --git a/themes/at_movic/templates/catalog/product.tpl b/themes/at_movic/templates/catalog/product.tpl new file mode 100644 index 00000000..313fcc37 --- /dev/null +++ b/themes/at_movic/templates/catalog/product.tpl @@ -0,0 +1,256 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file=$layout} + +{block name='head_seo' prepend} + +{/block} + +{block name='head' append} + + + + + + + {if $product.show_price} + + + + + {/if} + {if isset($product.weight) && ($product.weight != 0)} + + + {/if} +{/block} + +{block name='content'} + + {if isset($product.productLayout) && $product.productLayout != ''} + {hook h='displayLeoProfileProduct' product=$product typeProduct='detail'} + {else} + +
    + + +
    +
    + {block name='page_content_container'} +
    + {block name='page_content'} + + {block name='product_flags'} +
      + {foreach from=$product.flags item=flag} +
    • {$flag.label}
    • + {/foreach} +
    + {/block} + {block name='product_cover_thumbnails'} + {include file='catalog/_partials/product-cover-thumbnails.tpl'} + {/block} + {/block} +
    + {block name='product_images_modal'} + {include file='catalog/_partials/product-images-modal.tpl'} + {/block} + {/block} +
    + +
    + {block name='page_header_container'} + {block name='page_header'} +

    {block name='page_title'}{$product.name}{/block}

    + {/block} + {/block} + + {hook h='displayProductButtons' product=$product} + {hook h='displayLeoProductReviewExtra' product=$product} + + {block name='product_prices'} + {include file='catalog/_partials/product-prices.tpl'} + {/block} + +
    + {block name='product_description_short'} +
    {$product.description_short nofilter}
    + {/block} + + {if $product.is_customizable && count($product.customizations.fields)} + {block name='product_customization'} + {include file="catalog/_partials/product-customization.tpl" customizations=$product.customizations} + {/block} + {/if} + +
    + {block name='product_buy'} +
    + + + + + {block name='product_variants'} + {include file='catalog/_partials/product-variants.tpl'} + {/block} + + {block name='product_pack'} + {if $packItems} +
    +

    {l s='This pack contains' d='Shop.Theme.Catalog'}

    + {foreach from=$packItems item="product_pack"} + {block name='product_miniature'} + {include file='catalog/_partials/miniatures/pack-product.tpl' product=$product_pack} + {/block} + {/foreach} +
    + {/if} + {/block} + + {block name='product_discounts'} + {include file='catalog/_partials/product-discounts.tpl'} + {/block} + + {block name='product_add_to_cart'} + {include file='catalog/_partials/product-add-to-cart.tpl'} + {/block} + + {block name='product_additional_info'} + {include file='catalog/_partials/product-additional-info.tpl'} + {/block} + + {* Input to refresh product HTML removed, block kept for compatibility with themes *} + {block name='product_refresh'}{/block} +
    + {/block} +
    + + {block name='hook_display_reassurance'} + {hook h='displayReassurance'} + {/block} + +
    +
    +
    + + {block name='product_info'} + {if isset($USE_PTABS) && $USE_PTABS == 'tab'} + {include file="sub/product_info/tab.tpl"} + {else if isset($USE_PTABS) && $USE_PTABS == 'accordion'} + {include file="sub/product_info/accordions.tpl"} + {else} + {include file="sub/product_info/default.tpl"} + {/if} + {/block} + +{block name='product_accessories'} + {if $accessories} +
    +

    {l s='You might also like' d='Shop.Theme.Catalog'}

    +
    +
    +
    + {foreach from=$accessories item="product_accessory"} +
    + {block name='product_miniature'} + {if isset($productProfileDefault) && $productProfileDefault} + {* exits THEME_NAME/profiles/profile_name.tpl -> load template*} + {hook h='displayLeoProfileProduct' product=$product_accessory profile=$productProfileDefault} + {else} + {include file='catalog/_partials/miniatures/product.tpl' product=$product_accessory} + {/if} + {/block} +
    + {/foreach} +
    +
    +
    +
    + {/if} +{/block} + + + + {block name='product_footer'} + {hook h='displayFooterProduct' product=$product category=$category} + {/block} + + {block name='product_images_modal'} + {include file='catalog/_partials/product-images-modal.tpl'} + {/block} + + {block name='page_footer_container'} +
    + {block name='page_footer'} + + {/block} +
    + {/block} + +
    + {/if} +{/block} diff --git a/themes/at_movic/templates/catalog/suppliers.tpl b/themes/at_movic/templates/catalog/suppliers.tpl new file mode 100644 index 00000000..b2eea090 --- /dev/null +++ b/themes/at_movic/templates/catalog/suppliers.tpl @@ -0,0 +1,29 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='catalog/brands.tpl'} + +{block name='brand_header'} +

    {l s='Suppliers' d='Shop.Theme.Catalog'}

    +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/address-form.tpl b/themes/at_movic/templates/checkout/_partials/address-form.tpl new file mode 100644 index 00000000..c8af580d --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/address-form.tpl @@ -0,0 +1,53 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{extends file='customer/_partials/address-form.tpl'} + +{block name='form_field'} + {if $field.name eq "alias"} + {* we don't ask for alias here *} + {else} + {$smarty.block.parent} + {/if} +{/block} + +{block name="address_form_url"} +
    +{/block} + +{block name='form_fields' append} + + {if $type === "delivery"} +
    +
    + + +
    +
    + {/if} +{/block} + +{block name='form_buttons'} + {if !$form_has_continue_button} + + {l s='Cancel' d='Shop.Theme.Actions'} + {else} + + + {if $customer.addresses|count > 0} + {l s='Cancel' d='Shop.Theme.Actions'} + {/if} +
    + {/if} +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/address-selector-block.tpl b/themes/at_movic/templates/checkout/_partials/address-selector-block.tpl new file mode 100644 index 00000000..df247826 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/address-selector-block.tpl @@ -0,0 +1,72 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='address_selector_blocks'} + {foreach $addresses as $address} + + {/foreach} + {if $interactive} +

    + +

    + {/if} +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/cart-detailed-actions.tpl b/themes/at_movic/templates/checkout/_partials/cart-detailed-actions.tpl new file mode 100644 index 00000000..96e86db0 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/cart-detailed-actions.tpl @@ -0,0 +1,45 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='cart_detailed_actions'} +
    + {if $cart.minimalPurchaseRequired} + +
    + +
    + {elseif empty($cart.products) } +
    + +
    + {else} +
    + {l s='Proceed to checkout' d='Shop.Theme.Actions'} + {hook h='displayExpressCheckout'} +
    + {/if} +
    +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/cart-detailed-product-line.tpl b/themes/at_movic/templates/checkout/_partials/cart-detailed-product-line.tpl new file mode 100644 index 00000000..25618624 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/cart-detailed-product-line.tpl @@ -0,0 +1,175 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + +
    + + {$product.name|escape:'quotes'} + +
    + + +
    + + +
    + {if $product.has_discount} +
    + {$product.regular_price} + {if $product.discount_type === 'percentage'} + + -{$product.discount_percentage_absolute} + + {else} + + -{$product.discount_to_display} + + {/if} +
    + {/if} +
    + {$product.price} + {if $product.unit_price_full} +
    {$product.unit_price_full}
    + {/if} +
    +
    + +
    + + {foreach from=$product.attributes key="attribute" item="value"} +
    + {$attribute}: + {$value} +
    + {/foreach} + + {if is_array($product.customizations) && $product.customizations|count} +
    + {block name='cart_detailed_product_line_customization'} + {foreach from=$product.customizations item="customization"} + {l s='Product customization' d='Shop.Theme.Catalog'} + + {/foreach} + {/block} + {/if} +
    + + +
    +
    +
    +
    +
    +
    + {if isset($product.is_gift) && $product.is_gift} + {$product.quantity} + {else} + + {/if} +
    +
    + + + {if isset($product.is_gift) && $product.is_gift} + {l s='Gift' d='Shop.Theme.Checkout'} + {else} + {$product.total} + {/if} + + +
    +
    +
    +
    +
    + + {if !isset($product.is_gift) || !$product.is_gift} + delete + {/if} + + + {block name='hook_cart_extra_product_actions'} + {hook h='displayCartExtraProductActions' product=$product} + {/block} + +
    +
    +
    +
    + +
    +
    diff --git a/themes/at_movic/templates/checkout/_partials/cart-detailed-totals.tpl b/themes/at_movic/templates/checkout/_partials/cart-detailed-totals.tpl new file mode 100644 index 00000000..1a5950b2 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/cart-detailed-totals.tpl @@ -0,0 +1,58 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='cart_detailed_totals'} +
    + +
    + {foreach from=$cart.subtotals item="subtotal"} + {if $subtotal.value && $subtotal.type !== 'tax'} +
    + + {if 'products' == $subtotal.type} + {$cart.summary_string} + {else} + {$subtotal.label} + {/if} + + + {if 'discount' == $subtotal.type}- {/if}{$subtotal.value} + + {if $subtotal.type === 'shipping'} +
    {hook h='displayCheckoutSubtotalDetails' subtotal=$subtotal}
    + {/if} +
    + {/if} + {/foreach} +
    + + {block name='cart_summary_totals'} + {include file='checkout/_partials/cart-summary-totals.tpl' cart=$cart} + {/block} + + {block name='cart_voucher'} + {include file='checkout/_partials/cart-voucher.tpl'} + {/block} +
    +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/cart-detailed.tpl b/themes/at_movic/templates/checkout/_partials/cart-detailed.tpl new file mode 100644 index 00000000..731e9135 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/cart-detailed.tpl @@ -0,0 +1,42 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='cart_detailed_product'} +
    + {if $cart.products} +
      + {foreach from=$cart.products item=product} +
    • + {block name='cart_detailed_product_line'} + {include file='checkout/_partials/cart-detailed-product-line.tpl' product=$product} + {/block} +
    • + {if is_array($product.customizations) && $product.customizations|count >1}
      {/if} + {/foreach} +
    + {else} + {l s='There are no more items in your cart' d='Shop.Theme.Checkout'} + {/if} +
    +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/cart-summary-items-subtotal.tpl b/themes/at_movic/templates/checkout/_partials/cart-summary-items-subtotal.tpl new file mode 100644 index 00000000..ed4aff79 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/cart-summary-items-subtotal.tpl @@ -0,0 +1,30 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='cart_summary_items_subtotal'} +
    + {$cart.summary_string} + {$cart.subtotals.products.amount} +
    +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/cart-summary-product-line.tpl b/themes/at_movic/templates/checkout/_partials/cart-summary-product-line.tpl new file mode 100644 index 00000000..709eb8b7 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/cart-summary-product-line.tpl @@ -0,0 +1,44 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='cart_summary_product_line'} +
    + + {$product.name} + +
    +
    + {$product.name} + x{$product.quantity} + {$product.price} + {hook h='displayProductPriceBlock' product=$product type="unit_price"} + {foreach from=$product.attributes key="attribute" item="value"} +
    + {$attribute}: + {$value} +
    + {/foreach} +
    +
    +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/cart-summary-subtotals.tpl b/themes/at_movic/templates/checkout/_partials/cart-summary-subtotals.tpl new file mode 100644 index 00000000..50454054 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/cart-summary-subtotals.tpl @@ -0,0 +1,44 @@ +{** + * PrestaShop and Contributors + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to https://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA and Contributors + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + +
    + + {foreach from=$cart.subtotals item="subtotal"} + {if $subtotal.value && $subtotal.type !== 'tax'} +
    + + + {$subtotal.label} + + + + {$subtotal.value} + +
    + {/if} + {/foreach} + +
    + diff --git a/themes/at_movic/templates/checkout/_partials/cart-summary-totals.tpl b/themes/at_movic/templates/checkout/_partials/cart-summary-totals.tpl new file mode 100644 index 00000000..526e7b85 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/cart-summary-totals.tpl @@ -0,0 +1,65 @@ +{** + * PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + + {block name='cart_summary_total'} + {if !$configuration.display_prices_tax_incl && $configuration.taxes_enabled} +
    + {$cart.totals.total.label} {$cart.labels.tax_short} + {$cart.totals.total.value} +
    +
    + {$cart.totals.total_including_tax.label} + {$cart.totals.total_including_tax.value} +
    + {else} +
    + {$cart.totals.total.label} {if $configuration.taxes_enabled}{$cart.labels.tax_short}{/if} + {$cart.totals.total.value} +
    + {/if} + {/block} + {block name='cart_summary_tax'} + {if $cart.subtotals.tax} +
    + {l s='%label%:' sprintf=['%label%' => $cart.subtotals.tax.label] d='Shop.Theme.Global'} + {$cart.subtotals.tax.value} +
    + {/if} + {/block} + + {assign var='freeshipping_price' value=Configuration::get('PS_SHIPPING_FREE_PRICE')} + {if $freeshipping_price} + {math equation='a-b' a=$cart.totals.total.amount b=$cart.subtotals.shipping.amount assign='total_without_shipping'} + {math equation='a-b' a=$freeshipping_price b=$total_without_shipping assign='remaining_to_spend'} + {if $remaining_to_spend > 0} +
    + {assign var=currency value=Context::getContext()->currency} +

    {l s='Spent' d='Shop.Theme.Global'} {Tools::displayPrice($remaining_to_spend,$currency)}, {l s='To get free ship!' d='Shop.Theme.Global'}

    +
    + {/if} + {/if} + +
    diff --git a/themes/at_movic/templates/checkout/_partials/cart-summary.tpl b/themes/at_movic/templates/checkout/_partials/cart-summary.tpl new file mode 100644 index 00000000..ee8ef3a8 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/cart-summary.tpl @@ -0,0 +1,69 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    +
    + {block name='hook_checkout_summary_top'} + {hook h='displayCheckoutSummaryTop'} + {/block} + + {block name='cart_summary_products'} +
    + +

    {$cart.summary_string}

    + +

    + + {l s='show details' d='Shop.Theme.Actions'} + expand_more + +

    + + {block name='cart_summary_product_list'} +
    +
      + {foreach from=$cart.products item=product} +
    • {include file='checkout/_partials/cart-summary-product-line.tpl' product=$product}
    • + {/foreach} +
    +
    + {/block} +
    + {/block} + + {block name='cart_summary_subtotals'} + {include file='checkout/_partials/cart-summary-subtotals.tpl' cart=$cart} + {/block} + +
    + + {block name='cart_summary_totals'} + {include file='checkout/_partials/cart-summary-totals.tpl' cart=$cart} + {/block} + + {block name='cart_summary_voucher'} + {include file='checkout/_partials/cart-voucher.tpl'} + {/block} + +
    diff --git a/themes/at_movic/templates/checkout/_partials/cart-voucher.tpl b/themes/at_movic/templates/checkout/_partials/cart-voucher.tpl new file mode 100644 index 00000000..6ff4a36c --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/cart-voucher.tpl @@ -0,0 +1,91 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{if $cart.vouchers.allowed} + {block name='cart_voucher'} +
    +
    + {if $cart.vouchers.added} + {block name='cart_voucher_list'} +
      + {foreach from=$cart.vouchers.added item=voucher} +
    • + {$voucher.name} +
      + {$voucher.reduction_formatted} + +
      +
    • + {/foreach} +
    + {/block} + {/if} + +

    + + {l s='Have a promo code?' d='Shop.Theme.Checkout'} + +

    + +
    +
    + {block name='cart_voucher_form'} +
    + + + + +
    + {/block} + + {block name='cart_voucher_notifications'} + + {/block} + + + {l s='Close' d='Shop.Theme.Checkout'} + +
    +
    + + {if $cart.discounts|count > 0} +

    + {l s='Take advantage of our exclusive offers:' d='Shop.Theme.Actions'} +

    +
      + {foreach from=$cart.discounts item=discount} +
    • + + {$discount.code} - {$discount.name} + +
    • + {/foreach} +
    + {/if} +
    +
    + {/block} +{/if} diff --git a/themes/at_movic/templates/checkout/_partials/customer-form.tpl b/themes/at_movic/templates/checkout/_partials/customer-form.tpl new file mode 100644 index 00000000..1c371878 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/customer-form.tpl @@ -0,0 +1,50 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends "customer/_partials/customer-form.tpl"} + +{block "form_field"} + {if $field.name === 'password' and $guest_allowed} +

    + {l s='Create an account' d='Shop.Theme.Checkout'} {l s='(optional)' d='Shop.Theme.Checkout'} +
    + {l s='And save time on your next order!' d='Shop.Theme.Checkout'} +

    + {$smarty.block.parent} + {else} + {$smarty.block.parent} + {/if} +{/block} + +{block "form_buttons"} + +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/footer.tpl b/themes/at_movic/templates/checkout/_partials/footer.tpl new file mode 100644 index 00000000..d12dc5c9 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/footer.tpl @@ -0,0 +1,53 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='footer'} + + + +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/header.tpl b/themes/at_movic/templates/checkout/_partials/header.tpl new file mode 100644 index 00000000..30d4a46c --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/header.tpl @@ -0,0 +1,61 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='header'} + {block name='header_nav'} + + {/block} + + {block name='header_top'} +
    + {if isset($fullwidth_hook.displayTop) AND $fullwidth_hook.displayTop == 0} +
    + {/if} +
    {hook h='displayTop'}
    + {if isset($fullwidth_hook.displayTop) AND $fullwidth_hook.displayTop == 0} +
    + {/if} +
    + {hook h='displayNavFullWidth'} + {/block} +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/index.php b/themes/at_movic/templates/checkout/_partials/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/checkout/_partials/login-form.tpl b/themes/at_movic/templates/checkout/_partials/login-form.tpl new file mode 100644 index 00000000..032045dd --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/login-form.tpl @@ -0,0 +1,37 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='customer/_partials/login-form.tpl'} + +{block name='form_buttons'} + +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/order-confirmation-table.tpl b/themes/at_movic/templates/checkout/_partials/order-confirmation-table.tpl new file mode 100644 index 00000000..305ea636 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/order-confirmation-table.tpl @@ -0,0 +1,134 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    +
    + {block name='order_items_table_head'} +

    {l s='Order items' d='Shop.Theme.Checkout'}

    +

    {l s='Unit price' d='Shop.Theme.Checkout'}

    +

    {l s='Quantity' d='Shop.Theme.Checkout'}

    +

    {l s='Total products' d='Shop.Theme.Checkout'}

    + {/block} +
    + +
    + + {block name='order_confirmation_table'} + {foreach from=$products item=product} +
    +
    + + + +
    +
    + {if $add_product_link}{/if} + {$product.name} + {if $add_product_link}{/if} + {if is_array($product.customizations) && $product.customizations|count} + {foreach from=$product.customizations item="customization"} + + + {/foreach} + {/if} + {hook h='displayProductPriceBlock' product=$product type="unit_price"} +
    +
    +
    +
    {$product.price}
    +
    {$product.quantity}
    +
    {$product.total}
    +
    +
    +
    + {/foreach} + +
    + + + {foreach $subtotals as $subtotal} + {if $subtotal.type !== 'tax' && $subtotal.label !== null} + {if $customer.id_default_group>3} + + + + + {else} + + + + + {/if} + {/if} + {/foreach} + + {if !$configuration.display_prices_tax_incl && $configuration.taxes_enabled} + + + + + {else} + + + + + {/if} +
    {if $subtotal.type == 'products'}{if $language.id == 1}Produkty netto{else}Net products{/if}{/if}{if $subtotal.type == 'shipping'}{if $language.id == 1}Wysyłka netto{else}Net shipping{/if}{/if}{if 'discount' == $subtotal.type}- {/if}{$subtotal.value}
    {$subtotal.label}{if 'discount' == $subtotal.type}- {/if}{$subtotal.value}
    {if $customer.id_default_group>3}{if $language.id == 1}Razem brutto{else}Total gross{/if}{else}{$totals.total_including_tax.label}{/if}{$totals.total_including_tax.value}
    {$totals.total.label} {if $configuration.taxes_enabled}{$labels.tax_short}{/if}{$totals.total.value}
    + {/block} + +
    +
    diff --git a/themes/at_movic/templates/checkout/_partials/order-final-summary-table.tpl b/themes/at_movic/templates/checkout/_partials/order-final-summary-table.tpl new file mode 100644 index 00000000..07398fdd --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/order-final-summary-table.tpl @@ -0,0 +1,38 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='checkout/_partials/order-confirmation-table.tpl'} + +{block name='order-items-table-head'} +
    +

    + {if $products_count == 1} + {l s='%product_count% item in your cart' sprintf=['%product_count%' => $products_count] d='Shop.Theme.Checkout'} + {else} + {l s='%products_count% items in your cart' sprintf=['%products_count%' => $products_count] d='Shop.Theme.Checkout'} + {/if} + {l s='edit' d='Shop.Theme.Actions'} +

    +
    +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/order-final-summary.tpl b/themes/at_movic/templates/checkout/_partials/order-final-summary.tpl new file mode 100644 index 00000000..ab687431 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/order-final-summary.tpl @@ -0,0 +1,103 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    +
    +
    +

    {l s='Please check your order before payment' d='Shop.Theme.Checkout'}

    +
    +
    + +
    +
    +

    + {l s='Addresses' d='Shop.Theme.Checkout'} + {l s='edit' d='Shop.Theme.Actions'} +

    +
    +
    +
    +
    +
    +
    +

    {l s='Your Delivery Address' d='Shop.Theme.Checkout'}

    + {$customer.addresses[$cart.id_address_delivery]['formatted'] nofilter} +
    +
    +
    +
    +
    +
    +

    {l s='Your Invoice Address' d='Shop.Theme.Checkout'}

    + {$customer.addresses[$cart.id_address_invoice]['formatted'] nofilter} +
    +
    +
    +
    + +
    +
    +

    + {l s='Shipping Method' d='Shop.Theme.Checkout'} + {l s='edit' d='Shop.Theme.Actions'} +

    + +
    +
    +
    +
    + {if $selected_delivery_option.logo} + {$selected_delivery_option.name} + {else} +   + {/if} +
    +
    +
    + {$selected_delivery_option.name} +
    +
    + {{assign var='delay' value=$selected_delivery_option.delay|replace:',':'
    '}{$delay|unescape: "html" nofilter}
    +
    +
    + {$selected_delivery_option.price} +
    +
    +
    +
    +
    + +
    + {block name='order_confirmation_table'} + {include file='checkout/_partials/order-final-summary-table.tpl' + products=$cart.products + products_count=$cart.products_count + subtotals=$cart.subtotals + totals=$cart.totals + labels=$cart.labels + add_product_link=true + } + {/block} +
    +
    diff --git a/themes/at_movic/templates/checkout/_partials/steps/addresses.tpl b/themes/at_movic/templates/checkout/_partials/steps/addresses.tpl new file mode 100644 index 00000000..5c2c662e --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/steps/addresses.tpl @@ -0,0 +1,136 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='checkout/_partials/steps/checkout-step.tpl'} + +{block name='step_content'} +
    +
    + + {if !$use_same_address} +

    {l s='Shipping Address' d='Shop.Theme.Checkout'}

    + {/if} + + {if $use_same_address && !$cart.is_virtual} +

    + {l s='The selected address will be used both as your personal address (for invoice) and as your delivery address.' d='Shop.Theme.Checkout'} +

    + {elseif $use_same_address && $cart.is_virtual} +

    + {l s='The selected address will be used as your personal address (for invoice).' d='Shop.Theme.Checkout'} +

    + {/if} + + {if $show_delivery_address_form} +
    + {render file = 'checkout/_partials/address-form.tpl' + ui = $address_form + use_same_address = $use_same_address + type = "delivery" + form_has_continue_button = $form_has_continue_button + } +
    + {elseif $customer.addresses|count > 0} +
    + {include file = 'checkout/_partials/address-selector-block.tpl' + addresses = $customer.addresses + name = "id_address_delivery" + selected = $id_address_delivery + type = "delivery" + interactive = !$show_delivery_address_form and !$show_invoice_address_form + } +
    + + {if isset($delivery_address_error)} +

    {$delivery_address_error.exception}

    + {else} + + {/if} + +

    + {l s='add new address' d='Shop.Theme.Actions'} +

    + + {if $use_same_address && !$cart.is_virtual} +

    + + {l s='Billing address differs from shipping address' d='Shop.Theme.Checkout'} + +

    + {/if} + + {/if} + + {if !$use_same_address} + + + {if $show_invoice_address_form} +
    + {render file = 'checkout/_partials/address-form.tpl' + ui = $address_form + use_same_address = $use_same_address + type = "invoice" + form_has_continue_button = $form_has_continue_button + } +
    + {else} +
    + {include file = 'checkout/_partials/address-selector-block.tpl' + addresses = $customer.addresses + name = "id_address_invoice" + selected = $id_address_invoice + type = "invoice" + interactive = !$show_delivery_address_form and !$show_invoice_address_form + } +
    + + {if isset($invoice_address_error)} +

    {$invoice_address_error.exception}

    + {else} + + {/if} + +

    + {l s='add new address' d='Shop.Theme.Actions'} +

    + {/if} + + {/if} + + {if !$form_has_continue_button} +
    + + +
    + {/if} + +
    +
    +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/steps/checkout-step.tpl b/themes/at_movic/templates/checkout/_partials/steps/checkout-step.tpl new file mode 100644 index 00000000..362d2c47 --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/steps/checkout-step.tpl @@ -0,0 +1,46 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='step'} +
    +

    + + {$position} + {$title} + {l s='Edit' d='Shop.Theme.Actions'} +

    + +
    + {block name='step_content'}DUMMY STEP CONTENT{/block} +
    +
    +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/steps/index.php b/themes/at_movic/templates/checkout/_partials/steps/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/steps/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/checkout/_partials/steps/payment.tpl b/themes/at_movic/templates/checkout/_partials/steps/payment.tpl new file mode 100644 index 00000000..ecf42e6e --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/steps/payment.tpl @@ -0,0 +1,184 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{extends file='checkout/_partials/steps/checkout-step.tpl'} + +{block name='step_content'} + + {hook h='displayPaymentTop'} + + {* used by javascript to correctly handle cart updates when we are on payment step (eg vouchers added) *} + + + {if !empty($display_transaction_updated_info)} +

    + {l s='Transaction amount has been correctly updated' d='Shop.Theme.Checkout'} +

    + {/if} + + {if $is_free} +

    {l s='No payment needed for this order' d='Shop.Theme.Checkout'}

    + {/if} +
    + {foreach from=$payment_options item="module_options"} + {foreach from=$module_options item="option"} +
    +
    + {* This is the way an option should be selected when Javascript is enabled *} + + + + + {* This is the way an option should be selected when Javascript is disabled *} +
    + {if $option.id === $selected_payment_option} + {l s='Selected' d='Shop.Theme.Checkout'} + {else} + + {/if} +
    + + + +
    +
    + + {if $option.additionalInformation} +
    + {$option.additionalInformation nofilter} +
    + {/if} + +
    + {if $option.form} + {$option.form nofilter} + {else} +
    + {foreach from=$option.inputs item=input} + + {/foreach} + +
    + {/if} +
    + {/foreach} + {foreachelse} +

    {l s='Unfortunately, there are no payment method available.' d='Shop.Theme.Checkout'}

    + {/foreach} +
    + + {if $conditions_to_approve|count} +

    + {* At the moment, we're not showing the checkboxes when JS is disabled + because it makes ensuring they were checked very tricky and overcomplicates + the template. Might change later. + *} + {l s='By confirming the order, you certify that you have read and agree with all of the conditions below:' d='Shop.Theme.Checkout'} +

    + +
    +
      + {foreach from=$conditions_to_approve item="condition" key="condition_name"} +
    • +
      + + + + +
      +
      + +
      +
    • + {/foreach} +
    +
    + {/if} + + {if $show_final_summary} + {include file='checkout/_partials/order-final-summary.tpl'} + {/if} + +
    +
    + + {if $show_final_summary} + + {/if} +
    +
    + {if $selected_payment_option and $all_conditions_approved} + + {/if} +
    +
    + + {hook h='displayPaymentByBinaries'} + + +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/steps/personal-information.tpl b/themes/at_movic/templates/checkout/_partials/steps/personal-information.tpl new file mode 100644 index 00000000..15e5734b --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/steps/personal-information.tpl @@ -0,0 +1,105 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{extends file='checkout/_partials/steps/checkout-step.tpl'} + +{block name='step_content'} + {hook h='displayPersonalInformationTop' customer=$customer} + + {if $customer.is_logged && !$customer.is_guest} + +

    + {* [1][/1] is for a HTML tag. *} + {l s='Connected as [1]%firstname% %lastname%[/1].' + d='Shop.Theme.Customeraccount' + sprintf=[ + '[1]' => "", + '[/1]' => "", + '%firstname%' => $customer.firstname, + '%lastname%' => $customer.lastname + ] + } +

    +

    + {* [1][/1] is for a HTML tag. *} + {l + s='Not you? [1]Log out[/1]' + d='Shop.Theme.Customeraccount' + sprintf=[ + '[1]' => "", + '[/1]' => "" + ] + } +

    + {if !isset($empty_cart_on_logout) || $empty_cart_on_logout} +

    {l s='If you sign out now, your cart will be emptied.' d='Shop.Theme.Checkout'}

    + {/if} + +
    +
    + +
    + +
    + + {else} + + +
    + + +
    + + + {/if} +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/steps/shipping.tpl b/themes/at_movic/templates/checkout/_partials/steps/shipping.tpl new file mode 100644 index 00000000..10ab5faa --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/steps/shipping.tpl @@ -0,0 +1,125 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='checkout/_partials/steps/checkout-step.tpl'} + +{block name='step_content'} +
    + {$hookDisplayBeforeCarrier nofilter} +
    +
    + +
    + {if $delivery_options|count} +
    +
    + {block name='delivery_options'} +
    + {foreach from=$delivery_options item=carrier key=carrier_id} +
    +
    + + + + +
    + +
    + +
    + {/foreach} +
    + {/block} +
    +
    + + +
    + + {if $recyclablePackAllowed} + + + + + + {/if} + + {if $gift.allowed} + + + + + + +
    + + +
    + {/if} + +
    +
    + +
    + {else} +

    {l s='Unfortunately, there are no carriers available for your delivery address.' d='Shop.Theme.Checkout'}

    + {/if} +
    + +
    + {$hookDisplayAfterCarrier nofilter} +
    + +
    +{/block} diff --git a/themes/at_movic/templates/checkout/_partials/steps/unreachable.tpl b/themes/at_movic/templates/checkout/_partials/steps/unreachable.tpl new file mode 100644 index 00000000..ad374a4d --- /dev/null +++ b/themes/at_movic/templates/checkout/_partials/steps/unreachable.tpl @@ -0,0 +1,31 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='step'} +
    +

    + {$position} {$title} +

    +
    +{/block} diff --git a/themes/at_movic/templates/checkout/cart-empty.tpl b/themes/at_movic/templates/checkout/cart-empty.tpl new file mode 100644 index 00000000..30897877 --- /dev/null +++ b/themes/at_movic/templates/checkout/cart-empty.tpl @@ -0,0 +1,45 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='checkout/cart.tpl'} + +{block name='content' append} + {hook h='displayCrossSellingShoppingCart'} +{/block} + +{block name='continue_shopping' append} + + chevron_left{l s='Continue shopping' d='Shop.Theme.Actions'} + +{/block} + +{block name='cart_actions'} +
    + +
    +{/block} + +{block name='continue_shopping'}{/block} +{block name='cart_voucher'}{/block} +{block name='display_reassurance'}{/block} diff --git a/themes/at_movic/templates/checkout/cart.tpl b/themes/at_movic/templates/checkout/cart.tpl new file mode 100644 index 00000000..dc53f92e --- /dev/null +++ b/themes/at_movic/templates/checkout/cart.tpl @@ -0,0 +1,87 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file=$layout} + +{block name='content'} + +
    +
    + + +
    + + +
    +
    +

    {l s='Shopping Cart' d='Shop.Theme.Checkout'}

    +
    +
    + {block name='cart_overview'} + {include file='checkout/_partials/cart-detailed.tpl' cart=$cart} + {/block} +
    + + {block name='continue_shopping'} + + chevron_left{l s='Continue shopping' d='Shop.Theme.Actions'} + + {/block} + + + {block name='hook_shopping_cart_footer'} + {hook h='displayShoppingCartFooter'} + {/block} +
    + + +
    + + {block name='cart_summary'} +
    + + {block name='hook_shopping_cart'} + {hook h='displayShoppingCart'} + {/block} + + {block name='cart_totals'} + {include file='checkout/_partials/cart-detailed-totals.tpl' cart=$cart} + {/block} + + {block name='cart_actions'} + {include file='checkout/_partials/cart-detailed-actions.tpl' cart=$cart} + {/block} + +
    + {/block} + + {block name='hook_reassurance'} + {hook h='displayReassurance'} + {/block} + +
    + +
    +
    +{/block} diff --git a/themes/at_movic/templates/checkout/checkout-process.tpl b/themes/at_movic/templates/checkout/checkout-process.tpl new file mode 100644 index 00000000..1d309db3 --- /dev/null +++ b/themes/at_movic/templates/checkout/checkout-process.tpl @@ -0,0 +1,30 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{foreach from=$steps item="step" key="index"} + {render identifier = $step.identifier + position = ($index + 1) + ui = $step.ui + } +{/foreach} diff --git a/themes/at_movic/templates/checkout/checkout.tpl b/themes/at_movic/templates/checkout/checkout.tpl new file mode 100644 index 00000000..32138c1c --- /dev/null +++ b/themes/at_movic/templates/checkout/checkout.tpl @@ -0,0 +1,127 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + + + + {block name='head'} + {include file='_partials/head.tpl'} + {/block} + + + +
    + {block name='hook_after_body_opening_tag'} + {hook h='displayAfterBodyOpeningTag'} + {/block} + + + + {block name='notifications'} + {include file='_partials/notifications.tpl'} + {/block} + +
    + {hook h="displayWrapperTop"} +
    + + {block name='content'} +
    +
    +
    + {block name='cart_summary'} + {render file='checkout/checkout-process.tpl' ui=$checkout_process} + {/block} +
    +
    + + {block name='cart_summary'} + {include file='checkout/_partials/cart-summary.tpl' cart = $cart} + {/block} + + {hook h='displayReassurance'} +
    +
    +
    + {/block} +
    + {hook h="displayWrapperBottom"} +
    + +
    + {block name='hook_footer_before'} + + {/block} + {block name='hook_footer'} + + {/block} + {block name='hook_footer_after'} + + {/block} + {if isset($LEO_BACKTOP) && $LEO_BACKTOP} +
    + {/if} +
    + + {block name='javascript_bottom'} + {include file="_partials/javascript.tpl" javascript=$javascript.bottom} + {/block} + + {block name='hook_before_body_closing_tag'} + {hook h='displayBeforeBodyClosingTag'} + {/block} +
    + + + diff --git a/themes/at_movic/templates/checkout/index.php b/themes/at_movic/templates/checkout/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/checkout/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/checkout/order-confirmation.tpl b/themes/at_movic/templates/checkout/order-confirmation.tpl new file mode 100644 index 00000000..a9afac1c --- /dev/null +++ b/themes/at_movic/templates/checkout/order-confirmation.tpl @@ -0,0 +1,209 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{extends file='page.tpl'} + +{block name='page_content_container' prepend} +
    +
    +
    +
    + + {block name='order_confirmation_header'} +

    + {l s='Your order is confirmed' d='Shop.Theme.Checkout'} +

    + {/block} + +

    + {l s='An email has been sent to your mail address %email%.' d='Shop.Theme.Checkout' sprintf=['%email%' => $customer.email]} + {if $order.details.invoice_url} + {* [1][/1] is for a HTML tag. *} + {l + s='You can also [1]download your invoice[/1]' + d='Shop.Theme.Checkout' + sprintf=[ + '[1]' => "", + '[/1]' => "" + ] + } + {/if} +

    + {literal} + + + + + {/literal} + + {block name='hook_order_confirmation'} + {$HOOK_ORDER_CONFIRMATION nofilter} + {/block} + +
    +
    +
    +
    +{/block} + +{block name='page_content_container'} +
    +
    +
    + + {block name='order_confirmation_table'} + {include + file='checkout/_partials/order-confirmation-table.tpl' + products=$order.products + subtotals=$order.subtotals + totals=$order.totals + labels=$order.labels + add_product_link=false + } + {/block} + + {block name='order_details'} +
    +

    {l s='Order details' d='Shop.Theme.Checkout'}:

    +
      +
    • {l s='Order reference: %reference%' d='Shop.Theme.Checkout' sprintf=['%reference%' => $order.details.reference]}
    • + {php} + $user_group = Customer::getDefaultGroupId( Context::getContext() -> customer -> id ); + if ( $user_group >= 4 ) + { + {/php} + {if $order.details.payment == 'Płatności elektroniczne'} +
    • {l s='Payment method: %method%' d='Shop.Theme.Checkout' sprintf=['%method%' => 'Przedpłata / Przelew']}
    • + {else} +
    • {l s='Payment method: %method%' d='Shop.Theme.Checkout' sprintf=['%method%' => $order.details.payment]}
    • + {/if} + {php} + } + else + { + {/php} +
    • {l s='Payment method: %method%' d='Shop.Theme.Checkout' sprintf=['%method%' => $order.details.payment]}
    • + {php} + } + {/php} + {if !$order.details.is_virtual} +
    • + {if $order.carrier.name == 'Odbiór osobisty' && $language.id == 2} + Shipping method: Pickup in person
      + {elseif $order.carrier.name == 'Odbiór osobisty' && $language.id == 1} + Metoda dostawy: odbiór osobisty
      + {elseif $order.carrier.name == 'Kurier' && $language.id == 2 } + Shipping method: Courier + {elseif $order.carrier.name == 'Kurier DPD' && $language.id == 2 } + Shipping method: DPD Courier + {elseif $order.carrier.name == 'Kurier DPD - za pobraniem' && $language.id == 2 } + Shipping method: DPD Courier - cash on delivery + {else} + {l s='Shipping method: %method%' d='Shop.Theme.Checkout' sprintf=['%method%' => $order.carrier.name]}
      + {/if} + {$order.carrier.delay} +
    • + {/if} +
    +
    + {/block} + +
    +
    +
    + + {block name='hook_payment_return'} + {if ! empty($HOOK_PAYMENT_RETURN)} +
    +
    +
    +
    + {$HOOK_PAYMENT_RETURN nofilter} +
    +
    +
    +
    + {/if} + {/block} + {php} + $user_group = Customer::getDefaultGroupId( Context::getContext() -> customer -> id ); + if ( $user_group >= 4 ) + { + $order = Context::getContext() -> smarty->getTemplateVars( 'order' ); + if ( $order['details']['module'] == 'ps_wirepayment' ): + {/php} + {if $language.id == 2 } + {literal} + + + {/literal} + {else} + {literal} + + + {/literal} + {/if} + {php} + endif; + } + {/php} + + {block name='customer_registration_form'} + {if $customer.is_guest} +
    +
    +

    {l s='Save time on your next order, sign up now' d='Shop.Theme.Checkout'}

    + {render file='customer/_partials/customer-form.tpl' ui=$register_form} +
    +
    + {/if} + {/block} + + {block name='hook_order_confirmation_1'} + {hook h='displayOrderConfirmation1'} + {/block} + + {block name='hook_order_confirmation_2'} + + {/block} +{/block} diff --git a/themes/at_movic/templates/cms/_partials/index.php b/themes/at_movic/templates/cms/_partials/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/cms/_partials/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/cms/_partials/sitemap-nested-list.tpl b/themes/at_movic/templates/cms/_partials/sitemap-nested-list.tpl new file mode 100644 index 00000000..de690fee --- /dev/null +++ b/themes/at_movic/templates/cms/_partials/sitemap-nested-list.tpl @@ -0,0 +1,38 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='sitemap_item'} + + {foreach $links as $link} +
  • + + {$link.label} + + {if isset($link.children) && $link.children|@count > 0} + {include file='cms/_partials/sitemap-nested-list.tpl' links=$link.children is_nested=true} + {/if} +
  • + {/foreach} + +{/block} diff --git a/themes/at_movic/templates/cms/category.tpl b/themes/at_movic/templates/cms/category.tpl new file mode 100644 index 00000000..c3fc56a3 --- /dev/null +++ b/themes/at_movic/templates/cms/category.tpl @@ -0,0 +1,53 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + +{block name='page_title'} + {$cms_category.name} +{/block} + +{block name='page_content'} + {block name='cms_sub_categories'} + {if $sub_categories} +

    {l s='List of sub categories in %name%:' d='Shop.Theme.Global' sprintf=['%name%' => $cms_category.name]}

    + + {/if} + {/block} + + {block name='cms_sub_pages'} + {if $cms_pages} +

    {l s='List of pages in %category_name%:' d='Shop.Theme.Global' sprintf=['%category_name%' => $cms_category.name]}

    + + {/if} + {/block} +{/block} diff --git a/themes/at_movic/templates/cms/index.php b/themes/at_movic/templates/cms/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/cms/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/cms/page.tpl b/themes/at_movic/templates/cms/page.tpl new file mode 100644 index 00000000..df8d7f66 --- /dev/null +++ b/themes/at_movic/templates/cms/page.tpl @@ -0,0 +1,1968 @@ +{** +* 2007-2017 PrestaShop +* +* NOTICE OF LICENSE +* +* This source file is subject to the Academic Free License 3.0 (AFL-3.0) +* that is bundled with this package in the file LICENSE.txt. +* It is also available through the world-wide-web at this URL: +* https://opensource.org/licenses/AFL-3.0 +* If you did not receive a copy of the license and are unable to +* obtain it through the world-wide-web, please send an email +* to license@prestashop.com so we can send you a copy immediately. +* +* DISCLAIMER +* +* Do not edit or add to this file if you wish to upgrade PrestaShop to newer +* versions in the future. If you wish to customize PrestaShop for your +* needs please refer to http://www.prestashop.com for more information. +* +* @author PrestaShop SA +* @copyright PrestaShop SA +* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) +* International Registered Trademark & Property of PrestaShop SA +*} +{extends file='page.tpl'} + +{block name='page_title'} + {$cms.meta_title} +{/block} + +{block name='page_content_container'} +
    + {* + {$current_language.id_lang} *} + + {if $cms.id == 8} +
    +
    + + {if $language.iso_code == 'pl'} +
    + Wyszukaj sklep +
    + + {else} +
    + Search store +
    + + {/if} + +
    +
    + POLSKA +
    +
    + DOLNOŚLĄSKIE +
    +
    + +
    +
    + tel. kom. 533 151 015 +
    +
    +
    +
    + +
    +
    tel. 608 650 416
    +
    +
    +
    + +
    +
    + tel. kom. 504 407 700
    + tel. kom. 602 210 492 +
    +
    +
    +
    + + +
    +
    + tel. 537 777 897 +
    +
    +
    + + + + + +
    + KUJAWSKO-POMORSKIE +
    +
    + +
    +
    + tel. kom. 601 220 146
    tel. (52) 340 06 29 +
    +
    +
    +
    + +
    +
    + tel. kom. 504 504 636 +
    +
    +
    + + + + + + + + + + + + + + + + + +
    + ŁÓDZKIE +
    +
    + +
    +
    + tel. kom. 509 036 794 +
    +
    +
    +
    + +
    +
    + tel. (42) 688 03 71 +
    +
    +
    +
    + +
    +
    + tel. 513 388 454
    + tel. 501 577 833 +
    +
    +
    +
    + +
    +
    + (wjazd możliwy od ul. Kasprzaka i + ul. Włókniarzy przez stację Circle K)
    + tel. kom. 536 319 535 +
    +
    +
    +
    + +
    +
    + tel. kom. 500 300 611 +
    +
    +
    +
    + MAŁOPOLSKIE +
    +
    + +
    +
    + tel. kom. 602 138 128
    + tel. kom. 666 303 505 +
    +
    +
    + +
    + +
    +
    + tel. kom. 504 504 745
    +
    +
    +
    + +
    + +
    +
    + tel. kom. 791 505 905 +
    +
    +
    +
    + +
    +
    + tel.kom. 697 539 285 +
    +
    +
    +
    + +
    +
    + tel. kom. 697 948 899
    + tel. kom. 697 948 666 +
    +
    +
    + + + +
    + +
    +
    + tel. kom. 695 773 269
    + tel. kom. 531 784 087 +
    +
    +
    + + + + + + + + +
    + MAZOWIECKIE +
    +
    + +
    +
    + tel. (22) 837 44 55 w.24
    + tel. (22) 837-04-49 w.24
    + tel. (22) 877-49-32 w.24 +
    +
    +
    +
    + +
    +
    + tel. kom. 504 504 855 +
    +
    +
    +
    + +
    +
    + I-Piętro
    + tel. kom. 722 37 97 97
    + tel. kom. 609 90 70 70 +
    +
    +
    +
    + +
    +
    + tel. (22) 784 87 68
    + tel. kom. 515 138 951 +
    +
    +
    +
    + +
    +
    tel. 500 667 699
    +
    +
    +
    + +
    +
    + tel. (22) 299 06 84 +
    +
    +
    + + + +
    + OPOLSKIE +
    +
    + PODKARPACKIE +
    +
    + +
    +
    + tel. (14) 683 33 33 +
    +
    +
    +
    + +
    +
    + tel. 600 209 005 +
    +
    +
    +
    + +
    +
    + tel. (17) 247 22 20 +
    +
    +
    +
    + +
    +
    + tel. (14) 307 05 11
    + tel. 794 633 400
    + tel. 693 781 472 +
    +
    +
    +
    + +
    +
    + tel. 608 071 323
    + tel. 604 069 921 +
    +
    +
    +
    + +
    +
    + tel. kom. 790 690 357 +
    +
    +
    + + +
    + +
    +
    + tel.(17) 859 90 08 +
    +
    +
    + + +
    + PODLASKIE +
    +
    + +
    +
    + tel. kom. 731 227 590 +
    +
    +
    +
    + POMORSKIE +
    +
    + +
    +
    + tel. kom. 730 765 788 +
    +
    +
    +
    + +
    +
    tel. 504 504 831
    +
    +
    +
    + +
    +
    + tel. kom. 791 439 053 +
    +
    +
    +
    + +
    +
    + tel.kom. 530 200 543 +
    +
    +
    + + + + + + +
    + +
    +
    + tel. kom. 513 151 167 +
    +
    +
    + + + + + + + + +
    + ŚLĄSKIE +
    +
    + +
    +
    + tel. 661 015 201 +
    +
    +
    +
    + +
    +
    + tel. 660 786 752 +
    +
    +
    +
    + +
    +
    + tel. (32) 725 13 52 +
    +
    +
    +
    + +
    +
    + tel. 536 842 056 +
    +
    +
    +
    + +
    +
    + tel. 662 826 334 +
    +
    +
    +
    + +
    +
    + tel. 530 739 712 +
    +
    +
    + + + +
    + ŚWIĘTOKRZYSKIE +
    +
    + +
    +
    + tel. (41) 362 73 79
    + tel. kom. 796 293 724 +
    +
    +
    +
    + +
    +
    + tel. kom. 791 642 142
    + tel. kom. 691 463 999 +
    +
    +
    +
    + WARMIŃSKO-MAZURSKIE +
    + + + + + + +
    + +
    +
    + tel. kom. 721 222 280 +
    +
    +
    +
    + WIELKOPOLSKIE +
    +
    + +
    +
    + tel. kom. 694 036 400 +
    +
    +
    +
    + +
    +
    + (wjazd od ul. Romana Maya)
    + tel. kom. 536 537 532 +
    +
    +
    +
    + +
    +
    + tel. 62 764 26 86 +
    +
    +
    +
    + +
    +
    tel. 67 214 69 75
    +
    +
    +
    + +
    +
    + tel. 504 122 709 +
    +
    +
    +
    + ZACHODNIO-POMORSKIE +
    +
    + +
    +
    + tel. (91) 423 90 88
    + tel. kom. 791 449 990 +
    +
    +
    +
    + +
    +
    + tel. 500 619 211 +
    +
    +
    + + + + + + + + +
    + SŁOWACJA +
    +
    + BANSKOBYSTRICKÝ KRAJ +
    +
    + +
    +
    + mobil: 048 428 55 58 +
    +
    +
    +
    + +
    +
    + mobil: 0455 550 718 +
    +
    +
    +
    + BRATISLAVSKÝ KRAJ +
    +
    + +
    +
    + mobil. 0 907 177 364 +
    +
    +
    + + + + + +
    + +
    +
    + mobil. 0903 507 007 +
    +
    +
    +
    + KOŠICKÝ KRAJ +
    +
    + +
    +
    + mobil: 0907 993 649
    + mobil: 0556 853 440 +
    +
    +
    +
    + +
    +
    + mobil: 917 797 568
    + mobil: 905 217 525 +
    +
    +
    + +
    + PREŠOVSKÝ KRAJ +
    +
    + +
    +
    + mobil: 0908 236 127 +
    +
    +
    +
    + +
    +
    + mobil: 0517 721 144
    + mobil: 0517 710 300 +
    +
    +
    +
    + TRENČIANSKY KRAJ +
    +
    + +
    +
    + mobil: 0905 448 289
    + + mobil: 0905 667 336 +
    +
    +
    +
    + +
    +
    + tel. 32 65 87 555 +
    +
    +
    + + + + + +
    + TRNAVSKÝ KRAJ +
    +
    + +
    +
    + tel. 031 550 3351
    + mobil: 0908 123 567 +
    +
    +
    +
    + ŽILINSKÝ KRAJ +
    +
    + +
    +
    + mobil: 0908 901 330 +
    +
    +
    +
    + CZECHY +
    +
    + HLAVNÍ MĚSTO PRAHA +
    +
    + +
    +
    + tel. 727 955 165 +
    +
    +
    + +
    + JIHOMORAVSKÝ KRAJ +
    +
    + +
    +
    + tel. 604 205 839 +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + STŘEDOČESKÝ KRAJ +
    +
    + +
    +
    + mobil: 721 020 767 +
    +
    +
    + +
    + KRAJ VYSOČINA +
    +
    + +
    +
    + tel. 777 202 085
    + tel. 568 841 243 +
    +
    +
    + + + + + + + + + +
    + WĘGRY +
    +
    + +
    +
    + tel. +36 20 396 9901 +
    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    + + + + {/if} + + {if $cms.id == 13} +
    + +
    + + {hook h='ps_emailsubscription'} + {/if} + + {block name='cms_content'} + {$cms.content nofilter} + {/block} + + {block name='hook_cms_dispute_information'} + {hook h='displayCMSDisputeInformation'} + {/block} + + {block name='hook_cms_print_button'} + {hook h='displayCMSPrintButton'} + {/block} + +
    +{/block} \ No newline at end of file diff --git a/themes/at_movic/templates/cms/sitemap.tpl b/themes/at_movic/templates/cms/sitemap.tpl new file mode 100644 index 00000000..7d621bb7 --- /dev/null +++ b/themes/at_movic/templates/cms/sitemap.tpl @@ -0,0 +1,52 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + +{block name='page_title'} + {l s='Sitemap' d='Shop.Theme.Global'} +{/block} + +{block name='page_content_container'} +
    +
    +
    +

    {$our_offers}

    + {include file='cms/_partials/sitemap-nested-list.tpl' links=$links.offers} +
    +
    +

    {$categories}

    + {include file='cms/_partials/sitemap-nested-list.tpl' links=$links.categories} +
    +
    +

    {$your_account}

    + {include file='cms/_partials/sitemap-nested-list.tpl' links=$links.user_account} +
    +
    +

    {$pages}

    + {include file='cms/_partials/sitemap-nested-list.tpl' links=$links.pages} +
    +
    +
    +{/block} diff --git a/themes/at_movic/templates/cms/stores.tpl b/themes/at_movic/templates/cms/stores.tpl new file mode 100644 index 00000000..b6263aef --- /dev/null +++ b/themes/at_movic/templates/cms/stores.tpl @@ -0,0 +1,88 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + +{block name='page_title'} + {l s='Our stores' d='Shop.Theme.Global'} +{/block} + +{block name='page_content_container'} +
    + + {foreach $stores as $store} +
    +
    +
    + {$store.image.legend} +
    +
    +

    {$store.name}

    +
    {$store.address.formatted nofilter}
    + {if $store.note || $store.phone || $store.fax || $store.email} + + {/if} +
    +
    + + {foreach $store.business_hours as $day} + + + + + {/foreach} +
    {$day.day|truncate:4:'.'} +
      + {foreach $day.hours as $h} +
    • {$h}
    • + {/foreach} +
    +
    +
    +
    +
    + +
    +
    + {/foreach} + +
    +{/block} diff --git a/themes/at_movic/templates/contact.tpl b/themes/at_movic/templates/contact.tpl new file mode 100644 index 00000000..35f00244 --- /dev/null +++ b/themes/at_movic/templates/contact.tpl @@ -0,0 +1,37 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + +{block name='page_header_container'}{/block} + +{block name='left_column'} +
    + {widget name="ps_contactinfo" hook='displayLeftColumn'} +
    +{/block} + +{block name='page_content'} + {widget name="contactform"} +{/block} diff --git a/themes/at_movic/templates/customer/_partials/address-form.tpl b/themes/at_movic/templates/customer/_partials/address-form.tpl new file mode 100644 index 00000000..6c76d62c --- /dev/null +++ b/themes/at_movic/templates/customer/_partials/address-form.tpl @@ -0,0 +1,63 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name="address_form"} +
    + {include file='_partials/form-errors.tpl' errors=$errors['']} + + {block name="address_form_url"} +
    + {/block} + + {block name="address_form_fields"} +
    + {block name='form_fields'} + {foreach from=$formFields item="field"} + {block name='form_field'} + {form_field field=$field} + {/block} + {/foreach} + {/block} +
    + {/block} + + {block name="address_form_footer"} +
    + + {block name='form_buttons'} + + {/block} +
    + {/block} + +
    +
    +{/block} diff --git a/themes/at_movic/templates/customer/_partials/block-address.tpl b/themes/at_movic/templates/customer/_partials/block-address.tpl new file mode 100644 index 00000000..90bcbf1d --- /dev/null +++ b/themes/at_movic/templates/customer/_partials/block-address.tpl @@ -0,0 +1,45 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='address_block_item'} + +{/block} diff --git a/themes/at_movic/templates/customer/_partials/customer-form.sync-conflict-20210528-232818-5F24EB5.tpl b/themes/at_movic/templates/customer/_partials/customer-form.sync-conflict-20210528-232818-5F24EB5.tpl new file mode 100644 index 00000000..6b498d86 --- /dev/null +++ b/themes/at_movic/templates/customer/_partials/customer-form.sync-conflict-20210528-232818-5F24EB5.tpl @@ -0,0 +1,99 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='customer_form'} + {block name='customer_form_errors'} + {include file='_partials/form-errors.tpl' errors=$errors['']} + {/block} + +
    +
    + {block "form_fields"} + {foreach from=$formFields item="field"} + {block "form_field"} + {form_field field=$field} + {/block} + {/foreach} + {$hook_create_account_form nofilter} + {/block} +
    +
    +
    + +
    + + + Administratorem danych osobowych zbieranych za pośrednictwem sklepu internetowego jest Sprzedawca (PRZEDSIĘBIORSTWO PRODUKCYJNO-HANDLOWO-USŁUGOWE "2M" SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ). Dane są lub mogą być przetwarzane w celach oraz na podstawach wskazanych szczegółowo w polityce prywatności (np. realizacja umowy, marketing bezpośredni). Polityka prywatności zawiera pełną informację na temat przetwarzania danych przez administratora wraz z prawami przysługującymi osobie, której dane dotyczą. Szybki kontakt z administratorem: zam@redline.com.pl + +
    +
    +
    +
    + + {block name='customer_form_footer'} +
    + + {block "form_buttons"} + + {/block} +
    + {/block} + + {block name='display_after_login_form'} + {hook h='displayCustomerLoginFormAfter'} + {/block} + + +
    +{/block} +{literal} + + +{/literal} \ No newline at end of file diff --git a/themes/at_movic/templates/customer/_partials/customer-form.tpl b/themes/at_movic/templates/customer/_partials/customer-form.tpl new file mode 100644 index 00000000..2fa68fe5 --- /dev/null +++ b/themes/at_movic/templates/customer/_partials/customer-form.tpl @@ -0,0 +1,99 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='customer_form'} + {block name='customer_form_errors'} + {include file='_partials/form-errors.tpl' errors=$errors['']} + {/block} + +
    +
    + {block "form_fields"} + {foreach from=$formFields item="field"} + {block "form_field"} + {form_field field=$field} + {/block} + {/foreach} +
    + +
    + + + Administratorem danych osobowych zbieranych za pośrednictwem sklepu internetowego jest Sprzedawca (PRZEDSIĘBIORSTWO PRODUKCYJNO-HANDLOWO-USŁUGOWE "2M" SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ). Dane są lub mogą być przetwarzane w celach oraz na podstawach wskazanych szczegółowo w polityce prywatności (np. realizacja umowy, marketing bezpośredni). Polityka prywatności zawiera pełną informację na temat przetwarzania danych przez administratora wraz z prawami przysługującymi osobie, której dane dotyczą. Szybki kontakt z administratorem: zam@redline.com.pl + +
    +
    +
    + {$hook_create_account_form nofilter} + {/block} +
    +
    +
    + + {block name='customer_form_footer'} +
    + + {block "form_buttons"} + + {/block} +
    + {/block} + + {block name='display_after_login_form'} + {hook h='displayCustomerLoginFormAfter'} + {/block} + + +
    +{/block} +{literal} + + +{/literal} \ No newline at end of file diff --git a/themes/at_movic/templates/customer/_partials/index.php b/themes/at_movic/templates/customer/_partials/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/customer/_partials/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/customer/_partials/login-form.tpl b/themes/at_movic/templates/customer/_partials/login-form.tpl new file mode 100644 index 00000000..2ad08f78 --- /dev/null +++ b/themes/at_movic/templates/customer/_partials/login-form.tpl @@ -0,0 +1,65 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='login_form'} + + {block name='login_form_errors'} + {include file='_partials/form-errors.tpl' errors=$errors['']} + {/block} + +
    + +
    + {block name='login_form_fields'} + {foreach from=$formFields item="field"} + {block name='form_field'} + {form_field field=$field} + {/block} + {/foreach} + {/block} +
    + + {block name='login_form_footer'} +
    + + {block name='form_buttons'} + + {/block} +
    + + {/block} + + {block name='display_after_login_form'} + {hook h='displayCustomerLoginFormAfter'} + {/block} + + +
    +{/block} diff --git a/themes/at_movic/templates/customer/_partials/my-account-links.tpl b/themes/at_movic/templates/customer/_partials/my-account-links.tpl new file mode 100644 index 00000000..ae59632c --- /dev/null +++ b/themes/at_movic/templates/customer/_partials/my-account-links.tpl @@ -0,0 +1,34 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='my_account_links'} + + +{/block} diff --git a/themes/at_movic/templates/customer/_partials/order-detail-no-return.tpl b/themes/at_movic/templates/customer/_partials/order-detail-no-return.tpl new file mode 100644 index 00000000..89f25277 --- /dev/null +++ b/themes/at_movic/templates/customer/_partials/order-detail-no-return.tpl @@ -0,0 +1,175 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='order_products_table'} +
    + + + + + + + + + + {foreach from=$order.products item=product} + + + + + + + {/foreach} + + {foreach $order.subtotals as $line} + {if $line.value} + + + + + {/if} + {/foreach} + + + + + +
    {l s='Product' d='Shop.Theme.Catalog'}{l s='Quantity' d='Shop.Theme.Catalog'}{l s='Unit price' d='Shop.Theme.Catalog'}{l s='Total price' d='Shop.Theme.Catalog'}
    + + + {$product.name} + +
    + {if $product.reference} + {l s='Reference' d='Shop.Theme.Catalog'}: {$product.reference}
    + {/if} + {if $product.customizations} + {foreach from=$product.customizations item="customization"} + +
    + +
    + {/foreach} + {/if} +
    + {if $product.customizations} + {foreach $product.customizations as $customization} + {$customization.quantity} + {/foreach} + {else} + {$product.quantity} + {/if} + {$product.price}{$product.total}
    {$line.label}{$line.value}
    {$order.totals.total.label}{$order.totals.total.value}
    +
    + +
    + {foreach from=$order.products item=product} +
    +
    +
    +
    {$product.name}
    + {if $product.reference} +
    {l s='Reference' d='Shop.Theme.Catalog'}: {$product.reference}
    + {/if} + {if $product.customizations} + {foreach $product.customizations as $customization} + +
    +
    + {/foreach} + {/if} +
    +
    +
    +
    + {$product.price} +
    +
    + {if $product.customizations} + {foreach $product.customizations as $customization} + {$customization.quantity} + {/foreach} + {else} + {$product.quantity} + {/if} +
    +
    + {$product.total} +
    +
    +
    +
    +
    + {/foreach} +
    +
    + {foreach $order.subtotals as $line} + {if $line.value} +
    +
    {$line.label}
    +
    {$line.value}
    +
    + {/if} + {/foreach} +
    +
    {$order.totals.total.label}
    +
    {$order.totals.total.value}
    +
    +
    +{/block} diff --git a/themes/at_movic/templates/customer/_partials/order-detail-return.tpl b/themes/at_movic/templates/customer/_partials/order-detail-return.tpl new file mode 100644 index 00000000..1f3e5057 --- /dev/null +++ b/themes/at_movic/templates/customer/_partials/order-detail-return.tpl @@ -0,0 +1,253 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='order_products_table'} +
    + +
    + + + + + + + + + + + + {foreach from=$order.products item=product name=products} + + + + + + + + + {/foreach} + + {foreach $order.subtotals as $line} + {if $line.value} + + + + + {/if} + {/foreach} + + + + + +
    {l s='Product' d='Shop.Theme.Catalog'}{l s='Quantity' d='Shop.Theme.Catalog'}{l s='Returned' d='Shop.Theme.Customeraccount'}{l s='Unit price' d='Shop.Theme.Catalog'}{l s='Total price' d='Shop.Theme.Catalog'}
    + {if !$product.customizations} + + + + {else} + {foreach $product.customizations as $customization} + + + + {/foreach} + {/if} + + {$product.name}
    + {if $product.reference} + {l s='Reference' d='Shop.Theme.Catalog'}: {$product.reference}
    + {/if} + {if $product.customizations} + {foreach from=$product.customizations item="customization"} + +
    + +
    + {/foreach} + {/if} +
    + {if !$product.customizations} +
    + {$product.quantity} +
    + {if $product.quantity > $product.qty_returned} +
    + +
    + {/if} + {else} + {foreach $product.customizations as $customization} +
    + {$customization.quantity} +
    +
    + +
    + {/foreach} +
    + {/if} +
    {$product.qty_returned}{$product.price}{$product.total}
    {$line.label}{$line.value}
    {$order.totals.total.label}{$order.totals.total.value}
    +
    + +
    + {foreach from=$order.products item=product} +
    +
    +
    + {if !$product.customizations} + + {else} + {foreach $product.customizations as $customization} + + {/foreach} + {/if} +
    +
    +
    +
    +
    {$product.name}
    + {if $product.reference} +
    {l s='Reference' d='Shop.Theme.Catalog'}: {$product.reference}
    + {/if} + {if $product.customizations} + {foreach $product.customizations as $customization} + +
    +
    + {/foreach} + {/if} +
    +
    +
    +
    + {$product.price} +
    +
    + {if $product.customizations} + {foreach $product.customizations as $customization} +
    {l s='Quantity' d='Shop.Theme.Catalog'}: {$customization.quantity}
    +
    + {/foreach} + {else} +
    {l s='Quantity' d='Shop.Theme.Catalog'}: {$product.quantity}
    + {if $product.quantity > $product.qty_returned} +
    + {/if} + {/if} + {if $product.qty_returned > 0} +
    {l s='Returned' d='Shop.Theme.Customeraccount'}: {$product.qty_returned}
    + {/if} +
    +
    + {$product.total} +
    +
    +
    +
    +
    +
    +
    + {/foreach} +
    +
    + {foreach $order.subtotals as $line} + {if $line.value} +
    +
    {$line.label}
    +
    {$line.value}
    +
    + {/if} + {/foreach} +
    +
    {$order.totals.total.label}
    +
    {$order.totals.total.value}
    +
    +
    + +
    +
    +

    {l s='Merchandise return' d='Shop.Theme.Customeraccount'}

    +

    {l s='If you wish to return one or more products, please mark the corresponding boxes and provide an explanation for the return. When complete, click the button below.' d='Shop.Theme.Customeraccount'}

    +
    +
    +
    + +
    +
    +
    + + +
    +
    + +
    +{/block} diff --git a/themes/at_movic/templates/customer/_partials/order-messages.tpl b/themes/at_movic/templates/customer/_partials/order-messages.tpl new file mode 100644 index 00000000..7d52cac1 --- /dev/null +++ b/themes/at_movic/templates/customer/_partials/order-messages.tpl @@ -0,0 +1,85 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{block name='order_messages_table'} + {if $order.messages} +
    +

    {l s='Messages' d='Shop.Theme.Customeraccount'}

    + {foreach from=$order.messages item=message} +
    +
    + {$message.name}
    + {$message.message_date} +
    +
    + {$message.message nofilter} +
    +
    + {/foreach} +
    + {/if} +{/block} + +{block name='order_message_form'} +
    +
    + +
    +

    {l s='Add a message' d='Shop.Theme.Customeraccount'}

    +

    {l s='If you would like to add a comment about your order, please write it in the field below.' d='Shop.Theme.Customeraccount'}

    +
    + +
    + +
    + +
    + +
    +
    + +
    + +
    + +
    +
    + +
    + +
    + + +
    + +
    +
    +{/block} diff --git a/themes/at_movic/templates/customer/address.tpl b/themes/at_movic/templates/customer/address.tpl new file mode 100644 index 00000000..f10c4795 --- /dev/null +++ b/themes/at_movic/templates/customer/address.tpl @@ -0,0 +1,39 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='customer/page.tpl'} + +{block name='page_title'} + {if $editing} + {l s='Update your address' d='Shop.Theme.Customeraccount'} + {else} + {l s='New address' d='Shop.Theme.Customeraccount'} + {/if} +{/block} + +{block name='page_content'} +
    + {render template="customer/_partials/address-form.tpl" ui=$address_form} +
    +{/block} diff --git a/themes/at_movic/templates/customer/addresses.tpl b/themes/at_movic/templates/customer/addresses.tpl new file mode 100644 index 00000000..0f91153d --- /dev/null +++ b/themes/at_movic/templates/customer/addresses.tpl @@ -0,0 +1,48 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='customer/page.tpl'} + +{block name='page_title'} + {l s='Your addresses' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} +
    + {foreach $customer.addresses as $address} +
    + {block name='customer_address'} + {include file='customer/_partials/block-address.tpl' address=$address} + {/block} +
    + {/foreach} +
    +
    + +{/block} diff --git a/themes/at_movic/templates/customer/authentication.tpl b/themes/at_movic/templates/customer/authentication.tpl new file mode 100644 index 00000000..35cff86b --- /dev/null +++ b/themes/at_movic/templates/customer/authentication.tpl @@ -0,0 +1,43 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + +{block name='page_title'} + {l s='Log in to your account' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} + {block name='login_form_container'} + +
    + + {/block} +{/block} diff --git a/themes/at_movic/templates/customer/discount.tpl b/themes/at_movic/templates/customer/discount.tpl new file mode 100644 index 00000000..7da78111 --- /dev/null +++ b/themes/at_movic/templates/customer/discount.tpl @@ -0,0 +1,96 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='customer/page.tpl'} + +{block name='page_title'} + {l s='Your vouchers' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} + {if $cart_rules} + + + + + + + + + + + + + + {foreach from=$cart_rules item=cart_rule} + + + + + + + + + + {/foreach} + +
    {l s='Code' d='Shop.Theme.Checkout'}{l s='Description' d='Shop.Theme.Checkout'}{l s='Quantity' d='Shop.Theme.Checkout'}{l s='Value' d='Shop.Theme.Checkout'}{l s='Minimum' d='Shop.Theme.Checkout'}{l s='Cumulative' d='Shop.Theme.Checkout'}{l s='Expiration date' d='Shop.Theme.Checkout'}
    {$cart_rule.code}{$cart_rule.name}{$cart_rule.quantity_for_user}{$cart_rule.value}{$cart_rule.voucher_minimal}{$cart_rule.voucher_cumulable}{$cart_rule.voucher_date}
    +
    + {foreach from=$cart_rules item=cart_rule} +
    +
      +
    • + {l s='Code' d='Shop.Theme.Checkout'} + {$cart_rule.code} +
    • +
    • + {l s='Description' d='Shop.Theme.Checkout'} + {$cart_rule.name} +
    • +
    • + {l s='Quantity' d='Shop.Theme.Checkout'} + {$cart_rule.quantity_for_user} +
    • +
    • + {l s='Value' d='Shop.Theme.Checkout'} + {$cart_rule.value} +
    • +
    • + {l s='Minimum' d='Shop.Theme.Checkout'} + {$cart_rule.voucher_minimal} +
    • +
    • + {l s='Cumulative' d='Shop.Theme.Checkout'} + {$cart_rule.voucher_cumulable} +
    • +
    • + {l s='Expiration date' d='Shop.Theme.Checkout'} + {$cart_rule.voucher_date} +
    • +
    +
    + {/foreach} +
    + {/if} +{/block} diff --git a/themes/at_movic/templates/customer/guest-login.tpl b/themes/at_movic/templates/customer/guest-login.tpl new file mode 100644 index 00000000..a9bd23cf --- /dev/null +++ b/themes/at_movic/templates/customer/guest-login.tpl @@ -0,0 +1,79 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + +{block name='page_title'} + {l s='Guest Order Tracking' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} +
    +
    +

    {l s='To track your order, please enter the following information:' d='Shop.Theme.Customeraccount'}

    +
    + +
    + +
    + +
    + +
    + {l s='For example: QIIXJXNUI or QIIXJXNUI#1' d='Shop.Theme.Customeraccount'} +
    +
    +
    + +
    + +
    + +
    +
    + +
    + +
    + +
    +
    +{/block} diff --git a/themes/at_movic/templates/customer/guest-tracking.tpl b/themes/at_movic/templates/customer/guest-tracking.tpl new file mode 100644 index 00000000..dfaaf48c --- /dev/null +++ b/themes/at_movic/templates/customer/guest-tracking.tpl @@ -0,0 +1,70 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='customer/order-detail.tpl'} + +{block name='page_title'} + {l s='Guest Tracking' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='order_detail'} + {include file='customer/_partials/order-detail-no-return.tpl'} +{/block} + +{block name='order_messages'} +{/block} + +{block name='page_content' append} + {block name='guest_to_customer'} +
    +
    +

    {l s='Transform your guest account into a customer account and enjoy:' d='Shop.Theme.Customeraccount'}

    +
      +
    • - {l s='Personalized and secure access' d='Shop.Theme.Customeraccount'}
    • +
    • - {l s='Fast and easy checkout' d='Shop.Theme.Customeraccount'}
    • +
    • - {l s='Easier merchandise return' d='Shop.Theme.Customeraccount'}
    • +
    +
    + +
    + + + +
    + +
    + + + + + + +
    + +
    + {/block} +{/block} diff --git a/themes/at_movic/templates/customer/history.tpl b/themes/at_movic/templates/customer/history.tpl new file mode 100644 index 00000000..c59b065f --- /dev/null +++ b/themes/at_movic/templates/customer/history.tpl @@ -0,0 +1,119 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='customer/page.tpl'} + +{block name='page_title'} + {l s='Order history' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} +
    {l s='Here are the orders you\'ve placed since your account was created.' d='Shop.Theme.Customeraccount'}
    + + {if $orders} + + + + + + + + + + + + + + {foreach from=$orders item=order} + + + + + + + + + + {/foreach} + +
    {l s='Order reference' d='Shop.Theme.Checkout'}{l s='Date' d='Shop.Theme.Checkout'}{l s='Total price' d='Shop.Theme.Checkout'}{l s='Payment' d='Shop.Theme.Checkout'}{l s='Status' d='Shop.Theme.Checkout'}{l s='Invoice' d='Shop.Theme.Checkout'} 
    {$order.details.reference}{$order.details.order_date}{$order.totals.total.value}{$order.details.payment} + + {$order.history.current.ostate_name} + + + {if $order.details.invoice_url} + + {else} + - + {/if} + + + {l s='Details' d='Shop.Theme.Customeraccount'} + + {if $order.details.reorder_url} + {l s='Reorder' d='Shop.Theme.Actions'} + {/if} +
    + +
    + {foreach from=$orders item=order} +
    +
    +
    +

    {$order.details.reference}

    +
    {$order.details.order_date}
    +
    {$order.totals.total.value}
    +
    + + {$order.history.current.ostate_name} + +
    +
    +
    + + {if $order.details.reorder_url} + + {/if} +
    +
    +
    + {/foreach} +
    + + {/if} +{/block} diff --git a/themes/at_movic/templates/customer/identity.tpl b/themes/at_movic/templates/customer/identity.tpl new file mode 100644 index 00000000..0bac54ac --- /dev/null +++ b/themes/at_movic/templates/customer/identity.tpl @@ -0,0 +1,33 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends 'customer/page.tpl'} + +{block name='page_title'} + {l s='Your personal information' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} + {render file='customer/_partials/customer-form.tpl' ui=$customer_form} +{/block} diff --git a/themes/at_movic/templates/customer/index.php b/themes/at_movic/templates/customer/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/customer/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/customer/my-account.tpl b/themes/at_movic/templates/customer/my-account.tpl new file mode 100644 index 00000000..d25ea524 --- /dev/null +++ b/themes/at_movic/templates/customer/my-account.tpl @@ -0,0 +1,111 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='customer/page.tpl'} + +{block name='page_title'} + {l s='Your account' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} +
    + +
    +{/block} + + +{block name='page_footer'} + {block name='my_account_links'} + + {/block} +{/block} diff --git a/themes/at_movic/templates/customer/order-detail.tpl b/themes/at_movic/templates/customer/order-detail.tpl new file mode 100644 index 00000000..029e848d --- /dev/null +++ b/themes/at_movic/templates/customer/order-detail.tpl @@ -0,0 +1,213 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='customer/page.tpl'} + +{block name='page_title'} + {l s='Order details' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} + {block name='order_infos'} +
    +
    +
    +
    + + {l + s='Order Reference %reference% - placed on %date%' + d='Shop.Theme.Customeraccount' + sprintf=['%reference%' => $order.details.reference, '%date%' => $order.details.order_date] + } + +
    + {if $order.details.reorder_url} + + {/if} +
    +
    +
    + +
    +
      +
    • {l s='Carrier' d='Shop.Theme.Checkout'} {if $order.carrier.name == 'Odbiór osobisty' && $language.id == 2 }Pickup in person{else}{$line.carrier_name}{/if}
    • +
    • {l s='Payment method' d='Shop.Theme.Checkout'} {$order.details.payment}
    • + + {if $order.details.invoice_url} +
    • + + {l s='Download your invoice as a PDF file.' d='Shop.Theme.Customeraccount'} + +
    • + {/if} + + {if $order.details.recyclable} +
    • + {l s='You have given permission to receive your order in recycled packaging.' d='Shop.Theme.Customeraccount'} +
    • + {/if} + + {if $order.details.gift_message} +
    • {l s='You have requested gift wrapping for this order.' d='Shop.Theme.Customeraccount'}
    • +
    • {l s='Message' d='Shop.Theme.Customeraccount'} {$order.details.gift_message nofilter}
    • + {/if} +
    +
    +
    + {/block} + + {block name='order_history'} +
    +

    {l s='Follow your order\'s status step-by-step' d='Shop.Theme.Customeraccount'}

    + + + + + + + + + {foreach from=$order.history item=state} + + + + + {/foreach} + +
    {l s='Date' d='Shop.Theme.Global'}{l s='Status' d='Shop.Theme.Global'}
    {$state.history_date} + + {$state.ostate_name} + +
    +
    + {foreach from=$order.history item=state} +
    +
    {$state.history_date}
    +
    + + {$state.ostate_name} + +
    +
    + {/foreach} +
    +
    + {/block} + + {if $order.follow_up} +
    +

    {l s='Click the following link to track the delivery of your order' d='Shop.Theme.Customeraccount'}

    + {$order.follow_up} +
    + {/if} + + {block name='addresses'} +
    + {if $order.addresses.delivery} +
    +
    +

    {l s='Delivery address %alias%' d='Shop.Theme.Checkout' sprintf=['%alias%' => '']}

    +
    {$order.addresses.delivery.formatted nofilter}
    +
    +
    + {/if} + +
    +
    +

    {l s='Invoice address %alias%' d='Shop.Theme.Checkout' sprintf=['%alias%' => '']}

    +
    {$order.addresses.invoice.formatted nofilter}
    +
    +
    +
    +
    + {/block} + + {$HOOK_DISPLAYORDERDETAIL nofilter} + + {block name='order_detail'} + {if $order.details.is_returnable} + {include file='customer/_partials/order-detail-return.tpl'} + {else} + {include file='customer/_partials/order-detail-no-return.tpl'} + {/if} + {/block} + + {block name='order_carriers'} + {if $order.shipping} +
    + + + + + + + + + + + + {foreach from=$order.shipping item=line} + + + + + + + + {/foreach} + +
    {l s='Date' d='Shop.Theme.Global'}{l s='Carrier' d='Shop.Theme.Checkout'}{l s='Weight' d='Shop.Theme.Checkout'}{l s='Shipping cost' d='Shop.Theme.Checkout'}{l s='Tracking number' d='Shop.Theme.Checkout'}
    {$line.shipping_date}{if $line.carrier_name == 'Odbiór osobisty' && $language.id == 2 }Pickup in person{else}{$line.carrier_name}{/if}{$line.shipping_weight}{$line.shipping_cost}{$line.tracking nofilter}
    +
    + {foreach from=$order.shipping item=line} +
    +
      +
    • + {l s='Date' d='Shop.Theme.Global'} {$line.shipping_date} +
    • +
    • + {l s='Carrier' d='Shop.Theme.Checkout'} {$line.carrier_name} +
    • +
    • + {l s='Weight' d='Shop.Theme.Checkout'} {$line.shipping_weight} +
    • +
    • + {l s='Shipping cost' d='Shop.Theme.Checkout'} {$line.shipping_cost} +
    • +
    • + {l s='Tracking number' d='Shop.Theme.Checkout'} {$line.tracking nofilter} +
    • +
    +
    + {/foreach} +
    +
    + {/if} + {/block} + + {block name='order_messages'} + {include file='customer/_partials/order-messages.tpl'} + {/block} +{/block} diff --git a/themes/at_movic/templates/customer/order-follow.tpl b/themes/at_movic/templates/customer/order-follow.tpl new file mode 100644 index 00000000..58cf5370 --- /dev/null +++ b/themes/at_movic/templates/customer/order-follow.tpl @@ -0,0 +1,98 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='customer/page.tpl'} + +{block name='page_title'} + {l s='Merchandise returns' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} + + {if $ordersReturn && count($ordersReturn)} + +
    {l s='Here is a list of pending merchandise returns' d='Shop.Theme.Customeraccount'}
    + + + + + + + + + + + + + {foreach from=$ordersReturn item=return} + + + + + + + + {/foreach} + +
    {l s='Order' d='Shop.Theme.Customeraccount'}{l s='Return' d='Shop.Theme.Customeraccount'}{l s='Package status' d='Shop.Theme.Customeraccount'}{l s='Date issued' d='Shop.Theme.Customeraccount'}{l s='Returns form' d='Shop.Theme.Customeraccount'}
    {$return.reference}{$return.return_number}{$return.state_name}{$return.return_date} + {if $return.print_url} + {l s='Print out' d='Shop.Theme.Actions'} + {else} + - + {/if} +
    +
    + {foreach from=$ordersReturn item=return} +
    +
      +
    • + {l s='Order' d='Shop.Theme.Customeraccount'} + {$return.reference} +
    • +
    • + {l s='Return' d='Shop.Theme.Customeraccount'} + {$return.return_number} +
    • +
    • + {l s='Package status' d='Shop.Theme.Customeraccount'} + {$return.state_name} +
    • +
    • + {l s='Date issued' d='Shop.Theme.Customeraccount'} + {$return.return_date} +
    • + {if $return.print_url} +
    • + {l s='Returns form' d='Shop.Theme.Customeraccount'} + {l s='Print out' d='Shop.Theme.Actions'} +
    • + {/if} +
    +
    + {/foreach} +
    + + {/if} + +{/block} diff --git a/themes/at_movic/templates/customer/order-return.tpl b/themes/at_movic/templates/customer/order-return.tpl new file mode 100644 index 00000000..0e5025b0 --- /dev/null +++ b/themes/at_movic/templates/customer/order-return.tpl @@ -0,0 +1,158 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{extends file='customer/page.tpl'} + +{block name='page_title'} +

    {l s='Return details' d='Shop.Theme.Customeraccount'}

    +{/block} + +{block name='page_content'} + {block name='order_return_infos'} +
    +
    +

    + {l + s='%number% on %date%' + d='Shop.Theme.Customeraccount' + sprintf=['%number%' => $return.return_number, '%date%' => $return.return_date]} + +

    +

    {l s='We have logged your return request.' d='Shop.Theme.Customeraccount'}

    +

    {l + s='Your package must be returned to us within %number% days of receiving your order.' + d='Shop.Theme.Customeraccount' + sprintf=['%number%' => $configuration.number_of_days_for_return]}

    +

    + {* [1][/1] is for a HTML tag. *} + {l + s='The current status of your merchandise return is: [1] %status% [/1]' + d='Shop.Theme.Customeraccount' + sprintf=[ + '[1]' => '', + '[/1]' => '', + '%status%' => $return.state_name + ] + } +

    +

    {l s='List of items to be returned:' d='Shop.Theme.Customeraccount'}

    + + + + + + + + + {foreach from=$products item=product} + + + + + {/foreach} + +
    {l s='Product' d='Shop.Theme.Catalog'}{l s='Quantity' d='Shop.Theme.Checkout'}
    + {$product.product_name} + {if $product.product_reference} +
    + {l s='Reference' d='Shop.Theme.Catalog'}: {$product.product_reference} + {/if} + {if $product.customizations} + {foreach from=$product.customizations item="customization"} + + + {/foreach} + {/if} +
    + {$product.product_quantity} +
    +
    +
    + {/block} + + {if $return.state == 2} +
    +
    +

    {l s='Reminder' d='Shop.Theme.Customeraccount'}

    +

    + {l + s='All merchandise must be returned in its original packaging and in its original state.' + d='Shop.Theme.Customeraccount' + }
    + {* [1][/1] is for a HTML tag. *} + {l + s='Please print out the [1]returns form[/1] and include it with your package.' + d='Shop.Theme.Customeraccount' + sprintf=[ + '[1]' => '', + '[/1]' => '' + ] + } +
    + {* [1][/1] is for a HTML tag. *} + {l + s='Please check the [1]returns form[/1] for the correct address.' + d='Shop.Theme.Customeraccount' + sprintf=[ + '[1]' => '', + '[/1]' => '' + ] + } +

    +

    + {l + s='When we receive your package, we will notify you by email. We will then begin processing order reimbursement.' + d='Shop.Theme.Customeraccount' + }
    + + {l + s='Please let us know if you have any questions.' + d='Shop.Theme.Customeraccount' + } +
    + {l + s='If the conditions of return listed above are not respected, we reserve the right to refuse your package and/or reimbursement.' + d='Shop.Theme.Customeraccount' + } +

    +
    +
    + {/if} +{/block} diff --git a/themes/at_movic/templates/customer/order-slip.tpl b/themes/at_movic/templates/customer/order-slip.tpl new file mode 100644 index 00000000..089e01ae --- /dev/null +++ b/themes/at_movic/templates/customer/order-slip.tpl @@ -0,0 +1,80 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='customer/page.tpl'} + +{block name='page_title'} + {l s='Credit slips' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} +
    {l s='Credit slips you have received after canceled orders.' d='Shop.Theme.Customeraccount'}
    + {if $credit_slips} + + + + + + + + + + + {foreach from=$credit_slips item=slip} + + + + + + + {/foreach} + +
    {l s='Order' d='Shop.Theme.Customeraccount'}{l s='Credit slip' d='Shop.Theme.Customeraccount'}{l s='Date issued' d='Shop.Theme.Customeraccount'}{l s='View credit slip' d='Shop.Theme.Customeraccount'}
    {$slip.order_reference}{$slip.credit_slip_number}{$slip.credit_slip_date} + +
    +
    + {foreach from=$credit_slips item=slip} +
    + +
    + {/foreach} +
    + {/if} +{/block} diff --git a/themes/at_movic/templates/customer/page.tpl b/themes/at_movic/templates/customer/page.tpl new file mode 100644 index 00000000..33164304 --- /dev/null +++ b/themes/at_movic/templates/customer/page.tpl @@ -0,0 +1,46 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + +{block name='notifications'}{/block} + +{block name='page_content_container'} +
    + {block name='page_content_top'} + {block name='customer_notifications'} + {include file='_partials/notifications.tpl'} + {/block} + {/block} + {block name='page_content'} + + {/block} +
    +{/block} + +{block name='page_footer'} + {block name='my_account_links'} + {include file='customer/_partials/my-account-links.tpl'} + {/block} +{/block} diff --git a/themes/at_movic/templates/customer/password-email.tpl b/themes/at_movic/templates/customer/password-email.tpl new file mode 100644 index 00000000..66b30b16 --- /dev/null +++ b/themes/at_movic/templates/customer/password-email.tpl @@ -0,0 +1,74 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + +{block name='page_title'} + {l s='Forgot your password?' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} +
    + +
      + {foreach $errors as $error} +
    • + + + + + +

      {$error}

      +
    • + {/foreach} +
    + +
    + +
    + +
    +
    + + + + +
    +
    + +
    +{/block} + +{block name='page_footer'} + +{/block} diff --git a/themes/at_movic/templates/customer/password-infos.tpl b/themes/at_movic/templates/customer/password-infos.tpl new file mode 100644 index 00000000..f407046e --- /dev/null +++ b/themes/at_movic/templates/customer/password-infos.tpl @@ -0,0 +1,50 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + +{block name='page_title'} + {l s='Forgot your password?' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} +
      + {foreach $successes as $success} +
    • + + + + + +

      {$success}

      +
    • + {/foreach} +
    +{/block} + +{block name='page_footer'} + +{/block} diff --git a/themes/at_movic/templates/customer/password-new.tpl b/themes/at_movic/templates/customer/password-new.tpl new file mode 100644 index 00000000..bec5ef76 --- /dev/null +++ b/themes/at_movic/templates/customer/password-new.tpl @@ -0,0 +1,90 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + +{block name='page_title'} + {l s='Reset your password' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} +
    +
      + {foreach $errors as $error} +
    • + + + + + +

      {$error}

      +
    • + {/foreach} +
    +
    + + + +
    +
    + +
    + +
    +
    + +
    + +
    + +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    +
    +{/block} + +{block name='page_footer'} + +{/block} diff --git a/themes/at_movic/templates/customer/registration.tpl b/themes/at_movic/templates/customer/registration.tpl new file mode 100644 index 00000000..1478a00a --- /dev/null +++ b/themes/at_movic/templates/customer/registration.tpl @@ -0,0 +1,39 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + +{block name='page_title'} + {l s='Create an account' d='Shop.Theme.Customeraccount'} +{/block} + +{block name='page_content'} + {block name='register_form_container'} + {$hook_create_account_top nofilter} +
    +

    {l s='Already have an account?' d='Shop.Theme.Customeraccount'} {l s='Log in instead!' d='Shop.Theme.Customeraccount'}

    + {render file='customer/_partials/customer-form.tpl' ui=$register_form} +
    + {/block} +{/block} diff --git a/themes/at_movic/templates/errors/404.tpl b/themes/at_movic/templates/errors/404.tpl new file mode 100644 index 00000000..1aa6b3b3 --- /dev/null +++ b/themes/at_movic/templates/errors/404.tpl @@ -0,0 +1,33 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + +{block name='page_title'} + {$page.title} +{/block} + +{block name='page_content_container'} + {include file='errors/not-found.tpl'} +{/block} diff --git a/themes/at_movic/templates/errors/forbidden.tpl b/themes/at_movic/templates/errors/forbidden.tpl new file mode 100644 index 00000000..7a4e86ca --- /dev/null +++ b/themes/at_movic/templates/errors/forbidden.tpl @@ -0,0 +1,30 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file=$layout} + +{block name='content'} +
    +
    +{/block} diff --git a/themes/at_movic/templates/errors/index.php b/themes/at_movic/templates/errors/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/errors/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/errors/maintenance.tpl b/themes/at_movic/templates/errors/maintenance.tpl new file mode 100644 index 00000000..dc33728f --- /dev/null +++ b/themes/at_movic/templates/errors/maintenance.tpl @@ -0,0 +1,61 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='layouts/layout-error.tpl'} + +{block name='content'} + +
    + + {block name='page_header_container'} + + {/block} + + {block name='page_content_container'} +
    + {block name='page_content'} + {$maintenance_text nofilter} + {/block} +
    + {/block} + + {block name='page_footer_container'} + + {/block} + +
    + +{/block} diff --git a/themes/at_movic/templates/errors/not-found.tpl b/themes/at_movic/templates/errors/not-found.tpl new file mode 100644 index 00000000..9b73c829 --- /dev/null +++ b/themes/at_movic/templates/errors/not-found.tpl @@ -0,0 +1,49 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +
    + {block name='page_content'} +
    + +
    +

    4 0 4

    +
    +

    {l s='Oops, it looks like you are lost ...' d='Shop.Theme.Global'}

    + +
    + + {l s='Back to Home' d='Shop.Theme.Global'} +{* + {block name='search'} + {hook h='displaySearch'} + {/block} + + {block name='hook_not_found'} + {hook h='displayNotFound'} + {/block} +*} + + + {/block} +
    diff --git a/themes/at_movic/templates/errors/restricted-country.tpl b/themes/at_movic/templates/errors/restricted-country.tpl new file mode 100644 index 00000000..1162a461 --- /dev/null +++ b/themes/at_movic/templates/errors/restricted-country.tpl @@ -0,0 +1,55 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='layouts/layout-error.tpl'} + +{block name='content'} + +
    + + {block name='page_header_container'} + + {/block} + + {block name='page_content_container'} +
    + {block name='page_content'} +

    {l s='403 Forbidden' d='Shop.Theme.Global'}

    +

    {l s='You cannot access this store from your country. We apologize for the inconvenience.' d='Shop.Theme.Global'}

    + {/block} +
    + {/block} + + {block name='page_footer_container'} + + {/block} + +
    + +{/block} diff --git a/themes/at_movic/templates/errors/static/500.html b/themes/at_movic/templates/errors/static/500.html new file mode 100644 index 00000000..e69de29b diff --git a/themes/at_movic/templates/errors/static/503.html b/themes/at_movic/templates/errors/static/503.html new file mode 100644 index 00000000..e69de29b diff --git a/themes/at_movic/templates/errors/static/index.php b/themes/at_movic/templates/errors/static/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/errors/static/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/index.php b/themes/at_movic/templates/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/index.tpl b/themes/at_movic/templates/index.tpl new file mode 100644 index 00000000..714ec371 --- /dev/null +++ b/themes/at_movic/templates/index.tpl @@ -0,0 +1,37 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='page.tpl'} + + {block name='page_content_container'} +
    + {block name='page_content_top'}{/block} + + {block name='page_content'} + {block name='hook_home'} + {$HOOK_HOME nofilter} + {/block} + {/block} +
    + {/block} diff --git a/themes/at_movic/templates/layouts/index.php b/themes/at_movic/templates/layouts/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/templates/layouts/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/templates/layouts/layout-both-columns.tpl b/themes/at_movic/templates/layouts/layout-both-columns.tpl new file mode 100644 index 00000000..9fa7e7ba --- /dev/null +++ b/themes/at_movic/templates/layouts/layout-both-columns.tpl @@ -0,0 +1,123 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + + + + {block name='head'} + {include file='_partials/head.tpl'} + {/block} + + + + + {block name='hook_after_body_opening_tag'} + {hook h='displayAfterBodyOpeningTag'} + {/block} + +
    + {block name='product_activation'} + {include file='catalog/_partials/product-activation.tpl'} + {/block} + + {block name='notifications'} + {include file='_partials/notifications.tpl'} + {/block} +
    + {hook h="displayWrapperTop"} + {if isset($fullwidth_hook.displayHome) AND $fullwidth_hook.displayHome == 0} +
    + {/if} + {block name='breadcrumb'} + {include file='_partials/breadcrumb.tpl'} + {/block} +
    + {block name="left_column"} + + {/block} + + {block name="content_wrapper"} +
    + {hook h="displayContentWrapperTop"} + {block name="content"} +

    Hello world! This is HTML5 Boilerplate.

    + {/block} + {hook h="displayContentWrapperBottom"} +
    + {/block} + + {block name="right_column"} + + {/block} +
    + {if isset($fullwidth_hook.displayHome) AND $fullwidth_hook.displayHome == 0} +
    + {/if} + {hook h="displayWrapperBottom"} +
    + +
    + {block name="footer"} + {include file="_partials/footer.tpl"} + {/block} +
    + {if isset($LEO_PANELTOOL) && $LEO_PANELTOOL} + {include file="$tpl_dir./modules/appagebuilder/views/templates/front/info/paneltool.tpl"} + {/if} + {if isset($LEO_BACKTOP) && $LEO_BACKTOP} +
    + {/if} + +
    + + {block name='javascript_bottom'} + {include file="_partials/javascript.tpl" javascript=$javascript.bottom} + {/block} + + {block name='hook_before_body_closing_tag'} + {hook h='displayBeforeBodyClosingTag'} + {/block} + + + diff --git a/themes/at_movic/templates/layouts/layout-content-only.tpl b/themes/at_movic/templates/layouts/layout-content-only.tpl new file mode 100644 index 00000000..2f639bf2 --- /dev/null +++ b/themes/at_movic/templates/layouts/layout-content-only.tpl @@ -0,0 +1,41 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='layouts/layout-both-columns.tpl'} + +{block name='header'}{/block} +{block name='left_column'}{/block} +{block name='right_column'}{/block} + +{block name='content_wrapper'} +
    + {hook h="displayContentWrapperTop"} + {block name='content'} +

    Hello world! This is HTML5 Boilerplate.

    + {/block} + {hook h="displayContentWrapperBottom"} +
    +{/block} + +{block name='footer'}{/block} diff --git a/themes/at_movic/templates/layouts/layout-error.tpl b/themes/at_movic/templates/layouts/layout-error.tpl new file mode 100644 index 00000000..3edc3870 --- /dev/null +++ b/themes/at_movic/templates/layouts/layout-error.tpl @@ -0,0 +1,55 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} + + + + + + + + {block name='head_seo'} + {block name='head_seo_title'}{/block} + + + {/block} + + + {block name='stylesheets'} + {include file="_partials/stylesheets.tpl" stylesheets=$stylesheets} + {/block} + + + + + +
    + {block name='content'} +

    Hello world! This is HTML5 Boilerplate.

    + {/block} +
    + + + + diff --git a/themes/at_movic/templates/layouts/layout-full-width.tpl b/themes/at_movic/templates/layouts/layout-full-width.tpl new file mode 100644 index 00000000..3b6246d3 --- /dev/null +++ b/themes/at_movic/templates/layouts/layout-full-width.tpl @@ -0,0 +1,38 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='layouts/layout-both-columns.tpl'} + +{block name='left_column'}{/block} +{block name='right_column'}{/block} + +{block name='content_wrapper'} +
    + {hook h="displayContentWrapperTop"} + {block name='content'} +

    Hello world! This is HTML5 Boilerplate.

    + {/block} + {hook h="displayContentWrapperBottom"} +
    +{/block} diff --git a/themes/at_movic/templates/layouts/layout-left-column.tpl b/themes/at_movic/templates/layouts/layout-left-column.tpl new file mode 100644 index 00000000..4c415759 --- /dev/null +++ b/themes/at_movic/templates/layouts/layout-left-column.tpl @@ -0,0 +1,37 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='layouts/layout-both-columns.tpl'} + +{block name='right_column'}{/block} + +{block name='content_wrapper'} +
    + {hook h="displayContentWrapperTop"} + {block name='content'} +

    Hello world! This is HTML5 Boilerplate.

    + {/block} + {hook h="displayContentWrapperBottom"} +
    +{/block} diff --git a/themes/at_movic/templates/layouts/layout-right-column.tpl b/themes/at_movic/templates/layouts/layout-right-column.tpl new file mode 100644 index 00000000..44fcfb65 --- /dev/null +++ b/themes/at_movic/templates/layouts/layout-right-column.tpl @@ -0,0 +1,37 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file='layouts/layout-both-columns.tpl'} + +{block name='left_column'}{/block} + +{block name='content_wrapper'} +
    + {hook h="displayContentWrapperTop"} + {block name='content'} +

    Hello world! This is HTML5 Boilerplate.

    + {/block} + {hook h="displayContentWrapperBottom"} +
    +{/block} diff --git a/themes/at_movic/templates/layouts/setting.tpl b/themes/at_movic/templates/layouts/setting.tpl new file mode 100644 index 00000000..eecd44fc --- /dev/null +++ b/themes/at_movic/templates/layouts/setting.tpl @@ -0,0 +1,16 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{assign var="ENABLE_RESPONSIVE" value="1" scope="global"} +{assign var="LISTING_GRID_MODE" value="grid" scope="global"} +{assign var="LISTING_PRODUCT_COLUMN_MODULE" value="3" scope="global"} +{assign var="LISTING_PRODUCT_COLUMN" value="3" scope="global"} +{assign var="LISTING_PRODUCT_LARGEDEVICE" value="3" scope="global"} +{assign var="LISTING_PRODUCT_TABLET" value="2" scope="global"} +{assign var="LISTING_PRODUCT_SMALLDEVICE" value="2" scope="global"} +{assign var="LISTING_PRODUCT_EXTRASMALLDEVICE" value="2" scope="global"} +{assign var="LISTING_PRODUCT_MOBILE" value="1" scope="global"} diff --git a/themes/at_movic/templates/page.tpl b/themes/at_movic/templates/page.tpl new file mode 100644 index 00000000..f234fe8b --- /dev/null +++ b/themes/at_movic/templates/page.tpl @@ -0,0 +1,58 @@ +{** + * 2007-2017 PrestaShop + * + * NOTICE OF LICENSE + * + * This source file is subject to the Academic Free License 3.0 (AFL-3.0) + * that is bundled with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * https://opensource.org/licenses/AFL-3.0 + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@prestashop.com so we can send you a copy immediately. + * + * DISCLAIMER + * + * Do not edit or add to this file if you wish to upgrade PrestaShop to newer + * versions in the future. If you wish to customize PrestaShop for your + * needs please refer to http://www.prestashop.com for more information. + * + * @author PrestaShop SA + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + *} +{extends file=$layout} + +{block name='content'} + +
    + + {block name='page_header_container'} + {block name='page_title' hide} + + {/block} + {/block} + + {block name='page_content_container'} +
    + {block name='page_content_top'}{/block} + {block name='page_content'} + + {/block} +
    + {/block} + + {block name='page_footer_container'} +
    + {block name='page_footer'} + + {/block} +
    + {/block} + +
    + +{/block} \ No newline at end of file diff --git a/themes/at_movic/templates/sub/index.php b/themes/at_movic/templates/sub/index.php new file mode 100644 index 00000000..a9e3a685 --- /dev/null +++ b/themes/at_movic/templates/sub/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/templates/sub/product_info/accordions.tpl b/themes/at_movic/templates/sub/product_info/accordions.tpl new file mode 100644 index 00000000..e95f3ea4 --- /dev/null +++ b/themes/at_movic/templates/sub/product_info/accordions.tpl @@ -0,0 +1,190 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{block name='product_accordion'} +
    + {* Description Product Detail *} +
    + +
    +
    + {block name='product_description'} +
    {$product.description nofilter}
    + {/block} +
    +
    +
    + {* Product Detail *} +
    + +
    +
    +
    +
    + {block name='product_reference'} + {if isset($product_manufacturer->id)} +
    + {if isset($manufacturer_image_url)} + + + + {else} + + + {$product_manufacturer->name} + + {/if} +
    + {/if} + {if isset($product.reference_to_display)} +
    + + {$product.reference_to_display} +
    + {/if} + {/block} + {block name='product_quantities'} + {if $product.show_quantities} +
    + + {$product.quantity} {$product.quantity_label} +
    + {/if} + {/block} + {block name='product_availability_date'} + {if $product.availability_date} +
    + + {$product.availability_date} +
    + {/if} + {/block} + {block name='product_out_of_stock'} +
    + {hook h='actionProductOutOfStock' product=$product} +
    + {/block} + {block name='product_features'} + {if $product.features} +
    +

    {l s='Data sheet' d='Shop.Theme.Catalog'}

    +
    + {foreach from=$product.features item=feature} +
    {$feature.name}
    +
    {$feature.value}
    + {/foreach} +
    +
    + {/if} + {/block} + {* if product have specific references, a table will be added to product details section *} + {block name='product_specific_references'} + {if isset($product.specific_references)} +
    +

    {l s='Specific References' d='Shop.Theme.Catalog'}

    +
    + {foreach from=$product.specific_references item=reference key=key} +
    {$key}
    +
    {$reference}
    + {/foreach} +
    +
    + {/if} + {/block} + {block name='product_condition'} + {if $product.condition} +
    + + + {$product.condition.label} +
    + {/if} + {/block} +
    +
    +
    +
    +
    +
    + +
    +
    + {hook h='displayLeoProductTabContent' product=$product} +
    +
    +
    + {* Attachments Product Detail *} + {block name='product_attachments'} + {if $product.attachments} +
    + +
    +
    +
    +
    +

    {l s='Download' d='Shop.Theme.Actions'}

    + {foreach from=$product.attachments item=attachment} + + {/foreach} +
    +
    +
    +
    +
    + {/if} + {/block} + {* Extra Product *} + {foreach from=$product.extraContent item=extra key=extraKey} +
    + +
    +
    +
    $val} {$key}="{$val}"{/foreach}> + {$extra.content nofilter} +
    +
    +
    +
    + {/foreach} +
    +{/block} \ No newline at end of file diff --git a/themes/at_movic/templates/sub/product_info/default.tpl b/themes/at_movic/templates/sub/product_info/default.tpl new file mode 100644 index 00000000..93885681 --- /dev/null +++ b/themes/at_movic/templates/sub/product_info/default.tpl @@ -0,0 +1,137 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{block name='product_default'} +
    +
    +

    {l s='Description' d='Shop.Theme.Catalog'}

    + {block name='product_description'} +
    {$product.description nofilter}
    + {/block} +
    + +
    +

    {l s='Product Details' d='Shop.Theme.Catalog'}

    + +
    + {block name='product_reference'} + {if isset($product_manufacturer->id)} +
    + {if isset($manufacturer_image_url)} + + + + {else} + + + {$product_manufacturer->name} + + {/if} +
    + {/if} + {if isset($product.reference_to_display)} +
    + + {$product.reference_to_display} +
    + {/if} + {/block} + {block name='product_quantities'} + {if $product.show_quantities} +
    + + {$product.quantity} {$product.quantity_label} +
    + {/if} + {/block} + {block name='product_availability_date'} + {if $product.availability_date} +
    + + {$product.availability_date} +
    + {/if} + {/block} + {block name='product_out_of_stock'} +
    + {hook h='actionProductOutOfStock' product=$product} +
    + {/block} + {block name='product_features'} + {if $product.features} +
    +

    {l s='Data sheet' d='Shop.Theme.Catalog'}

    +
    + {foreach from=$product.features item=feature} +
    {$feature.name}
    +
    {$feature.value}
    + {/foreach} +
    +
    + {/if} + {/block} + {* if product have specific references, a table will be added to product details section *} + {block name='product_specific_references'} + {if isset($product.specific_references)} +
    +

    {l s='Specific References' d='Shop.Theme.Catalog'}

    +
    + {foreach from=$product.specific_references item=reference key=key} +
    {$key}
    +
    {$reference}
    + {/foreach} +
    +
    + {/if} + {/block} + {block name='product_condition'} + {if $product.condition} +
    + + + {$product.condition.label} +
    + {/if} + {/block} + +
    +
    +
    +

    {l s='Reviews' d='Shop.Theme.Catalog'}

    + {hook h='displayLeoProductTabContent' product=$product} +
    + {* Attachments Product Detail *} + {if $product.attachments} +
    +

    {l s='Attachments' d='Shop.Theme.Catalog'}

    + {block name='product_attachments'} +
    +

    {l s='Download' d='Shop.Theme.Actions'}

    + {foreach from=$product.attachments item=attachment} + + {/foreach} +
    + {/block} +
    + {/if} + {* Attachments Product Detail *} +
    + {foreach from=$product.extraContent item=extra key=extraKey} +

    {$extra.title}

    +
    $val} {$key}="{$val}"{/foreach}> + {$extra.content nofilter} +
    + {/foreach} +
    +
    +{/block} \ No newline at end of file diff --git a/themes/at_movic/templates/sub/product_info/index.php b/themes/at_movic/templates/sub/product_info/index.php new file mode 100644 index 00000000..a9e3a685 --- /dev/null +++ b/themes/at_movic/templates/sub/product_info/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; diff --git a/themes/at_movic/templates/sub/product_info/tab.tpl b/themes/at_movic/templates/sub/product_info/tab.tpl new file mode 100644 index 00000000..d35dda5a --- /dev/null +++ b/themes/at_movic/templates/sub/product_info/tab.tpl @@ -0,0 +1,91 @@ +{* +* @Module Name: AP Page Builder +* @Website: apollotheme.com - prestashop template provider +* @author Apollotheme +* @copyright Apollotheme +* @description: ApPageBuilder is module help you can build content for your shop +*} +{block name='product_tabs'} +
    + + +
    +
    + {block name='product_description'} +
    {$product.description nofilter}
    + {/block} +
    + + {block name='product_details'} + {include file='catalog/_partials/product-details.tpl'} + {/block} + + {block name='product_attachments'} + {if $product.attachments} +
    +
    +

    {l s='Download' d='Shop.Theme.Actions'}

    + {foreach from=$product.attachments item=attachment} + + {/foreach} +
    +
    + {/if} + {/block} + {hook h='displayLeoProductTabContent' product=$product} + {foreach from=$product.extraContent item=extra key=extraKey} +
    $val} {$key}="{$val}"{/foreach}> + {$extra.content nofilter} +
    + {/foreach} +
    +
    +{/block} \ No newline at end of file diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicaccount.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicaccount.html new file mode 100644 index 00000000..2d76f699 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicaccount.html @@ -0,0 +1,942 @@ + + + + + Account + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    + Thank you for creating a customer account at {shop_name}. +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Your login details on {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Here are your login details: +
    +
    +
    + Email address: {email} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Important Security Tips: +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + + +
    +
    + 1. Always keep your account details safe. +
    +
    +
    + 2. Never disclose your login details to anyone. +
    +
    +
    + 3. Change your password regularly. +
    +
    +
    + 4. Should you suspect someone is using your account illegally, please notify us immediately. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + You can now place orders on our shop: {shop_name} +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicaccount.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicaccount.txt new file mode 100644 index 00000000..78b2dcce --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicaccount.txt @@ -0,0 +1,27 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Thank you for creating a customer account at {shop_name}. + +Your login details on {shop_name} + +Here are your login details: + +Email address: {email} + +Important Security Tips: + +1. Always keep your account details safe. + +2. Never disclose your login details to anyone. + +3. Change your password regularly. + +4. Should you suspect someone is using your account illegally, please notify us immediately. + +You can now place orders on our shop: [{shop_name}]({shop_url}) + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicbackoffice_order.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicbackoffice_order.html new file mode 100644 index 00000000..1abf7701 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicbackoffice_order.html @@ -0,0 +1,702 @@ + + + + + Back Office Order + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +
    +

    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + A new order has been generated on your behalf. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Please go on {order_link} to complete the payment. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicbackoffice_order.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicbackoffice_order.txt new file mode 100644 index 00000000..0af82068 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicbackoffice_order.txt @@ -0,0 +1,11 @@ +{shop_url} + +Hi {firstname} {lastname}, + +A new order has been generated on your behalf. + +Please go on {order_link} to complete the payment. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicbankwire.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicbankwire.html new file mode 100644 index 00000000..e567aa15 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicbankwire.html @@ -0,0 +1,1011 @@ + + + + + Bankwire + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    + Thank you for shopping with {shop_name}! +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order ID {order_name} - Pending payment +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Your order with the reference {order_name} has been placed successfully. You can expect delivery as soon as your payment is received. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Payment method: bank wire +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + + + + + + + + +
    +
    + You have decided to pay by bank wire. + Here is the information you need for your transfer: +
    +
    +
    + Amount: + {total_paid} +
    +
    +
    + Account owner: + {bankwire_owner} +
    +
    +
    + Account details: {bankwire_details} +
    +
    +
    + Bank address: {bankwire_address} +
    +
    +
    + Please specify your order reference in the bankwire description. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Follow your order and download your invoice on our shop, go to the Order history and details section of your customer account. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicbankwire.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicbankwire.txt new file mode 100644 index 00000000..980bf7bb --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicbankwire.txt @@ -0,0 +1,31 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Thank you for shopping with {shop_name}! + +Order ID {order_name} - Pending payment + +Your order with the reference {order_name} has been placed successfully. You can expect delivery as soon as your payment is received. + +Payment method: bank wire + +You have decided to pay by bank wire. Here is the information you need for your transfer: + +Amount: {total_paid} + +Account owner: {bankwire_owner} + +Account details: {bankwire_details} + +Bank address: {bankwire_address} + +Please specify your order reference in the bankwire description. + +Follow your order and download your invoice on our shop, go to the [Order history and details]({history_url}) section of your customer account. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccheque.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccheque.html new file mode 100644 index 00000000..d30191a1 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccheque.html @@ -0,0 +1,998 @@ + + + + + Check + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    + Thank you for shopping with {shop_name}! +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order ID {order_name} - Awaiting payment by check +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Your order with the reference {order_name} has been placed successfully. You can expect delivery as soon as your payment is received. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Payment method: check +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + + +
    +
    + You have decided to pay by bank check. + Here is the information you need for your check: +
    +
    +
    + Amount: + {total_paid} +
    +
    +
    + Payable to the order of: + {check_name} +
    +
    +
    + Please mail your check to: + {check_address_html} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Follow your order and download your invoice on our shop, go to the Order history and details section of your customer account. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccheque.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccheque.txt new file mode 100644 index 00000000..85c754cc --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccheque.txt @@ -0,0 +1,27 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Thank you for shopping with {shop_name}! + +Order ID {order_name} - Awaiting payment by check + +Your order with the reference {order_name} has been placed successfully. You can expect delivery as soon as your payment is received. + +Payment method: check + +You have decided to pay by bank check. Here is the information you need for your check: + +Amount: {total_paid} + +Payable to the order of: {check_name} + +Please mail your check to: {check_address_html} + +Follow your order and download your invoice on our shop, go to the [Order history and details]({history_url}) section of your customer account. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccontact.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccontact.html new file mode 100644 index 00000000..547becd1 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccontact.html @@ -0,0 +1,792 @@ + + + + + CMS page + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Message from a {shop_name} customer +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + Customer Email Address: {email} +
    +
    +
    + Order ID #: + {order_name} +
    +
    +
    + Attached file: {attached_file} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Customer message: +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {message}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccontact.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccontact.txt new file mode 100644 index 00000000..241e97e4 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccontact.txt @@ -0,0 +1,17 @@ +{shop_url} + +Message from a {shop_name} customer + +Customer Email Address: {email} + +Order ID #: {order_name} + +Attached file: {attached_file} + +Customer message: + +{message} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccontact_form.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccontact_form.html new file mode 100644 index 00000000..f525ed4b --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccontact_form.html @@ -0,0 +1,727 @@ + + + + + Contact Form + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + + +
    +
    + Your message has been sent successfully, thank you for taking the time to write! +
    +
    +
    + Order ID #: + {order_name} +
    +
    +
    + Product: + {product_name} +
    +
    +
    + Attached file: {attached_file} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + We will reply as soon as possible. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccontact_form.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccontact_form.txt new file mode 100644 index 00000000..5c68a8a7 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccontact_form.txt @@ -0,0 +1,17 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Your message has been sent successfully, thank you for taking the time to write! + +Order ID #: {order_name} + +Product: {product_name} + +Attached file: {attached_file} + +We will reply as soon as possible. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccredit_slip.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccredit_slip.html new file mode 100644 index 00000000..3df9e303 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccredit_slip.html @@ -0,0 +1,771 @@ + + + + + Credit Note + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order ID {order_name} - Credit notes +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + A credit slip has been generated in your name for order with the reference {order_name}. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Review this credit slip and download your invoice on our shop, go to the Credit slips section of your customer account. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccredit_slip.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccredit_slip.txt new file mode 100644 index 00000000..afafcc81 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviccredit_slip.txt @@ -0,0 +1,13 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Order ID {order_name} - Credit notes + +A credit slip has been generated in your name for order with the reference {order_name}. + +Review this credit slip and download your invoice on our shop, go to the [Credit slips]({history_url}) section of your customer account. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicdownload_product.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicdownload_product.html new file mode 100644 index 00000000..b32e1abd --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicdownload_product.html @@ -0,0 +1,844 @@ + + + + + Download products + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    + Thank you for your order with the reference {order_name} from {shop_name} +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Product(s) to download +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + You have {nbProducts} product(s) now available for download using the following link(s): +
    +
    +
    {virtualProducts}
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Follow your order and download your invoice on our shop, go to the Order history and details section of your customer account. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicdownload_product.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicdownload_product.txt new file mode 100644 index 00000000..fa26049f --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicdownload_product.txt @@ -0,0 +1,19 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Thank you for your order with the reference {order_name} from {shop_name} + +Product(s) to download + +You have {nbProducts} product(s) now available for download using the following link(s): + +{virtualProducts} + +Follow your order and download your invoice on our shop, go to the [Order history and details]({history_url}) section of your customer account. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicemployee_password.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicemployee_password.html new file mode 100644 index 00000000..bfda1f04 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicemployee_password.html @@ -0,0 +1,736 @@ + + + + + Employee password + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Here is your personal login information for {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + + +
    +
    + Here is your identification information on {shop_name} +
    +
    +
    + First name: + {firstname} +
    +
    +
    + Last name: + {lastname} +
    +
    +
    + Email address: + {email} +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicemployee_password.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicemployee_password.txt new file mode 100644 index 00000000..20c1eed5 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicemployee_password.txt @@ -0,0 +1,17 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Here is your personal login information for {shop_name} + +Here is your identification information on {shop_name} + +First name: {firstname} + +Last name: {lastname} + +Email address: {email} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicforward_msg.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicforward_msg.html new file mode 100644 index 00000000..bdd9f4d3 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicforward_msg.html @@ -0,0 +1,726 @@ + + + + + Forward message + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Customer Service - Discussion Forwarded +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + {employee} wanted to forward this discussion to you. +
    +
    +
    + Discussion history: {messages} +
    +
    +
    + {employee} added {comment} +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicforward_msg.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicforward_msg.txt new file mode 100644 index 00000000..d4adca76 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicforward_msg.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Customer Service - Discussion Forwarded + +{employee} wanted to forward this discussion to you. + +Discussion history: {messages} + +{employee} added {comment} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicguest_to_customer.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicguest_to_customer.html new file mode 100644 index 00000000..f02d167d --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicguest_to_customer.html @@ -0,0 +1,778 @@ + + + + + Guest to customer + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Your guest account has been turned into a customer account +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Congratulations, your guest account for {shop_name} has been turned into a customer account! +
    +
    +
    + Email address: {email} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + You can access your customer account on our shop: {shop_name} +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicguest_to_customer.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicguest_to_customer.txt new file mode 100644 index 00000000..022102c0 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicguest_to_customer.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Your guest account has been turned into a customer account + +Congratulations, your guest account for {shop_name} has been turned into a customer account! + +Email address: {email} + +You can access your customer account on our shop: [{shop_name}]({shop_url}) + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicimport.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicimport.html new file mode 100644 index 00000000..fb42d003 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicimport.html @@ -0,0 +1,712 @@ + + + + + Import + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Import finished +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + The file {filename} has been successfully imported to your shop. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicimport.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicimport.txt new file mode 100644 index 00000000..1a221fa3 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicimport.txt @@ -0,0 +1,11 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Import finished + +The file {filename} has been successfully imported to your shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicin_transit.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicin_transit.html new file mode 100644 index 00000000..3aed80a4 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicin_transit.html @@ -0,0 +1,842 @@ + + + + + In transit + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    {meta_products}
    +
    +
    + Order ID {order_name} - In transit +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Your order with the reference {order_name} is on its way. +
    +
    +
    + You can track your package using the following link: {followup} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Follow your order and download your invoice on our shop, go to the Order history and details section of your customer account. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicin_transit.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicin_transit.txt new file mode 100644 index 00000000..0ecee185 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicin_transit.txt @@ -0,0 +1,19 @@ +{shop_url} + +Hi {firstname} {lastname}, + +{meta_products} + +Order ID {order_name} - In transit + +Your order with the reference {order_name} is on its way. + +You can track your package using the following link: {followup} + +Follow your order and download your invoice on our shop, go to the [Order history and details]({history_url}) section of your customer account. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviclog_alert.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviclog_alert.html new file mode 100644 index 00000000..1eb3d705 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviclog_alert.html @@ -0,0 +1,719 @@ + + + + + Log Alert + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + New alert message saved +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + WARNING: you have received a new log alert in your back office. +
    +
    +
    + You can check for it in the Advanced Parameters > Logs section of your back office. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviclog_alert.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviclog_alert.txt new file mode 100644 index 00000000..28110c76 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_moviclog_alert.txt @@ -0,0 +1,13 @@ +{shop_url} + +Hi {firstname} {lastname}, + +New alert message saved + +WARNING: you have received a new log alert in your back office. + +You can check for it in the Advanced Parameters > Logs section of your back office. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicnewsletter.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicnewsletter.html new file mode 100644 index 00000000..542051f1 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicnewsletter.html @@ -0,0 +1,643 @@ + + + + + Newsletter + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {message}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicnewsletter.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicnewsletter.txt new file mode 100644 index 00000000..5374c7e8 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicnewsletter.txt @@ -0,0 +1,9 @@ +{shop_url} + +Hi {firstname} {lastname}, + +{message} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_canceled.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_canceled.html new file mode 100644 index 00000000..2b60845f --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_canceled.html @@ -0,0 +1,777 @@ + + + + + Order cancelled + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order ID {order_name} - Order cancelled +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Your order with the reference {order_name} from {shop_name} has been canceled by the merchant. +
    +
    +
    + Go to your customer account to learn more about it. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_canceled.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_canceled.txt new file mode 100644 index 00000000..513f8c20 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_canceled.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Order ID {order_name} - Order cancelled + +Your order with the reference {order_name} from {shop_name} has been canceled by the merchant. + +Go to your customer account to learn more about it. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_changed.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_changed.html new file mode 100644 index 00000000..7a391ff2 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_changed.html @@ -0,0 +1,777 @@ + + + + + Order changed + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order ID {order_name} - Order changed +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Your order with the reference {order_name} from {shop_name} has been changed by the merchant. +
    +
    +
    + Go to your customer account to learn more about it. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_changed.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_changed.txt new file mode 100644 index 00000000..48c17ec9 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_changed.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Order ID {order_name} - Order changed + +Your order with the reference {order_name} from {shop_name} has been changed by the merchant. + +Go to your customer account to learn more about it. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_conf.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_conf.html new file mode 100644 index 00000000..cb5ecae7 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_conf.html @@ -0,0 +1,1285 @@ + + + + + Order confirmation + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    + Thank you for shopping on {shop_name}! +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order details +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Order: {order_name} Placed on {date}
    +
    +
    + Payment: {payment}
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + + + + + + + + + + + {products} + {discounts} + + + + + + + + + + + + + + + + + + + + + + + + +
    ReferenceProductUnit priceQuantityTotal price
    + Products + {total_products}
    + Discounts + {total_discounts}
    + Gift-wrapping + {total_wrapping}
    + Shipping + {total_shipping}
    + Including total tax + {total_tax_paid}
    + Total paid + {total_paid}
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + + Shipping +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Carrier: {carrier}
    +
    +
    + Payment: {payment}
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + +
    + + + + + + + +
    +

    + + Delivery address +

    +

    + {delivery_block_html} +

    +
     
    +
    + + + + + + +
    +

    + + Billing address +

    +

    + {invoice_block_html} +

    +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Follow your order and download your invoice on our shop, go to the Order history and details section of your customer account. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_conf.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_conf.txt new file mode 100644 index 00000000..02478daf --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_conf.txt @@ -0,0 +1,41 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Thank you for shopping on {shop_name}! + +Order details + +Order: {order_name} Placed on {date} + +Payment: {payment} + +Reference Product Unit price Quantity Total price {products_txt} {discounts_txt} +Products {total_products} +Discounts {total_discounts} +Gift-wrapping {total_wrapping} +Shipping {total_shipping} +Including total tax {total_tax_paid} +Total paid {total_paid} + +Shipping + +Carrier: {carrier} + +Payment: {payment} + +Delivery address + +{delivery_block_txt} + +Billing address + +{invoice_block_txt} + +Follow your order and download your invoice on our shop, go to the [Order history and details]({history_url}) section of your customer account. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_customer_comment.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_customer_comment.html new file mode 100644 index 00000000..96585da3 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_customer_comment.html @@ -0,0 +1,849 @@ + + + + + Order customer comment + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Message from customer +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + You have received a new message regarding order with the reference {order_name}.
    +
    +
    + Customer: {firstname} {lastname} ({email})
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Customer message: +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {message}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_customer_comment.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_customer_comment.txt new file mode 100644 index 00000000..1bf6fcda --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_customer_comment.txt @@ -0,0 +1,17 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Message from customer + +You have received a new message regarding order with the reference {order_name}. + +Customer: {firstname} {lastname} ({email}) + +Customer message: + +{message} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_merchant_comment.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_merchant_comment.html new file mode 100644 index 00000000..6e90ed2d --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_merchant_comment.html @@ -0,0 +1,844 @@ + + + + + Order merchant comment + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Message from {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + You have received a new message from {shop_name} regarding order with the reference {order_name}. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Message: +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {message}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_merchant_comment.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_merchant_comment.txt new file mode 100644 index 00000000..4edf35de --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_merchant_comment.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Message from {shop_name} + +You have received a new message from {shop_name} regarding order with the reference {order_name}. + +Message: + +{message} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_return_state.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_return_state.html new file mode 100644 index 00000000..9dfc78a8 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_return_state.html @@ -0,0 +1,770 @@ + + + + + Order return state + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order return #{id_order_return} - Update +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + We have updated the progress on your return #{id_order_return}, the new status is: "{state_order_return}".
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Follow your order and download your invoice on our shop, go to the Order history and details section of your customer account. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_return_state.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_return_state.txt new file mode 100644 index 00000000..aa3c2d96 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicorder_return_state.txt @@ -0,0 +1,13 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Order return #{id_order_return} - Update + +We have updated the progress on your return #{id_order_return}, the new status is: "{state_order_return}". + +Follow your order and download your invoice on our shop, go to the [Order history and details]({history_url}) section of your customer account. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicoutofstock.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicoutofstock.html new file mode 100644 index 00000000..c0da391d --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicoutofstock.html @@ -0,0 +1,839 @@ + + + + + Out of stock + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    + Thanks for your order with the reference {order_name} from {shop_name}. +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order ID {order_name} - Replenishment required +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Unfortunately, one or more items are currently out of stock and this may cause a slight delay for delivery. Please accept our apologies for this inconvenience and be sure we are doing our best to correct the situation. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Follow your order and download your invoice on our shop, go to the Order history and details section of your customer account. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicoutofstock.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicoutofstock.txt new file mode 100644 index 00000000..1049bb7f --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicoutofstock.txt @@ -0,0 +1,17 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Thanks for your order with the reference {order_name} from {shop_name}. + +Order ID {order_name} - Replenishment required + +Unfortunately, one or more items are currently out of stock and this may cause a slight delay for delivery. Please accept our apologies for this inconvenience and be sure we are doing our best to correct the situation. + +Follow your order and download your invoice on our shop, go to the [Order history and details]({history_url}) section of your customer account. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpassword.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpassword.html new file mode 100644 index 00000000..a5305621 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpassword.html @@ -0,0 +1,645 @@ + + + + + Password + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Your password has been correctly updated. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpassword.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpassword.txt new file mode 100644 index 00000000..5c23993e --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpassword.txt @@ -0,0 +1,9 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Your password has been correctly updated. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpassword_query.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpassword_query.html new file mode 100644 index 00000000..d809c51b --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpassword_query.html @@ -0,0 +1,785 @@ + + + + + Password Query + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Confirmation of password request on {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + You have requested to reset your {shop_name} login details. +
    +
    +
    + Please note that this will change your current password. +
    +
    +
    + In order to confirm this action, click on the following link: {url} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you did not make this request, just ignore this email. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpassword_query.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpassword_query.txt new file mode 100644 index 00000000..4f5196dd --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpassword_query.txt @@ -0,0 +1,17 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Confirmation of password request on {shop_name} + +You have requested to reset your {shop_name} login details. + +Please note that this will change your current password. + +In order to confirm this action, click on the following link: {url} + +If you did not make this request, just ignore this email. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpayment.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpayment.html new file mode 100644 index 00000000..d2762256 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpayment.html @@ -0,0 +1,829 @@ + + + + + Payment + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Thank you for shopping with {shop_name}! +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Your payment for order with the reference {order_name} was successfully processed. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Follow your order and download your invoice on our shop, go to the Order history and details section of your customer account. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpayment.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpayment.txt new file mode 100644 index 00000000..f95de109 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpayment.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Thank you for shopping with {shop_name}! + +Your payment for order with the reference {order_name} was successfully processed. + +Follow your order and download your invoice on our shop, go to the [Order history and details]({history_url}) section of your customer account. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpayment_error.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpayment_error.html new file mode 100644 index 00000000..9b394396 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpayment_error.html @@ -0,0 +1,832 @@ + + + + + Payment Error + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order ID {order_name} - Payment error +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + We have encountered an error while processing your payment for your order with the reference {order_name} from {shop_name}. Please contact us as soon as possible. +

    + You can expect delivery as soon as your payment is received. +

    +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Follow your order and download your invoice on our shop, go to the Order history and details section of your customer account. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpayment_error.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpayment_error.txt new file mode 100644 index 00000000..51c215ac --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpayment_error.txt @@ -0,0 +1,17 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Order ID {order_name} - Payment error + +We have encountered an error while processing your payment for your order with the reference {order_name} from {shop_name}. Please contact us as soon as possible. + +You can expect delivery as soon as your payment is received. + +Follow your order and download your invoice on our shop, go to the [Order history and details]({history_url}) section of your customer account. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpreparation.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpreparation.html new file mode 100644 index 00000000..1c2b1a7f --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpreparation.html @@ -0,0 +1,829 @@ + + + + + Preparation + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order ID {order_name} - Processing order +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + We are currently processing your order with the reference {order_name} from {shop_name}. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Follow your order and download your invoice on our shop, go to the Order history and details section of your customer account. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpreparation.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpreparation.txt new file mode 100644 index 00000000..856048c9 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicpreparation.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Order ID {order_name} - Processing order + +We are currently processing your order with the reference {order_name} from {shop_name}. + +Follow your order and download your invoice on our shop, go to the [Order history and details]({history_url}) section of your customer account. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicproductoutofstock.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicproductoutofstock.html new file mode 100644 index 00000000..25c41546 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicproductoutofstock.html @@ -0,0 +1,657 @@ + + + + + Product out of stock + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + There are now less than {last_qty} items in stock. +
    +
    +
    + Remaining stock: {qty}
    +
    +
    + Replenish your inventory, go to the Catalog > Stocks section of your back office to manage your stock. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicproductoutofstock.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicproductoutofstock.txt new file mode 100644 index 00000000..408a72b9 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicproductoutofstock.txt @@ -0,0 +1,13 @@ +{shop_url} + +Hi {firstname} {lastname}, + +There are now less than {last_qty} items in stock. + +Remaining stock: {qty} + +Replenish your inventory, go to the Catalog > Stocks section of your back office to manage your stock. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicrefund.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicrefund.html new file mode 100644 index 00000000..b1c7d222 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicrefund.html @@ -0,0 +1,771 @@ + + + + + Refund + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    + Order ID {order_name} - Refund processed +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + We have processed your refund for your order with the reference {order_name} from {shop_name}. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Follow your order and download your invoice on our shop, go to the Order history and details section of your customer account. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicrefund.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicrefund.txt new file mode 100644 index 00000000..aadac3c3 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicrefund.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Order ID {order_name} - Refund processed + +We have processed your refund for your order with the reference {order_name} from {shop_name}. + +Follow your order and download your invoice on our shop, go to the [Order history and details]({history_url}) section of your customer account. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicreply_msg.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicreply_msg.html new file mode 100644 index 00000000..d9a01c38 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicreply_msg.html @@ -0,0 +1,711 @@ + + + + + Reply message + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {reply}
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Please do not reply directly to this email, we will not receive it. + In order to reply, click on the following link: {link} +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicreply_msg.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicreply_msg.txt new file mode 100644 index 00000000..e1618d89 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicreply_msg.txt @@ -0,0 +1,11 @@ +{shop_url} + +Hi {firstname} {lastname}, + +{reply} + +Please do not reply directly to this email, we will not receive it. In order to reply, click on the following link: {link} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicshipped.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicshipped.html new file mode 100644 index 00000000..c80f69be --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicshipped.html @@ -0,0 +1,830 @@ + + + + + Shipped + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Thank you for shopping with {shop_name}! +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Your order with the reference {order_name} has been shipped. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Follow your order and download your invoice on our shop, go to the Order history and details section of your customer account. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + If you have a guest account, you can follow your order via the Guest Tracking section on our shop. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicshipped.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicshipped.txt new file mode 100644 index 00000000..bf14f4ca --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicshipped.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Thank you for shopping with {shop_name}! + +Your order with the reference {order_name} has been shipped. + +Follow your order and download your invoice on our shop, go to the [Order history and details]({history_url}) section of your customer account. + +If you have a guest account, you can follow your order via the [Guest Tracking]({guest_tracking_url}) section on our shop. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movictest.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movictest.html new file mode 100644 index 00000000..04e48db6 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movictest.html @@ -0,0 +1,652 @@ + + + + + Test + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Here is a test email from your shop. +
    +
    +
    + If you can read this, it means the test is successful! +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movictest.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movictest.txt new file mode 100644 index 00000000..0b352dff --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movictest.txt @@ -0,0 +1,11 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Here is a test email from your shop. + +If you can read this, it means the test is successful! + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicvoucher.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicvoucher.html new file mode 100644 index 00000000..a7643b63 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicvoucher.html @@ -0,0 +1,725 @@ + + + + + Voucher + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Order ID {order_name} - Voucher code generated +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + We are pleased to inform you that a voucher has been generated in your name for order with the reference {order_name}. +
    +
    +
    + VOUCHER CODE: {voucher_num} in the amount of {voucher_amount} +
    +
    +
    + In order to use it, just copy/paste this code during check out. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicvoucher.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicvoucher.txt new file mode 100644 index 00000000..79e6c45f --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicvoucher.txt @@ -0,0 +1,15 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Order ID {order_name} - Voucher code generated + +We are pleased to inform you that a voucher has been generated in your name for order with the reference {order_name}. + +VOUCHER CODE: {voucher_num} in the amount of {voucher_amount} + +In order to use it, just copy/paste this code during check out. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicvoucher_new.html b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicvoucher_new.html new file mode 100644 index 00000000..afc37c92 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicvoucher_new.html @@ -0,0 +1,719 @@ + + + + + Voucher new + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Hi {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Voucher code has been generated +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Here is your new voucher code: {voucher_num} +
    +
    +
    + In order to use it, just copy/paste this code during check out. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicvoucher_new.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicvoucher_new.txt new file mode 100644 index 00000000..6a10f0be --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicgb/themes/at_movicvoucher_new.txt @@ -0,0 +1,13 @@ +{shop_url} + +Hi {firstname} {lastname}, + +Voucher code has been generated + +Here is your new voucher code: {voucher_num} + +In order to use it, just copy/paste this code during check out. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicaccount.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicaccount.html new file mode 100644 index 00000000..c08f2b03 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicaccount.html @@ -0,0 +1,942 @@ + + + + + Konto + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    + Dziękujemy za utworzenie konta klienta na stronie {shop_name}. +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Twoje dane do logowania w sklepie {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Oto twoje dane logowania: +
    +
    +
    + Adres e-mail: {email} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Ważne wskazówki dotyczące bezpieczeństwa: +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + + +
    +
    + 1. Zawsze trzymaj dane do Twojego konta w bezpiecznym miejscu. +
    +
    +
    + 2. Nigdy nie ujawniaj nikomu swojego loginu i hasła. +
    +
    +
    + 3. Regularnie zmieniaj swoje hasło. +
    +
    +
    + 4. Jeśli podejrzewasz, że ktoś używa Twojego konta nielegalnie, prosimy o natychmiastowe poinformowanie nas o tym. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Możesz teraz składać zamówienia w naszym sklepie: {shop_name} +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicaccount.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicaccount.txt new file mode 100644 index 00000000..5c47fcdd --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicaccount.txt @@ -0,0 +1,27 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Dziękujemy za utworzenie konta klienta na stronie {shop_name}. + +Twoje dane do logowania w sklepie {shop_name} + +Oto twoje dane logowania: + +Adres e-mail: {email} + +Ważne wskazówki dotyczące bezpieczeństwa: + +1. Zawsze trzymaj dane do Twojego konta w bezpiecznym miejscu. + +2. Nigdy nie ujawniaj nikomu swojego loginu i hasła. + +3. Regularnie zmieniaj swoje hasło. + +4. Jeśli podejrzewasz, że ktoś używa Twojego konta nielegalnie, prosimy o natychmiastowe poinformowanie nas o tym. + +Możesz teraz składać zamówienia w naszym sklepie: [{shop_name}]({shop_url}) + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicbackoffice_order.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicbackoffice_order.html new file mode 100644 index 00000000..ec1fb330 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicbackoffice_order.html @@ -0,0 +1,702 @@ + + + + + Zamówienie z panelu administracyjnego + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +
    +

    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Nowe zamówienie zostało wygenerowane w Twoim imieniu. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Wejdź na {order_link} , aby dokończyć płatność. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicbackoffice_order.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicbackoffice_order.txt new file mode 100644 index 00000000..809e0966 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicbackoffice_order.txt @@ -0,0 +1,11 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Nowe zamówienie zostało wygenerowane w Twoim imieniu. + +Wejdź na {order_link}, aby dokończyć płatność. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicbankwire.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicbankwire.html new file mode 100644 index 00000000..df4b371b --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicbankwire.html @@ -0,0 +1,1011 @@ + + + + + Przelew bankowy + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    + Dziękujemy za zakupy na stronie {shop_name}! +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Numer zamówienia {order_name} - Oczekuje na płatność +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Twoje zamówienie o numerze {order_name} zostało pomyślnie złożone. Możesz spodziewać się dostawy natychmiast po otrzymaniu płatności. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Metoda płatności: przelew bankowy +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + + + + + + + + +
    +
    + Zdecydowałeś się zapłacić przelewem bankowym. + Oto informacje potrzebne do przelewu bankowego: +
    +
    +
    + Kwota: + {total_paid} +
    +
    +
    + Właściciel konta: + {bankwire_owner} +
    +
    +
    + Dane konta: {bankwire_details} +
    +
    +
    + Adres banku: {bankwire_address} +
    +
    +
    + Proszę podać swój numer zamówienia w tytule przelewu bankowego. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie Historia zamówienia i szczegóły w sekcji konto klienta. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicbankwire.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicbankwire.txt new file mode 100644 index 00000000..7d4153c8 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicbankwire.txt @@ -0,0 +1,31 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Dziękujemy za zakupy na stronie {shop_name}! + +Numer zamówienia {order_name} - Oczekuje na płatność + +Twoje zamówienie o numerze {order_name} zostało pomyślnie złożone. Możesz spodziewać się dostawy natychmiast po otrzymaniu płatności. + +Metoda płatności: przelew bankowy + +Zdecydowałeś się zapłacić przelewem bankowym. Oto informacje potrzebne do przelewu bankowego: + +Kwota: {total_paid} + +Właściciel konta: {bankwire_owner} + +Dane konta: {bankwire_details} + +Adres banku: {bankwire_address} + +Proszę podać swój numer zamówienia w tytule przelewu bankowego. + +Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie [Historia zamówienia i szczegóły]({history_url}) w sekcji konto klienta. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccheque.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccheque.html new file mode 100644 index 00000000..aa5a9911 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccheque.html @@ -0,0 +1,998 @@ + + + + + Czek + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    + Dziękujemy za zakupy na stronie {shop_name}! +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Numer zamówienia {order_name} - Oczekiwanie na płatność czekiem +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Twoje zamówienie o numerze {order_name} zostało pomyślnie złożone. Możesz spodziewać się dostawy natychmiast po otrzymaniu płatności. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Metoda płatności: czek +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + + +
    +
    + Zdecydowałeś się zapłacić czekiem bankowym. + Oto informacje potrzebne do czeku: +
    +
    +
    + Kwota: + {total_paid} +
    +
    +
    + Płatne na zlecenie: + {check_name} +
    +
    +
    + Prosimy o przesłanie czeku do: + {check_address_html} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie Historia zamówienia i szczegóły w sekcji konto klienta. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccheque.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccheque.txt new file mode 100644 index 00000000..afe74614 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccheque.txt @@ -0,0 +1,27 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Dziękujemy za zakupy na stronie {shop_name}! + +Numer zamówienia {order_name} - Oczekiwanie na płatność czekiem + +Twoje zamówienie o numerze {order_name} zostało pomyślnie złożone. Możesz spodziewać się dostawy natychmiast po otrzymaniu płatności. + +Metoda płatności: czek + +Zdecydowałeś się zapłacić czekiem bankowym. Oto informacje potrzebne do czeku: + +Kwota: {total_paid} + +Płatne na zlecenie: {check_name} + +Prosimy o przesłanie czeku do: {check_address_html} + +Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie [Historia zamówienia i szczegóły]({history_url}) w sekcji konto klienta. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccontact.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccontact.html new file mode 100644 index 00000000..8963002a --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccontact.html @@ -0,0 +1,792 @@ + + + + + Kontakt + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Wiadomość od klienta {shop_name} +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + Adres e-mail klienta: {email} +
    +
    +
    + Numer zamówienia: + {order_name} +
    +
    +
    + Załączony plik: {attached_file} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Wiadomość klienta: +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {message}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccontact.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccontact.txt new file mode 100644 index 00000000..f3b3e3ea --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccontact.txt @@ -0,0 +1,17 @@ +{shop_url} + +Wiadomość od klienta {shop_name} + +Adres e-mail klienta: {email} + +Numer zamówienia: {order_name} + +Załączony plik: {attached_file} + +Wiadomość klienta: + +{message} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccontact_form.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccontact_form.html new file mode 100644 index 00000000..3521bafd --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccontact_form.html @@ -0,0 +1,727 @@ + + + + + Formularz kontaktowy + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + + +
    +
    + Twoja wiadomość została wysłana pomyślnie, dziękuję za poświęcenie czasu na jej napisanie! +
    +
    +
    + Numer zamówienia: + {order_name} +
    +
    +
    + Produkt: + {product_name} +
    +
    +
    + Załączony plik: {attached_file} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Odpowiemy tak szybko, jak to możliwe. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccontact_form.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccontact_form.txt new file mode 100644 index 00000000..95ccf9e0 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccontact_form.txt @@ -0,0 +1,17 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Twoja wiadomość została wysłana pomyślnie, dziękuję za poświęcenie czasu na jej napisanie! + +Numer zamówienia: {order_name} + +Produkt: {product_name} + +Załączony plik: {attached_file} + +Odpowiemy tak szybko, jak to możliwe. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccredit_slip.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccredit_slip.html new file mode 100644 index 00000000..b3be73f4 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccredit_slip.html @@ -0,0 +1,771 @@ + + + + + Nota kredytowa + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Numer zamówienia {order_name} - Pokwitowanie - korekta kredytowa +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + W Twoim imieniu został wygenerowany kupon na zamówienie o numerze {order_name}. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Przejrzyj ten dokument kredytowy i pobierz fakturę w naszym sklepie, przejdź do sekcji Dokumenty kredytowe konta klienta. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccredit_slip.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccredit_slip.txt new file mode 100644 index 00000000..b85f047d --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviccredit_slip.txt @@ -0,0 +1,13 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Numer zamówienia {order_name} - Pokwitowanie - korekta kredytowa + +W Twoim imieniu został wygenerowany kupon na zamówienie o numerze {order_name}. + +Przejrzyj ten dokument kredytowy i pobierz fakturę w naszym sklepie, przejdź do sekcji[Dokumenty kredytowe]({history_url}) konta klienta. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicdownload_product.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicdownload_product.html new file mode 100644 index 00000000..4c7d9c01 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicdownload_product.html @@ -0,0 +1,844 @@ + + + + + Pobierz produkty + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    + Dziękujemy za zamówienie z referencją {order_name} z {shop_name} +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Produkt(y) do pobrania +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Masz teraz {nbProducts} produkt(y) do pobrania za pomocą następującego linku(ów): +
    +
    +
    {virtualProducts}
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie Historia zamówienia i szczegóły w sekcji konto klienta. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicdownload_product.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicdownload_product.txt new file mode 100644 index 00000000..2e244695 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicdownload_product.txt @@ -0,0 +1,19 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Dziękujemy za zamówienie z referencją {order_name} z {shop_name} + +Produkt(y) do pobrania + +Masz teraz {nbProducts} produkt(y) do pobrania za pomocą następującego linku(ów): + +{virtualProducts} + +Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie [Historia zamówienia i szczegóły]({history_url}) w sekcji konto klienta. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicemployee_password.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicemployee_password.html new file mode 100644 index 00000000..60527bd4 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicemployee_password.html @@ -0,0 +1,736 @@ + + + + + Hasło pracownika + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Oto twoje osobiste dane logowania do {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + + +
    +
    + Oto twoje dane identyfikacyjne na {shop_name} +
    +
    +
    + Imię: + {firstname} +
    +
    +
    + Nazwisko: + {lastname} +
    +
    +
    + Adres e-mail: + {email} +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicemployee_password.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicemployee_password.txt new file mode 100644 index 00000000..c02fdd49 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicemployee_password.txt @@ -0,0 +1,17 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Oto twoje osobiste dane logowania do {shop_name} + +Oto twoje dane identyfikacyjne na {shop_name} + +Imię: {firstname} + +Nazwisko: {lastname} + +Adres e-mail: {email} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicforward_msg.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicforward_msg.html new file mode 100644 index 00000000..12fe88bf --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicforward_msg.html @@ -0,0 +1,726 @@ + + + + + Przekaż wiadomość + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Obsługa klienta - dyskusja przekazana dalej +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + {employee} chciał Ci przekazać tę dyskusję. +
    +
    +
    + Historia dyskusji: {messages} +
    +
    +
    + {employee} dodał {comment} +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicforward_msg.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicforward_msg.txt new file mode 100644 index 00000000..3033a795 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicforward_msg.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Obsługa klienta - dyskusja przekazana dalej + +{employee} chciał Ci przekazać tę dyskusję. + +Historia dyskusji: {messages} + +{employee} dodał {comment} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicguest_to_customer.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicguest_to_customer.html new file mode 100644 index 00000000..498527f5 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicguest_to_customer.html @@ -0,0 +1,778 @@ + + + + + Gość do klienta + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Twoje konto gościa zostało przekształcone w konto klienta +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Gratulacja, Twoje konto gościa w {shop_name} zostało przekształcone w konto klienta! +
    +
    +
    + Adres e-mail: {email} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Możesz uzyskać dostęp do konta klienta w naszym sklepie: {shop_name} +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicguest_to_customer.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicguest_to_customer.txt new file mode 100644 index 00000000..dd60c42e --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicguest_to_customer.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Twoje konto gościa zostało przekształcone w konto klienta + +Gratulacja, Twoje konto gościa w {shop_name} zostało przekształcone w konto klienta! + +Adres e-mail: {email} + +Możesz uzyskać dostęp do konta klienta w naszym sklepie: [{shop_name}]({shop_url}) + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicimport.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicimport.html new file mode 100644 index 00000000..c39acbe5 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicimport.html @@ -0,0 +1,712 @@ + + + + + Importuj + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Import zakończony +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Twój plik {filename} został poprawnie zaimportowany do Twojego sklepu. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicimport.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicimport.txt new file mode 100644 index 00000000..ea1daa0b --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicimport.txt @@ -0,0 +1,11 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Import zakończony + +Twój plik {filename} został poprawnie zaimportowany do Twojego sklepu. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicin_transit.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicin_transit.html new file mode 100644 index 00000000..0a24d854 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicin_transit.html @@ -0,0 +1,842 @@ + + + + + W transporcie + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    {meta_products}
    +
    +
    + Numer zamówienia {order_name} - W transporcie +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Twoje zamówienie z referencją {order_name} jest w drodze. +
    +
    +
    + Możesz śledzić paczkę korzystając z poniższego linku: {followup} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie Historia zamówienia i szczegóły w sekcji konto klienta. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicin_transit.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicin_transit.txt new file mode 100644 index 00000000..f1b6c542 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicin_transit.txt @@ -0,0 +1,19 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +{meta_products} + +Numer zamówienia {order_name} - W transporcie + +Twoje zamówienie z referencją {order_name} jest w drodze. + +Możesz śledzić paczkę korzystając z poniższego linku: {followup} + +Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie [Historia zamówienia i szczegóły]({history_url}) w sekcji konto klienta. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviclang.php b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviclang.php new file mode 100644 index 00000000..a57c1fda --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviclang.php @@ -0,0 +1,14 @@ + \ No newline at end of file diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviclog_alert.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviclog_alert.html new file mode 100644 index 00000000..d0d55f7f --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviclog_alert.html @@ -0,0 +1,719 @@ + + + + + Alert logu + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Nowa wiadomość ostrzegawcza została zapisana +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Uwaga: otrzymałeś nowy alert w logach w panelu administracyjnym. +
    +
    +
    + Możesz to sprawdzić w sekcji Zaawansowane > Logi swojego panelu administracyjnego. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviclog_alert.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviclog_alert.txt new file mode 100644 index 00000000..533df13e --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_moviclog_alert.txt @@ -0,0 +1,13 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Nowa wiadomość ostrzegawcza została zapisana + +Uwaga: otrzymałeś nowy alert w logach w panelu administracyjnym. + +Możesz to sprawdzić w sekcji Zaawansowane > Logi swojego panelu administracyjnego. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicnewsletter.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicnewsletter.html new file mode 100644 index 00000000..2a915479 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicnewsletter.html @@ -0,0 +1,643 @@ + + + + + Newsletter + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {message}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicnewsletter.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicnewsletter.txt new file mode 100644 index 00000000..7dff3d3c --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicnewsletter.txt @@ -0,0 +1,9 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +{message} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_canceled.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_canceled.html new file mode 100644 index 00000000..034401db --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_canceled.html @@ -0,0 +1,777 @@ + + + + + Zamówienie anulowane + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Numer zamówienia {order_name} - Zamówienie anulowane +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Twoje zamówienie o numerze {order_name} z {shop_name} zostało anulowane przez pracownika. +
    +
    +
    + Przejdź do swojego konta klienta, aby dowiedzieć się więcej na ten temat. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_canceled.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_canceled.txt new file mode 100644 index 00000000..ddf49998 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_canceled.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Numer zamówienia {order_name} - Zamówienie anulowane + +Twoje zamówienie o numerze {order_name} z {shop_name} zostało anulowane przez pracownika. + +Przejdź do swojego konta klienta, aby dowiedzieć się więcej na ten temat. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_changed.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_changed.html new file mode 100644 index 00000000..c6011560 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_changed.html @@ -0,0 +1,777 @@ + + + + + Zamówienie zmienione + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Numer zamówienia {order_name} - Zamówienie zmienione +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Twoje zamówienie o numerze {order_name} z {shop_name} zostało zmienione przez sprzedawcę. +
    +
    +
    + Przejdź do swojego konta klienta, aby dowiedzieć się więcej na ten temat. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_changed.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_changed.txt new file mode 100644 index 00000000..91cd4db8 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_changed.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Numer zamówienia {order_name} - Zamówienie zmienione + +Twoje zamówienie o numerze {order_name} z {shop_name} zostało zmienione przez sprzedawcę. + +Przejdź do swojego konta klienta, aby dowiedzieć się więcej na ten temat. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_conf.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_conf.html new file mode 100644 index 00000000..8c717e3d --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_conf.html @@ -0,0 +1,1285 @@ + + + + + Potwierdzenie zamówienia + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    + Dziękujemy za zakupy w {shop_name}! +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Szczegóły zamówienia +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Zamówienie: {order_name} Złożone w {date}
    +
    +
    + Płatność: {payment}
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + + + + + + + + + + + {products} + {discounts} + + + + + + + + + + + + + + + + + + + + + + + + +
    IndeksProduktCena jednostkowaIlośćCena końcowa
    + Produkty + {total_products}
    + Rabaty + {total_discounts}
    + Pakowanie prezentowe + {total_wrapping}
    + Wysyłka + {total_shipping}
    + Z podatkiem + {total_tax_paid}
    + Zapłacono w sumie + {total_paid}
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + + Wysyłka +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Przewoźnik: {carrier}
    +
    +
    + Płatność: {payment}
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + +
    + + + + + + + +
    +

    + + Adres dostawy +

    +

    + {delivery_block_html} +

    +
     
    +
    + + + + + + +
    +

    + + Adres do faktury +

    +

    + {invoice_block_html} +

    +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie Historia zamówienia i szczegóły w sekcji konto klienta. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_conf.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_conf.txt new file mode 100644 index 00000000..f24bf34a --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_conf.txt @@ -0,0 +1,41 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Dziękujemy za zakupy w {shop_name}! + +Szczegóły zamówienia + +Zamówienie: {order_name} Złożone w {date} + +Płatność: {payment} + +Indeks Produkt Cena jednostkowa Ilość Cena końcowa {products_txt} {discounts_txt} +Produkty {total_products} +Rabaty {total_discounts} +Pakowanie prezentowe {total_wrapping} +Wysyłka {total_shipping} +Z podatkiem {total_tax_paid} +Zapłacono w sumie {total_paid} + +Wysyłka + +Przewoźnik: {carrier} + +Płatność: {payment} + +Adres dostawy + +{delivery_block_txt} + +Adres do faktury + +{invoice_block_txt} + +Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie [Historia zamówienia i szczegóły]({history_url}) w sekcji konto klienta. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_customer_comment.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_customer_comment.html new file mode 100644 index 00000000..9c3819f9 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_customer_comment.html @@ -0,0 +1,849 @@ + + + + + Komentarz zamawiającego + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Wiadomość od klienta +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Odebrano nową wiadomość dotyczącą zlecenia z adnotacją {order_name}.
    +
    +
    + Klient: {firstname} {lastname} ({email})
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Wiadomość klienta: +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {message}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_customer_comment.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_customer_comment.txt new file mode 100644 index 00000000..40829477 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_customer_comment.txt @@ -0,0 +1,17 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Wiadomość od klienta + +Odebrano nową wiadomość dotyczącą zlecenia z adnotacją {order_name}. + +Klient: {firstname} {lastname} ({email}) + +Wiadomość klienta: + +{message} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_merchant_comment.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_merchant_comment.html new file mode 100644 index 00000000..27e4f9e1 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_merchant_comment.html @@ -0,0 +1,844 @@ + + + + + Komentarz sprzedawcy + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Wiadomość od {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Otrzymałeś nową wiadomość od {shop_name} dotyczącą zamówienia {order_name}. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Wiadomość: +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {message}
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_merchant_comment.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_merchant_comment.txt new file mode 100644 index 00000000..acbfe415 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_merchant_comment.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Wiadomość od {shop_name} + +Otrzymałeś nową wiadomość od {shop_name} dotyczącą zamówienia {order_name}. + +Wiadomość: + +{message} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_return_state.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_return_state.html new file mode 100644 index 00000000..1f30d9ec --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_return_state.html @@ -0,0 +1,770 @@ + + + + + Status zwrotu zamówienia + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Zwrot zamówienia #{id_order_return} - Aktualizacja +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Zaktualizowaliśmy postęp w sprawie Twojego zwrotu #{id_order_return}, nowy status to: "{state_order_return}".
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie Historia zamówienia i szczegóły w sekcji konto klienta. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_return_state.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_return_state.txt new file mode 100644 index 00000000..600cbe6c --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicorder_return_state.txt @@ -0,0 +1,13 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Zwrot zamówienia #{id_order_return} - Aktualizacja + +Zaktualizowaliśmy postęp w sprawie Twojego zwrotu #{id_order_return}, nowy status to: "{state_order_return}". + +Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie [Historia zamówienia i szczegóły]({history_url}) w sekcji konto klienta. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicoutofstock.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicoutofstock.html new file mode 100644 index 00000000..56724c44 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicoutofstock.html @@ -0,0 +1,839 @@ + + + + + Oczekiwanie na dostawę + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    + Dziękujemy za Twoje zamówienie o numerze {order_name} złożone w {shop_name}. +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Numer zamówienia {order_name} - Wymagane uzupełnienie +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Niestety, co najmniej jeden produkt jest obecnie niedostępny i może powodować niewielkie opóźnienie dostawy. Przepraszamy za niedogodności i zapewniamy, że staramy się naprawić tę sytuację. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie Historia zamówienia i szczegóły w sekcji konto klienta. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicoutofstock.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicoutofstock.txt new file mode 100644 index 00000000..77eb71db --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicoutofstock.txt @@ -0,0 +1,17 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Dziękujemy za Twoje zamówienie o numerze {order_name} złożone w {shop_name}. + +Numer zamówienia {order_name} - Wymagane uzupełnienie + +Niestety, co najmniej jeden produkt jest obecnie niedostępny i może powodować niewielkie opóźnienie dostawy. Przepraszamy za niedogodności i zapewniamy, że staramy się naprawić tę sytuację. + +Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie [Historia zamówienia i szczegóły]({history_url}) w sekcji konto klienta. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpassword.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpassword.html new file mode 100644 index 00000000..71e576ba --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpassword.html @@ -0,0 +1,645 @@ + + + + + Hasło + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Twoje hasło zostało poprawnie zaktualizowane. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpassword.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpassword.txt new file mode 100644 index 00000000..620c86b2 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpassword.txt @@ -0,0 +1,9 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Twoje hasło zostało poprawnie zaktualizowane. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpassword_query.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpassword_query.html new file mode 100644 index 00000000..b4d4269a --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpassword_query.html @@ -0,0 +1,785 @@ + + + + + Zapytanie o hasło + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Potwierdzenie żądania hasła w {shop_name} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + Poprosiłeś o zresetowanie danych logowania {shop_name}. +
    +
    +
    + Zauważ proszę, że to zmieni Twoje obecne hasło. +
    +
    +
    + Aby potwierdzić tę akcję, kliknij następujący link: {url} +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli nie wysłałeś tej prośby, zignoruj tego e-maila. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpassword_query.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpassword_query.txt new file mode 100644 index 00000000..0d8da6be --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpassword_query.txt @@ -0,0 +1,17 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Potwierdzenie żądania hasła w {shop_name} + +Poprosiłeś o zresetowanie danych logowania {shop_name}. + +Zauważ proszę, że to zmieni Twoje obecne hasło. + +Aby potwierdzić tę akcję, kliknij następujący link: {url} + +Jeśli nie wysłałeś tej prośby, zignoruj tego e-maila. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpayment.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpayment.html new file mode 100644 index 00000000..1e7f5b3f --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpayment.html @@ -0,0 +1,829 @@ + + + + + Płatność + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Dziękujemy za zakupy na stronie {shop_name}! +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Twoja płatność za zamówienie o numerze {order_name} została pomyślnie przetworzona. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie Historia zamówienia i szczegóły w sekcji konto klienta. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpayment.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpayment.txt new file mode 100644 index 00000000..d02b18d1 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpayment.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Dziękujemy za zakupy na stronie {shop_name}! + +Twoja płatność za zamówienie o numerze {order_name} została pomyślnie przetworzona. + +Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie [Historia zamówienia i szczegóły]({history_url}) w sekcji konto klienta. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpayment_error.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpayment_error.html new file mode 100644 index 00000000..f24ed21b --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpayment_error.html @@ -0,0 +1,832 @@ + + + + + Błąd płatności + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Numer zamówienia {order_name} - Błąd płatności +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Napotkaliśmy błąd podczas przetwarzania płatności za zamówienie o numerze {order_name} z {shop_name}. Skontaktuj się z nami jak najszybciej. +

    + Możesz spodziewać się dostawy natychmiast po otrzymaniu płatności. +

    +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie Historia zamówienia i szczegóły w sekcji konto klienta. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpayment_error.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpayment_error.txt new file mode 100644 index 00000000..4cb56a90 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpayment_error.txt @@ -0,0 +1,17 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Numer zamówienia {order_name} - Błąd płatności + +Napotkaliśmy błąd podczas przetwarzania płatności za zamówienie o numerze {order_name} z {shop_name}. Skontaktuj się z nami jak najszybciej. + +Możesz spodziewać się dostawy natychmiast po otrzymaniu płatności. + +Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie [Historia zamówienia i szczegóły]({history_url}) w sekcji konto klienta. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpreparation.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpreparation.html new file mode 100644 index 00000000..998e59ab --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpreparation.html @@ -0,0 +1,829 @@ + + + + + Przygotowanie + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Numer zamówienia {order_name} - Przetwarzanie zamówienia +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Aktualnie przetwarzamy Twoje zamówienie o numerze {order_name} z {shop_name}. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie Historia zamówienia i szczegóły w sekcji konto klienta. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpreparation.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpreparation.txt new file mode 100644 index 00000000..fc946c2a --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicpreparation.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Numer zamówienia {order_name} - Przetwarzanie zamówienia + +Aktualnie przetwarzamy Twoje zamówienie o numerze {order_name} z {shop_name}. + +Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie [Historia zamówienia i szczegóły]({history_url}) w sekcji konto klienta. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicproductoutofstock.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicproductoutofstock.html new file mode 100644 index 00000000..b46107d1 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicproductoutofstock.html @@ -0,0 +1,657 @@ + + + + + Produkt niedostępny + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + W magazynie jest teraz mniej niż {last_qty} przedmiotów. +
    +
    +
    + Pozostałe zapasy: {qty}
    +
    +
    + Uzupełnij zapasy, przejdź do sekcji Katalog > Zapasy swojego panelu administracyjnego, aby zarządzać zapasami. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicproductoutofstock.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicproductoutofstock.txt new file mode 100644 index 00000000..d157dd60 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicproductoutofstock.txt @@ -0,0 +1,13 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +W magazynie jest teraz mniej niż {last_qty} przedmiotów. + +Pozostałe zapasy: {qty} + +Uzupełnij zapasy, przejdź do sekcji Katalog > Zapasy swojego panelu administracyjnego, aby zarządzać zapasami. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicrefund.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicrefund.html new file mode 100644 index 00000000..ddee84ab --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicrefund.html @@ -0,0 +1,771 @@ + + + + + Zwrot pieniędzy + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    + Numer zamówienia {order_name} - Realizacja zwrotu +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Przetworzyliśmy Twój zwrot pieniędzy za zamówienie o numerze {order_name} z {shop_name}. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie Historia zamówienia i szczegóły w sekcji konto klienta. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicrefund.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicrefund.txt new file mode 100644 index 00000000..27047805 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicrefund.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Numer zamówienia {order_name} - Realizacja zwrotu + +Przetworzyliśmy Twój zwrot pieniędzy za zamówienie o numerze {order_name} z {shop_name}. + +Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie [Historia zamówienia i szczegóły]({history_url}) w sekcji konto klienta. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicreply_msg.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicreply_msg.html new file mode 100644 index 00000000..42ed1c56 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicreply_msg.html @@ -0,0 +1,711 @@ + + + + + Odpowiedz + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    {reply}
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Prosimy nie odpowiadać na tą wiadomość, nie otrzymamy takiej odpowiedzi. + Aby odpowiedzieć, kliknij następujący link: {link} +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicreply_msg.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicreply_msg.txt new file mode 100644 index 00000000..a7636131 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicreply_msg.txt @@ -0,0 +1,11 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +{reply} + +Prosimy nie odpowiadać na tą wiadomość, nie otrzymamy takiej odpowiedzi. Aby odpowiedzieć, kliknij następujący link: {link} + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicshipped.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicshipped.html new file mode 100644 index 00000000..be820601 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicshipped.html @@ -0,0 +1,830 @@ + + + + + Wysłane + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Dziękujemy za zakupy na stronie {shop_name}! +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Twoje zamówienie o numerze {order_name} zostało wysłane. +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie Historia zamówienia i szczegóły w sekcji konto klienta. +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    +
    + Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie Śledzenie zamówienia gościa w naszym sklepie. +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicshipped.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicshipped.txt new file mode 100644 index 00000000..af1814e3 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicshipped.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Dziękujemy za zakupy na stronie {shop_name}! + +Twoje zamówienie o numerze {order_name} zostało wysłane. + +Śledź status swojego zamówienia i pobierz fakturę w naszym sklepie, na stronie [Historia zamówienia i szczegóły]({history_url}) w sekcji konto klienta. + +Jeśli posiadasz konto gościa, możesz śledzić swoje zamówienie na stronie [Śledzenie zamówienia gościa]({guest_tracking_url}) w naszym sklepie. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movictest.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movictest.html new file mode 100644 index 00000000..a766143c --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movictest.html @@ -0,0 +1,652 @@ + + + + + Test + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + To jest testowy e-mail z Twojego sklepu. +
    +
    +
    + Jeśli potrafisz to przeczytać, oznacza to, że test się powiódł! +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movictest.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movictest.txt new file mode 100644 index 00000000..3c3c9827 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movictest.txt @@ -0,0 +1,11 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +To jest testowy e-mail z Twojego sklepu. + +Jeśli potrafisz to przeczytać, oznacza to, że test się powiódł! + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicvoucher.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicvoucher.html new file mode 100644 index 00000000..90bcc18c --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicvoucher.html @@ -0,0 +1,725 @@ + + + + + Kupon rabatowy: + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Numer zamówienia {order_name} - Wygenerowano kod kuponu +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + + + + +
    +
    + Miło nam poinformować, że w Twoim imieniu został wygenerowany kupon na zamówienie o numerze {order_name}. +
    +
    +
    + KOD VOUCHERA: {voucher_num} w wysokości {voucher_amount} +
    +
    +
    + Aby go użyć, po prostu skopiuj/wklej ten kod podczas zamawiania. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicvoucher.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicvoucher.txt new file mode 100644 index 00000000..3cd15a7e --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicvoucher.txt @@ -0,0 +1,15 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Numer zamówienia {order_name} - Wygenerowano kod kuponu + +Miło nam poinformować, że w Twoim imieniu został wygenerowany kupon na zamówienie o numerze {order_name}. + +KOD VOUCHERA: {voucher_num} w wysokości {voucher_amount} + +Aby go użyć, po prostu skopiuj/wklej ten kod podczas zamawiania. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicvoucher_new.html b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicvoucher_new.html new file mode 100644 index 00000000..25dd5584 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicvoucher_new.html @@ -0,0 +1,719 @@ + + + + + Nowy kupon + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
     
    + +
    + + + + + + +
    + + + + +
    + + + + + + +
    + +
    + + + + +
    + + + + + + +
    + + + +
    +
    +
    + +
    +
    + + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + +
    +
    + Witaj {firstname} {lastname}, +
    +
    +
    +
    + +
    +
    + + + +
    + + + + + + +
    + +
    + + + + +
    +

    +

    + +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + +
    +
    + Wygenerowano kod kuponu +
    +
    +
    +
    + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + +
    + + + + + + + +
    +
    + Oto twój nowy kod kuponu: {voucher_num} +
    +
    +
    + Aby go użyć, po prostu skopiuj/wklej ten kod podczas zamawiania. +
    +
    +
    +
    + +
    +
    + + + + + + + +
    +
    + + + + +
    + + + + + + +
    + +
    + + + + + + + +
    + +
    +
    Powered by PrestaShop +
    +
    +
    + +
    +
    + + + + +
    + + + diff --git a/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicvoucher_new.txt b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicvoucher_new.txt new file mode 100644 index 00000000..616c3059 --- /dev/null +++ b/themes/at_movic/themes/at_movicmails/themes/at_movicpl/themes/at_movicvoucher_new.txt @@ -0,0 +1,13 @@ +{shop_url} + +Witaj {firstname} {lastname}, + +Wygenerowano kod kuponu + +Oto twój nowy kod kuponu: {voucher_num} + +Aby go użyć, po prostu skopiuj/wklej ten kod podczas zamawiania. + +[{shop_name}]({shop_url}) + +Powered by [PrestaShop](https://www.prestashop.com/?utm_source=marchandprestashop&utm_medium=e-mail=utm_campaign=footer_1-7) diff --git a/themes/at_movic/translations/ar-SA/ShopFormsHelp.ar-SA.xlf b/themes/at_movic/translations/ar-SA/ShopFormsHelp.ar-SA.xlf new file mode 100644 index 00000000..10f89537 --- /dev/null +++ b/themes/at_movic/translations/ar-SA/ShopFormsHelp.ar-SA.xlf @@ -0,0 +1,65 @@ + + + + + + your@email.com + your@email.com + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:66 + + + Select reference + حدد المرجع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:76 + + + optional + اختياري + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:95 + + + How can we help? + كيف يمكن أن نساعد؟ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:106 + + + + + + + Don't forget to save your customization to be able to add to cart + لا ننسى لحفظ التخصيص الخاص بك لتكون قادرة على إضافة إلى عربة التسوق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:29 + + + Your message here + رسالتك هنا + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:38 + + + 250 char. max + 250 شار. الحد الأقصى + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:39 + + + No selected file + لم يتم تحديد ملف + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:52 + + + .png .jpg .gif + .png .jpg .gif + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:56 + + + + diff --git a/themes/at_movic/translations/ar-SA/ShopFormsLabels.ar-SA.xlf b/themes/at_movic/translations/ar-SA/ShopFormsLabels.ar-SA.xlf new file mode 100644 index 00000000..f34771e3 --- /dev/null +++ b/themes/at_movic/translations/ar-SA/ShopFormsLabels.ar-SA.xlf @@ -0,0 +1,153 @@ + + + + + + Subject + موضوع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:48 + + + Order reference + ترتيب المرجعي + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:73 + + + Attachment + المرفق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:90 + + + Message + رسالة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:101 + + + + + + + Email address + عنوان البريد الإلكتروني + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:53 + + + + + + + Your email... + بريدك الالكتروني... + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:56 + + + + + + + Order Reference: + ترتيب المرجعي: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:41 + + + Email: + البريد الإلكتروني: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:59 + + + + + + + Set your password: + تعيين كلمة المرور: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:53 + + + + + + + New password + كلمة السر الجديدة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:45 + + + Confirmation + التأكيد + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:52 + + + + + + + Product + المنتج + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:56 + + + + + + + -- please choose -- + -- اختر من فضلك -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:60 + + + -- day -- + -- يوم -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:122 + + + -- month -- + -- شهر -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:123 + + + -- year -- + -- عام -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:124 + + + Optional + اختياري + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:186 + + + + + + + Address Complement + تكملة العنوان + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\admincp: + + + Birthdate + تاريخ الميلاد + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\admincp: + + + + diff --git a/themes/at_movic/translations/ar-SA/ShopThemeActions.ar-SA.xlf b/themes/at_movic/translations/ar-SA/ShopThemeActions.ar-SA.xlf new file mode 100644 index 00000000..2717fba8 --- /dev/null +++ b/themes/at_movic/translations/ar-SA/ShopThemeActions.ar-SA.xlf @@ -0,0 +1,449 @@ + + + + + + Clear + واضح + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:177 + + + + + + + Quick view + نظرة سريعة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:58 + + + + + + + Sign out + خروج + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:107 + + + + + + + Sign in + تسجيل الدخول + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\login-form.tpl:53 + + + + + + + Checkout + الدفع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed-actions.tpl:40 + + + + + + + Choose file + اختر ملف + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\javascript.tpl:43 + + + Do not show this popup again + لا تعرض هذا المنبثقة مرة أخرى + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\javascript.tpl:44 + + + + + + + Send + إرسال + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:79 + + + + + + + Subscribe + الاشتراك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:38 + + + + + + + OK + موافق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_facetedsearch\ps_facetedsearch.tpl:31 + + + + + + + Continue shopping + مواصلة التسوق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart.tpl:48 + + + + + + + proceed to checkout + باشرالخروج من الفندق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:67 + + + + + + + remove from cart + إزالة من سلة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart-product-line.tpl:42 + + + Remove + إزالة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart-product-line.tpl:42 + + + + + + + Refresh + تحديث + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\quickview.tpl:67 + + + + + + + Filter By + مصنف بواسطة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:28 + + + Clear all + امسح الكل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:35 + + + + + + + View products + مشاهدة المنتجات + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\brand.tpl:34 + + + + + + + Quantity + كمية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:39 + + + Add to cart + أضف إلى السلة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:54 + + + + + + + Remove Image + إزالة صورة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:49 + + + Save Customization + حفظ التخصيص + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:62 + + + + + + + Filter + منقي + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:49 + + + + + + + Back to top + الرجوع الى أعلى الصفحة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products.tpl:38 + + + + + + + Select + تحديد + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\sort-orders.tpl:33 + + + + + + + Save + حفظ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\customer-form.tpl:47 + + + + + + + Cancel + إلغاء + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\address-form.tpl:42 + + + + + + + Continue + استمر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:111 + + + + + + + Edit + تصحيح + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\checkout-step.tpl:39 + + + + + + + Delete + حذف + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\block-address.tpl:40 + + + Update + تحديث + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\block-address.tpl:36 + + + + + + + show details + اظهر التفاصيل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-summary.tpl:38 + + + + + + + Add + إضافة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:57 + + + Take advantage of our exclusive offers: + الاستفادة من العروض الحصرية لدينا: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:70 + + + + + + + edit + تصحيح + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:63 + + + + + + + add new address + إضافة عنوان جديد + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:108 + + + + + + + Choose + أختر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:34 + + + + + + + Create new address + إنشاء عنوان جديد + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\addresses.tpl:45 + + + + + + + Reorder + إعادة ترتيب + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:47 + + + + + + + Print out + اطبع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:88 + + + + + + + Send reset link + إرسال رابط إعادة تعيين + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:59 + + + Back to login + عودة إلى تسجيل الدخول + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:71 + + + + + + + Back to Login + العودة إلى تسجيل الدخول + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:77 + + + Change Password + تغيير كلمة السر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:65 + + + + + + + Download + تحميل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:68 + + + + + + + Show + تبين + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:150 + + + Hide + إخفاء + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:148 + + + + + + + Previous + سابق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:46 + + + Next + التالى + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:48 + + + + diff --git a/themes/at_movic/translations/ar-SA/ShopThemeCatalog.ar-SA.xlf b/themes/at_movic/translations/ar-SA/ShopThemeCatalog.ar-SA.xlf new file mode 100644 index 00000000..69d1e8ca --- /dev/null +++ b/themes/at_movic/translations/ar-SA/ShopThemeCatalog.ar-SA.xlf @@ -0,0 +1,527 @@ + + + + + + item(s) + العناصر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\appagebuilder\views\templates\hook\cate-image\ApCategoryImage.tpl:42 + + + + + + + Best Sellers + الأكثر مبيعاً + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_bestsellers\views\templates\hook\ps_bestsellers.tpl:27 + + + All best sellers + جميع الكتب مبيعا + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_bestsellers\views\templates\hook\ps_bestsellers.tpl:34 + + + + + + + Brands + العلامات التجارية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\brands.tpl:31 + + + + + + + No brand + أي علامة تجارية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_brandlist\views\templates\hook\ps_brandlist.tpl:37 + + + + + + + All brands + جميع العلامات التجارية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_brandlist\views\templates\_partials\brand_form.tpl:28 + + + + + + + %s other product in the same category: + %s منتج آخر في نفس الفئة: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:31 + + + %s other products in the same category: + %s منتجات أخرى في نفس الفئة: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:33 + + + + + + + Customers who bought this product also bought: + الزبائن الذين اشتروا هذا المنتج اشتروا أيضا: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_crossselling\views\templates\hook\ps_crossselling.tpl:27 + + + + + + + My alerts + تنبيهاتي + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailalerts\views\templates\hook\my-account.tpl:30 + + + + + + + Popular Products + المنتجات الشعبية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_featuredproducts\views\templates\hook\ps_featuredproducts.tpl:27 + + + All products + جميع المنتجات + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_featuredproducts\views\templates\hook\ps_featuredproducts.tpl:34 + + + + + + + New products + منتجات جديدة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_newproducts\views\templates\hook\ps_newproducts.tpl:28 + + + All new products + جميع المنتجات الجديدة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_newproducts\views\templates\hook\ps_newproducts.tpl:35 + + + + + + + 1 person is currently watching this product. + 1 شخص يراقب في هذا المنتج. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:29 + + + %nb_people% people are currently watching this product. + %nb_people% الناس يشاهدون هذا المنتج حاليا. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:31 + + + Last time this product was bought: %date_last_order% + آخر مرة تم شراء هذا المنتج: %date_last_order% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:37 + + + Last time this product was added to a cart: %date_last_cart% + آخر مرة تمت إضافة هذا المنتج إلى سلة التسوق: %date_last_cart% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:41 + + + + + + + No RSS feed added + وأضافت لا تغذية RSS + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_rssfeed\views\templates\hook\ps_rssfeed.tpl:36 + + + + + + + Search + بحث + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_searchbar\ps_searchbar.tpl:32 + + + + + + + On sale + للبيع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_specials\views\templates\hook\ps_specials.tpl:27 + + + All sale products + جميع المنتجات بيع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_specials\views\templates\hook\ps_specials.tpl:33 + + + + + + + Suppliers + الموردين + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\suppliers.tpl:28 + + + + + + + No supplier + لا المورد + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_supplierlist\views\templates\hook\ps_supplierlist.tpl:37 + + + + + + + All suppliers + جميع الموردين + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_supplierlist\views\templates\_partials\supplier_form.tpl:28 + + + + + + + Viewed products + عرض المنتجات + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_viewedproduct\views\template\hook\ps_viewedproduct.tpl:28 + + + + + + + List of products by brand %brand_name% + قائمة المنتجات حسب الماركة %brand_name% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\listing\manufacturer.tpl:28 + + + + + + + List of products by supplier %s + قائمة المنتجات من قبل المورد %s + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\listing\supplier.tpl:28 + + + + + + + This pack contains + تحتوي هذه حزمة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\product.tpl:117 + + + You might also like + قد يعجبك ايضا + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\product.tpl:156 + + + + + + + %1$s: + %1$s: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\active_filters.tpl:35 + + + + + + + Regular price + سعر عادي + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:82 + + + Price + السعر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:91 + + + + + + + Quantity + كمية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:199 + + + Product customization + التخصيص المنتج + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:180 + + + Product + المنتج + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:33 + + + Unit price + سعر الوحدة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:36 + + + Total price + السعر الكلي + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:37 + + + + + + + Your customization: + التخصيص: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:41 + + + + + + + Brand + علامة تجارية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:19 + + + Reference + مرجع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:28 + + + In stock + في المخزن + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:36 + + + Availability date: + الموعد متوفر: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:44 + + + Data sheet + ورقة البيانات + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:57 + + + Specific References + مراجع محددة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:71 + + + Condition + شرط + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:84 + + + + + + + Volume discounts + حسومات كبيرة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:27 + + + You Save + أنت أحفظ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:34 + + + Up to %discount% + يصل إلى %discount% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:42 + + + + + + + Save %percentage% + حفظ %percentage% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:51 + + + Save %amount% + حفظ %amount% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:54 + + + (%unit_price%) + (%unit_price%) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:62 + + + %price% tax excl. + %price% غير شامل الضريبة. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:70 + + + Instead of %price% + بدلا من %price% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:76 + + + Including %amount% for ecotax + بما فيها %amount% ل إكوتاكس + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:82 + + + (not impacted by the discount) + (غير مشمول بالخصم) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:84 + + + + + + + There are %product_count% products. + هناك %product_count% منتجات. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:35 + + + There is 1 product. + هناك 1 المنتج. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:37 + + + + + + + Showing %from%-%to% of %total% item(s) + عرض %from%-%to% من %total% العناصر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:28 + + + + + + + Description + وصف + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:12 + + + Product Details + تفاصيل المنتج + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:22 + + + Attachments + مرفقات + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:31 + + + + + + + Name, A to Z + اسم، A إلى Z + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\admincp: + + + Name, Z to A + الاسم، من Z إلى A + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\admincp: + + + Price, low to high + السعر من الارخص للاعلى + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\admincp: + + + Price, high to low + السعر، من الأعلى إلى الأقل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\admincp: + + + + diff --git a/themes/at_movic/translations/ar-SA/ShopThemeCheckout.ar-SA.xlf b/themes/at_movic/translations/ar-SA/ShopThemeCheckout.ar-SA.xlf new file mode 100644 index 00000000..5d8a1a26 --- /dev/null +++ b/themes/at_movic/translations/ar-SA/ShopThemeCheckout.ar-SA.xlf @@ -0,0 +1,547 @@ + + + + + + Product successfully added to your shopping cart + تم إضافة المنتج بنجاح إلى سلة التسوق الخاصة بك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:32 + + + Quantity: + كمية: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:48 + + + There are %products_count% items in your cart. + هناك %products_count% الوحدات الموجودة فى سلة التسوق الخاصة بك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:55 + + + There is %product_count% item in your cart. + هناك %product_count% العنصر في سلة التسوق. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:57 + + + Total products: + عدد المنتجات: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:59 + + + Total shipping: + إجمالي الشحن: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:60 + + + Total: + مجموع: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:64 + + + + + + + items + العناصر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart.tpl:38 + + + item + بند + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart.tpl:47 + + + + + + + The minimum purchase order quantity for the product is %quantity%. + الحد الأدنى لكمية طلب الشراء هو %quantity%. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:79 + + + + + + + Shopping Cart + عربة التسوق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart.tpl:38 + + + + + + + Your order is confirmed + تأكيد طلبك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:11 + + + An email has been sent to your mail address %email%. + تم إرسال رسالة إلكترونية إلى عنوان بريدك الإلكتروني %email%. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:16 + + + You can also [1]download your invoice[/1] + بامكانك ايضا [1]تنزيل الفاتورة[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:23 + + + Order details + تفاصيل الطلب + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:58 + + + Order reference: %reference% + ترتيب المرجعي: %reference% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:60 + + + Payment method: %method% + طريقة الدفع او السداد: %method% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:61 + + + Shipping method: %method% + طريقة الشحن: %method% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:64 + + + Save time on your next order, sign up now + توفير الوقت على النظام الخاص بك المقبل، تسجل الآن + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:94 + + + + + + + Use this address for invoice too + استخدام هذا العنوان لفاتورة جدا + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\address-form.tpl:26 + + + + + + + Gift + هدية مجانية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed-product-line.tpl:140 + + + + + + + There are no more items in your cart + لا توجد أي عناصر أخرى في عربة التسوق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed.tpl:39 + + + + + + + Have a promo code? + هل يمتلك الرمز الترويجي؟ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:47 + + + Promo code + رمز ترويجي + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:56 + + + + + + + Create an account + انشئ حساب + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:30 + + + (optional) + (اختياري) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:30 + + + And save time on your next order! + وتوفير الوقت على طلبك القادم! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:32 + + + + + + + Order items + طلب بضاعة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-confirmation-table.tpl:28 + + + + + + + %product_count% item in your cart + %product_count% العنصر في سلة التسوق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary-table.tpl:31 + + + %products_count% items in your cart + %products_count% الوحدات الموجودة فى سلة التسوق الخاصة بك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary-table.tpl:33 + + + + + + + Please check your order before payment + يرجى مراجعة طلبك قبل الدفع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:28 + + + Addresses + عناوين + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:35 + + + Your Delivery Address + عنوان التسليم الخاص + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:44 + + + Shipping Method + طريقة الشحن + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:62 + + + + + + + Your Invoice Address + فاتورة العناوين + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:85 + + + Shipping Address + عنوان الشحن + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:36 + + + The selected address will be used both as your personal address (for invoice) and as your delivery address. + العنوان المحدد سيتم استخدامها على حد سواء كما العناوين الشخصية الخاصة بك (على فاتورة)، وكما عنوانك التسليم. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:41 + + + The selected address will be used as your personal address (for invoice). + وسيتم استخدام العنوان المحدد كعنوان الشخصي الخاص بك (على الفاتورة). + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:45 + + + Billing address differs from shipping address + عنوان الفواتير يختلف عن عنوان الشحن + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:76 + + + + + + + No payment needed for this order + لا يلزم الدفع لهذا الطلب + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:8 + + + Selected + المحدد + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:31 + + + Unfortunately, there are no payment method available. + للأسف، لا توجد طريقة الدفع المتاحة. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:75 + + + By confirming the order, you certify that you have read and agree with all of the conditions below: + من خلال التأكيد على النظام، وتقر بأنك قد قرأت وتوافق مع جميع الشروط التالية: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:85 + + + Order with an obligation to pay + ترتيب مع التزام بدفع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:141 + + + Please make sure you've chosen a [1]payment method[/1] and accepted the [2]terms and conditions[/2]. + الرجاء التأكد من أنك اخترت [1]طريقة الدفع او السداد[/1] وقبلت [2]الأحكام والشروط[/2]. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:126 + + + + + + + If you sign out now, your cart will be emptied. + إذا خرجت الآن، وسوف يتم تفريغ سلة التسوق الخاصة بك. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:30 + + + Order as a guest + أجل كضيف + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:46 + + + + + + + If you would like to add a comment about your order, please write it in the field below. + إذا كنت ترغب في إضافة تعليق حول طلبك، يرجى الكتابة في الحقل أدناه. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:83 + + + I would like to receive my order in recycled packaging. + وأود أن الحصول على طلبي في التعبئة والتغليف المعاد تدويرها. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:91 + + + If you'd like, you can add a note to the gift: + إذا كنت ترغب، يمكنك إضافة مذكرة إلى هدية: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:103 + + + Unfortunately, there are no carriers available for your delivery address. + للأسف، لا توجد شركات المتاحة لعنوان التسليم. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:115 + + + + + + + Code + الشفرة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:64 + + + Description + وصف + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:68 + + + Value + القيمة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:76 + + + Minimum + الحد الأدنى + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:80 + + + Cumulative + تراكمي + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:84 + + + Expiration date + تاريخ إنتهاء الصلاحية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:88 + + + + + + + Quantity + كمية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:40 + + + + + + + Order reference + ترتيب المرجعي + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:38 + + + Date + تاريخ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:39 + + + Total price + السعر الكلي + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:40 + + + Payment + دفع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:41 + + + Status + الحالة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:42 + + + Invoice + فاتورة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:43 + + + + + + + Carrier + الناقل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:191 + + + Payment method + طريقة الدفع او السداد + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:57 + + + Delivery address %alias% + عنوان التسليم %alias% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:132 + + + Invoice address %alias% + عنوان الفاتورة %alias% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:140 + + + Weight + وزن + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:194 + + + Shipping cost + تكلفة الشحن + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:197 + + + Tracking number + أرقام التتبع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:200 + + + + + + + 1 item + 1 البند + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\admincp: + + + Subtotal + إجمالي فرعي + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\admincp: + + + %d items + %d البنود + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\admincp: + + + Personal Information + معلومات شخصية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\admincp: + + + Shipping and handling + الشحن والمناولة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\admincp: + + + + diff --git a/themes/at_movic/translations/ar-SA/ShopThemeCustomeraccount.ar-SA.xlf b/themes/at_movic/translations/ar-SA/ShopThemeCustomeraccount.ar-SA.xlf new file mode 100644 index 00000000..814237b6 --- /dev/null +++ b/themes/at_movic/translations/ar-SA/ShopThemeCustomeraccount.ar-SA.xlf @@ -0,0 +1,571 @@ + + + + + + View my customer account + عرض حساب العملاء + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:36 + + + Log in to your customer account + سجل الدخول إلى حساب العميل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:58 + + + + + + + Checkout + الدفع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:113 + + + + + + + Account + الحساب + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customeraccountlinks\ps_customeraccountlinks.tpl:33 + + + + + + + Connected as [1]%firstname% %lastname%[/1]. + .[1]%firstname% %lastname%[/1] متصل ك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:11 + + + Not you? [1]Log out[/1] + [1]الخروج[/1] ليس انت؟ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:24 + + + + + + + Create an account + انشئ حساب + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:28 + + + Already have an account? + هل لديك حساب؟ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:35 + + + Log in instead! + تسجيل الدخول بدلا من ذلك! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:35 + + + + + + + Update your address + تحديث عنوانك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\address.tpl:29 + + + New address + العنوان الجديد + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\address.tpl:31 + + + + + + + Your addresses + العناوين + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\addresses.tpl:28 + + + + + + + Log in to your account + تسجيل الدخول إلى حسابك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\authentication.tpl:28 + + + No account? Create one here + لا حساب؟ إنشاء واحد هنا + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\authentication.tpl:42 + + + + + + + Your vouchers + قسائم الخاص بك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:28 + + + + + + + Guest Order Tracking + ضيف تتبع النظام + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:28 + + + To track your order, please enter the following information: + لتتبع طلبك، يرجى إدخال المعلومات التالية: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:34 + + + For example: QIIXJXNUI or QIIXJXNUI#1 + على سبيل المثال: QIIXJXNUI أو QIIXJXNUI # 1 + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:52 + + + + + + + Guest Tracking + تتبع ضيف + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:28 + + + Transform your guest account into a customer account and enjoy: + تحويل حساب الضيف الخاص بك إلى حساب العميل والتمتع: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:42 + + + Personalized and secure access + وصول شخصي و آمن + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:44 + + + Fast and easy checkout + الخروج سهل و سريع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:45 + + + Easier merchandise return + أسهل عودة البضائع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:46 + + + + + + + Order history + تاريخ الطلب + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:28 + + + Here are the orders you've placed since your account was created. + وهنا هي أوامر كنت قد وضعت منذ إنشاء حسابك. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:32 + + + Details + تفاصيل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:101 + + + + + + + Your personal information + معلوماتك الشخصية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\identity.tpl:28 + + + + + + + Your account + الحساب الخاص بك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:28 + + + Information + معلومات + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:38 + + + Addresses + عناوين + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:46 + + + Add first address + أضف العنوان الأول + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:53 + + + Order history and details + ترتيب التاريخ والتفاصيل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:62 + + + Vouchers + قسائم + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:80 + + + + + + + Credit slips + زلات الائتمان + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:28 + + + Order + طلب + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:61 + + + Date issued + تاريخ الإصدار + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:69 + + + Credit slips you have received after canceled orders. + زلات الائتمان كنت قد تلقيت أوامر بعد إلغاء. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:32 + + + Credit slip + وصل الايداع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:65 + + + View credit slip + زلة مشاهدة الائتمان + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:73 + + + + + + + Merchandise returns + عوائد البضائع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:28 + + + Here is a list of pending merchandise returns + وهنا لائحة من انتظار عوائد البضائع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:35 + + + Return + إرجاع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:74 + + + Package status + وضع رزمة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:78 + + + Returns form + تشكل العائدات + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:87 + + + + + + + Order details + تفاصيل الطلب + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:28 + + + Order Reference %reference% - placed on %date% + ترتيب المرجعي %reference% - موضوع على %date% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:38 + + + Download your invoice as a PDF file. + قم بتنزيل الفاتورة فى صيغه بى دى اف. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:62 + + + You have given permission to receive your order in recycled packaging. + لقد سمح لتلقي طلبك في التعبئة والتغليف المعاد تدويرها. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:69 + + + You have requested gift wrapping for this order. + لقد طلبت تغليف الهدايا لهذا النظام. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:74 + + + Message + رسالة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:75 + + + Follow your order's status step-by-step + اتبع وضع النظام الخاص بك خطوة بخطوة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:84 + + + Click the following link to track the delivery of your order + انقر على الرابط التالي لتتبع تسليم طلبك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:122 + + + + + + + Return details + تفاصيل عودة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:4 + + + %number% on %date% + %number% على %date% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:12 + + + We have logged your return request. + نحن قاموا بتسجيل طلب عودتك. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:18 + + + Your package must be returned to us within %number% days of receiving your order. + يجب أن تعاد الحزمة الخاصة بك في غضون %number% ايام لتستلم طلبك. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:19 + + + The current status of your merchandise return is: [1] %status% [/1] + [1] %status% [/1] الحالة الحالية للعودة البضائع الخاصة بك هو + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:25 + + + List of items to be returned: + قائمة البنود التي تعاد: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:35 + + + Reminder + تذكير + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:112 + + + All merchandise must be returned in its original packaging and in its original state. + يجب أن تعاد جميع البضائع في التعبئة والتغليف الأصلي، وفي حالتها الأصلية. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:114 + + + Please print out the [1]returns form[/1] and include it with your package. + [1]نموذج الإرجاع[/1] يرجى طباعة وإدراجه مع الحزمة الخاصة بك. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:119 + + + Please check the [1]returns form[/1] for the correct address. + رجاء تاكد من [1]نموذج الإرجاع[/1] عن العنوان الصحيح. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:129 + + + When we receive your package, we will notify you by email. We will then begin processing order reimbursement. + عندما نتلقى حزمة الخاص بك، وسوف نقوم بإعلامك عن طريق البريد الإلكتروني. ونحن بعد ذلك يبدأ تسديد أجل المعالجة. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:139 + + + Please let us know if you have any questions. + واسمحوا لنا أن نعرف إذا كان لديك أي أسئلة. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:144 + + + If the conditions of return listed above are not respected, we reserve the right to refuse your package and/or reimbursement. + إذا لم يتم احترام شروط العودة المذكورة أعلاه، ونحن نحتفظ بالحق في رفض الحزمة الخاصة بك و / أو سداد. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:149 + + + + + + + Forgot your password? + نسيت رقمك السري؟ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\login-form.tpl:43 + + + + + + + Please enter the email address you used to register. You will receive a temporary link to reset your password. + يرجى إدخال عنوان البريد الإلكتروني الذي استخدمته للتسجيل. سوف تتلقى ارتباط مؤقت لإعادة ضبط كلمة المرور الخاصة بك. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:48 + + + + + + + Reset your password + اعد ضبط كلمه السر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:28 + + + Email address: %email% + عنوان البريد الإلكتروني: %email% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:37 + + + + + + + Back to your account + العودة إلى حسابك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\my-account-links.tpl:28 + + + + + + + Returned + عاد + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:205 + + + Merchandise return + عودة البضائع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:236 + + + If you wish to return one or more products, please mark the corresponding boxes and provide an explanation for the return. When complete, click the button below. + إذا كنت ترغب في العودة واحد أو أكثر من المنتجات، يرجى وضع علامة على المربعات المقابلة وتقدم تفسيرا للعودة. عند الانتهاء، انقر فوق الزر أدناه. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:237 + + + Request a return + طلب العودة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:247 + + + + + + + Messages + رسائل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:28 + + + Add a message + اضف رسالة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:49 + + + If you would like to add a comment about your order, please write it in the field below. + إذا كنت ترغب في إضافة تعليق حول طلبك، يرجى الكتابة في الحقل أدناه. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:50 + + + + + + + Receive offers from our partners + تلقي العروض من شركائنا + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\admincp: + + + + diff --git a/themes/at_movic/translations/ar-SA/ShopThemeGlobal.ar-SA.xlf b/themes/at_movic/translations/ar-SA/ShopThemeGlobal.ar-SA.xlf new file mode 100644 index 00000000..165750c1 --- /dev/null +++ b/themes/at_movic/translations/ar-SA/ShopThemeGlobal.ar-SA.xlf @@ -0,0 +1,751 @@ + + + + + + Panel Tool + أداة لوحة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:15 + + + Layout Mod + تخطيط وزارة الدفاع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:19 + + + Theme + المقدمة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:32 + + + Default + افتراضي + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:35 + + + Float Header + تطفو رأس + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:51 + + + Yes + نعم فعلا + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:55 + + + No + لا + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:58 + + + Live Theme Editor + محرر الموضوع لايف + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:82 + + + Those Images in folder YOURTHEME/assets/img/patterns/ + تلك الصور في المجلد YOURTHEME/assets/img/patterns/ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:113 + + + Attachment + المرفق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:121 + + + Not set + غير مضبوط + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:141 + + + Position + موضع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:130 + + + Repeat + كرر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:139 + + + Inherit + يرث + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:153 + + + + + + + Quick view + نظرة سريعة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\profiles\plist1499676422.tpl:83 + + + + + + + Read more + اقرأ أكثر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:79 + + + In + في + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:32 + + + On + على + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:39 + + + Hit + نجاح + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:62 + + + Sunday + الأحد + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:87 + + + Monday + الإثنين + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:88 + + + Tuesday + الثلاثاء + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:89 + + + Wednesday + الأربعاء + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:90 + + + Thursday + الخميس + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:91 + + + Friday + يوم الجمعة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:92 + + + Saturday + يوم السبت + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:93 + + + January + كانون الثاني + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:95 + + + February + شهر فبراير + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:96 + + + March + مارس + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:97 + + + April + أبريل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:98 + + + May + قد + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:99 + + + June + يونيو + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:100 + + + July + يوليو + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:101 + + + August + أغسطس + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:102 + + + September + سبتمبر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:103 + + + October + شهر اكتوبر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:104 + + + November + شهر نوفمبر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:105 + + + December + ديسمبر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:106 + + + + + + + View all + عرض الكل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\appagebuilder\views\templates\hook\cate-image\ApCategoryImage.tpl:68 + + + + + + + Setting + ضبط + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:17 + + + Language: + لغة: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:22 + + + Currency: + دقة: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:34 + + + My account + حسابي + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:84 + + + + + + + Hello + مرحبا + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:40 + + + Wishlist + الأماني + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:74 + + + Compare + قارن + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:86 + + + Account + الحساب + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:28 + + + + + + + Contact us + Contact us + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\nav.tpl:39 + + + + + + + Sorry, We are updating data, please come back later!!!! + آسف، نحن تحديث البيانات، يرجى العودة في وقت لاحق !!!! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:116 + + + Childrens + الأطفال + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:50 + + + Recent blog posts + أحدث التدوينات + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:68 + + + + + + + Posted By + منشور من طرف + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:24 + + + Comment + تعليق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:67 + + + Comments + تعليق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:14 + + + Created On + تم إنشاؤها على + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:23 + + + Comment Link + رابط التعليق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:27 + + + Leave your comment + ترك تعليقك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:45 + + + Full Name + الاسم الكامل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:49 + + + Enter your full name + أدخل اسمك الكامل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:52 + + + Email + البريد الإلكتروني + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:58 + + + Enter your email + أدخل بريدك الإلكتروني + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:61 + + + Enter your comment + أدخل تعليقك + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:70 + + + Captcha + كلمة التحقق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:76 + + + Submit + عرض + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:86 + + + + + + + Tags: + العلامات: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:100 + + + In Same Category + في نفس الفئة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:113 + + + Related by Tags + ذات الصلة بالعلامات + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:121 + + + Sorry, This blog is not avariable. May be this was unpublished or deleted. + عذرا، هذه المدونة غير متاحة. قد يكون هذا غير منشور أو محذوف. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:152 + + + + + + + Related products + منتجات ذات صله + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:27 + + + + + + + Call us: [1]%phone%[/1] + [1]%phone%[/1] :اتصل بنا + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:43 + + + Store information + معلومات المتجر + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:29 + + + Fax: [1]%fax%[/1] + [1]%fax%[/1] :فاكس + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:57 + + + Email us: [1]%email%[/1] + [1]%email%[/1] :مراسلتنا عبر البريد الإلكتروني + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:72 + + + + + + + Call us: + اتصل بنا: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:37 + + + Fax: + فاكس: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:47 + + + Email us: + مراسلتنا عبر البريد الإلكتروني: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:57 + + + + + + + Currency + دقة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_currencyselector\ps_currencyselector.tpl:27 + + + Currency dropdown + العملة المنسدلة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_currencyselector\ps_currencyselector.tpl:27 + + + + + + + join our newsletter + اشترك في صحيفتنا الإخبارية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:27 + + + + + + + Carousel buttons + أزرار دائري + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:45 + + + Previous + سابق + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:50 + + + Next + التالى + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:56 + + + + + + + Language + لغة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_languageselector\ps_languageselector.tpl:27 + + + Language dropdown + القائمة المنسدلة للغة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_languageselector\ps_languageselector.tpl:27 + + + + + + + logo + شعار + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\profiles\id_gencode_597719e66686a_1500977638.tpl:1 + + + + + + + Active filters + يشتغل + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\active_filters.tpl:27 + + + + + + + (no filter) + (أي مرشح) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:132 + + + + + + + Grid + شبكة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:30 + + + List + قائمة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:31 + + + + + + + Sort by: + ترتيب حسب: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\sort-orders.tpl:25 + + + + + + + Close + قريب + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:151 + + + + + + + List of sub categories in %name%: + قائمة الفئات الفرعية في %name%: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\category.tpl:34 + + + List of pages in %name%: + قائمة الصفحات في %name%: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\category.tpl:45 + + + + + + + Sitemap + خريطة الموقع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\sitemap.tpl:28 + + + + + + + Our stores + متاجرنا + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\stores.tpl:28 + + + About and Contact + معلومات والاتصال + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\stores.tpl:44 + + + + + + + Date + تاريخ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:188 + + + Status + الحالة + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:89 + + + + + + + Home + الصفحة الرئيسية + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\my-account-links.tpl:32 + + + + + + + We'll be back soon. + سنعود قريبا. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\maintenance.tpl:42 + + + + + + + Sorry for the inconvenience. + آسف للإزعاج. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\not-found.tpl:28 + + + Search again what you are looking for + البحث مرة أخرى ما كنت تبحث عن + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\not-found.tpl:29 + + + + + + + 403 Forbidden + 403 ممنوع + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\restricted-country.tpl:43 + + + You cannot access this store from your country. We apologize for the inconvenience. + لا يمكنك الوصول إلى هذا المتجر من بلدك. نعتذر عن الإزعاج. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\restricted-country.tpl:44 + + + + diff --git a/themes/at_movic/translations/de-DE/ShopFormsHelp.de-DE.xlf b/themes/at_movic/translations/de-DE/ShopFormsHelp.de-DE.xlf new file mode 100644 index 00000000..3cc89356 --- /dev/null +++ b/themes/at_movic/translations/de-DE/ShopFormsHelp.de-DE.xlf @@ -0,0 +1,65 @@ + + + + + + your@email.com + your@email.com + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:66 + + + Select reference + Referenz auswählen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:76 + + + optional + fakultativ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:95 + + + How can we help? + Wie können wir helfen? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:106 + + + + + + + Don't forget to save your customization to be able to add to cart + Vergessen Sie nicht, Ihre Anpassung zu speichern, um in den Warenkorb hinzufügen zu können + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:29 + + + Your message here + Ihre Nachricht hier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:38 + + + 250 char. max + 250 char. max + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:39 + + + No selected file + Keine ausgewählte Datei + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:52 + + + .png .jpg .gif + .png .jpg .gif + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:56 + + + + diff --git a/themes/at_movic/translations/de-DE/ShopFormsLabels.de-DE.xlf b/themes/at_movic/translations/de-DE/ShopFormsLabels.de-DE.xlf new file mode 100644 index 00000000..094b5a92 --- /dev/null +++ b/themes/at_movic/translations/de-DE/ShopFormsLabels.de-DE.xlf @@ -0,0 +1,137 @@ + + + + + + Subject + Fach + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:48 + + + Order reference + Bestellhinweis + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:73 + + + Attachment + Befestigung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:90 + + + Message + Nachricht + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:101 + + + + + + + Email address + E-mail address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:53 + + + + + + + Your email... + Deine E-Mail... + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:56 + + + + + + + Order Reference: + Bestellnummer: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:41 + + + Email: + E-mail: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:59 + + + + + + + Set your password: + Lege ein passwort fest: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:53 + + + + + + + New password + Neues kennwort + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:45 + + + Confirmation + Bestätigung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:52 + + + + + + + Product + Produkt + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:56 + + + + + + + -- please choose -- + -- bitte auswählen -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:60 + + + -- day -- + -- tag -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:122 + + + -- month -- + -- monat -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:123 + + + -- year -- + -- jahr -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:124 + + + Optional + Fakultativ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:186 + + + + diff --git a/themes/at_movic/translations/de-DE/ShopThemeActions.de-DE.xlf b/themes/at_movic/translations/de-DE/ShopThemeActions.de-DE.xlf new file mode 100644 index 00000000..c8450845 --- /dev/null +++ b/themes/at_movic/translations/de-DE/ShopThemeActions.de-DE.xlf @@ -0,0 +1,449 @@ + + + + + + Clear + Klar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:177 + + + + + + + Quick view + Schnellansicht + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:58 + + + + + + + Sign out + Ausloggen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:107 + + + + + + + Sign in + Anmelden + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\login-form.tpl:53 + + + + + + + Checkout + Auschecken + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed-actions.tpl:40 + + + + + + + Choose file + Datei wählen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\javascript.tpl:43 + + + Do not show this popup again + Zeigen Sie dieses Popup nicht erneut an + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\javascript.tpl:44 + + + + + + + Send + Senden + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:79 + + + + + + + Subscribe + Abonnieren + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:48 + + + + + + + OK + OK + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_facetedsearch\ps_facetedsearch.tpl:31 + + + + + + + Continue shopping + Mit dem Einkaufen fortfahren + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart.tpl:48 + + + + + + + Proceed to checkout + Zur Kasse gehen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:67 + + + + + + + remove from cart + aus dem Warenkorb entfernen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart-product-line.tpl:42 + + + Remove + Entfernen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart-product-line.tpl:42 + + + + + + + Refresh + Erneuern + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\quickview.tpl:67 + + + + + + + Filter By + Filtern nach + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:28 + + + Clear all + Alles löschen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:35 + + + + + + + View products + Produkte ansehen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\brand.tpl:34 + + + + + + + Quantity + Quantity + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:39 + + + Add to cart + In den Warenkorb legen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:54 + + + + + + + Remove Image + Bild entfernen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:49 + + + Save Customization + Anpassung speichern + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:62 + + + + + + + Filter + Filter + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:49 + + + + + + + Back to top + Zurück nach oben + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products.tpl:38 + + + + + + + Select + Wählen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\sort-orders.tpl:33 + + + + + + + Save + Sparen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\customer-form.tpl:47 + + + + + + + Cancel + Stornieren + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\address-form.tpl:42 + + + + + + + Continue + Fortsetzen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:111 + + + + + + + Edit + Bearbeiten + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\checkout-step.tpl:39 + + + + + + + Delete + Löschen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\block-address.tpl:40 + + + Update + Aktualisieren + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\block-address.tpl:36 + + + + + + + show details + zeige details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-summary.tpl:38 + + + + + + + Add + Hinzufügen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:57 + + + Take advantage of our exclusive offers: + Nutzen Sie unsere exklusiven Angebote: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:70 + + + + + + + edit + bearbeiten + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:63 + + + + + + + add new address + Neue Adresse hinzufügen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:108 + + + + + + + Choose + Wählen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:34 + + + + + + + Create new address + Neue Adresse anlegen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\addresses.tpl:45 + + + + + + + Reorder + Neu anordnen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:47 + + + + + + + Print out + Ausdrucken + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:88 + + + + + + + Send reset link + Rücksendung senden + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:59 + + + Back to login + Zurück zur Anmeldung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:71 + + + + + + + Back to Login + Zurück zur Anmeldung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:77 + + + Change Password + Passwort ändern + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:65 + + + + + + + Download + Herunterladen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:68 + + + + + + + Show + Anzeigen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:150 + + + Hide + Verstecken + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:148 + + + + + + + Previous + Bisherige + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:46 + + + Next + Nächster + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:48 + + + + diff --git a/themes/at_movic/translations/de-DE/ShopThemeCatalog.de-DE.xlf b/themes/at_movic/translations/de-DE/ShopThemeCatalog.de-DE.xlf new file mode 100644 index 00000000..3f8f2275 --- /dev/null +++ b/themes/at_movic/translations/de-DE/ShopThemeCatalog.de-DE.xlf @@ -0,0 +1,499 @@ + + + + + + item(s) + Artikel + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\appagebuilder\views\templates\hook\cate-image\ApCategoryImage.tpl:42 + + + + + + + Best Sellers + Bestseller + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_bestsellers\views\templates\hook\ps_bestsellers.tpl:27 + + + All best sellers + Alle Bestseller + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_bestsellers\views\templates\hook\ps_bestsellers.tpl:34 + + + + + + + Brands + Marken + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\brands.tpl:31 + + + + + + + No brand + Keine Marke + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_brandlist\views\templates\hook\ps_brandlist.tpl:37 + + + + + + + All brands + Alle Marken + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_brandlist\views\templates\_partials\brand_form.tpl:28 + + + + + + + %s other product in the same category: + %s anderes Produkt in der gleichen Kategorie: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:31 + + + %s other products in the same category: + %s andere Produkte der gleichen Kategorie: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:33 + + + + + + + Customers who bought this product also bought: + Kunden, die diesen Artikel gekauft haben, kauften auch: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_crossselling\views\templates\hook\ps_crossselling.tpl:27 + + + + + + + My alerts + Meine Alerts + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailalerts\views\templates\hook\my-account.tpl:30 + + + + + + + Popular Products + Beliebte Produkte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_featuredproducts\views\templates\hook\ps_featuredproducts.tpl:27 + + + All products + Alle Produkte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_featuredproducts\views\templates\hook\ps_featuredproducts.tpl:34 + + + + + + + New products + Neue Produkte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_newproducts\views\templates\hook\ps_newproducts.tpl:28 + + + All new products + Alle neuen Produkte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_newproducts\views\templates\hook\ps_newproducts.tpl:35 + + + + + + + 1 person is currently watching this product. + 1 person schaut gerade dieses produkt an. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:29 + + + %nb_people% people are currently watching this product. + %nb_people% leute beobachten derzeit dieses Produkt. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:31 + + + Last time this product was bought: %date_last_order% + Zuletzt wurde dieses Produkt gekauft %date_last_order% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:37 + + + Last time this product was added to a cart: %date_last_cart% + Dieses Produkt wurde in den Warenkorb gelegt: %date_last_cart% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:41 + + + + + + + No RSS feed added + Kein RSS-Feed hinzugefügt + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_rssfeed\views\templates\hook\ps_rssfeed.tpl:36 + + + + + + + Search + Suche + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_searchbar\ps_searchbar.tpl:32 + + + + + + + On sale + Im Angebot + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_specials\views\templates\hook\ps_specials.tpl:27 + + + All sale products + Alle Verkaufsprodukte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_specials\views\templates\hook\ps_specials.tpl:33 + + + + + + + Suppliers + Lieferanten + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\suppliers.tpl:28 + + + + + + + No supplier + Kein Lieferant + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_supplierlist\views\templates\hook\ps_supplierlist.tpl:37 + + + + + + + All suppliers + Alle Lieferanten + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_supplierlist\views\templates\_partials\supplier_form.tpl:28 + + + + + + + Viewed products + Angezeigte Produkte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_viewedproduct\views\template\hook\ps_viewedproduct.tpl:28 + + + + + + + List of products by brand %brand_name% + Liste der Produkte nach Marken %brand_name% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\listing\manufacturer.tpl:28 + + + + + + + List of products by supplier %s + Liste der Produkte nach Lieferanten %s + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\listing\supplier.tpl:28 + + + + + + + This pack contains + Diese Packung enthält + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\product.tpl:117 + + + You might also like + Das könnte dir auch gefallen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\product.tpl:156 + + + + + + + %1$s: + %1$s: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\active_filters.tpl:35 + + + + + + + Regular price + Regulärer Preis + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:82 + + + Price + Preis + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:91 + + + + + + + Quantity + Anzahl + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:199 + + + Product customization + Produktanpassung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:180 + + + Product + Produkt + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:33 + + + Unit price + Einzelpreis + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:36 + + + Total price + Gesamtpreis + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:37 + + + + + + + Your customization: + Ihre Anpassung: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:41 + + + + + + + Brand + Marke + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:19 + + + Reference + Referenz + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:28 + + + In stock + Auf Lager + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:36 + + + Availability date: + Verfügbarkeitsdatum: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:44 + + + Data sheet + Datenblatt + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:57 + + + Specific References + Spezifische Referenzen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:71 + + + Condition + Bedingung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:84 + + + + + + + Volume discounts + Mengenrabatte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:27 + + + You Save + Du sparst + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:34 + + + Up to %discount% + Bis zu %discount% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:42 + + + + + + + Save %percentage% + Sparen %percentage% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:51 + + + Save %amount% + Sparen %amount% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:54 + + + (%unit_price%) + (%unit_price%) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:62 + + + %price% tax excl. + %price% teuer exkl. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:70 + + + Instead of %price% + Anstatt von %price% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:76 + + + Including %amount% for ecotax + Einschließlich %amount% für ecotax + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:82 + + + (not impacted by the discount) + (nicht von der ermäßigung betroffen) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:84 + + + + + + + There are %product_count% products. + Es gibt %product_count% produkte. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:35 + + + There is 1 product. + Es gibt 1 Produkt. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:37 + + + + + + + Showing %from%-%to% of %total% item(s) + Anzeigen %from%-%to% von %total% artikel(s) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:28 + + + + + + + Description + Beschreibung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:12 + + + Product Details + Produkt Details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:22 + + + Attachments + Anhänge + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:31 + + + + diff --git a/themes/at_movic/translations/de-DE/ShopThemeCheckout.de-DE.xlf b/themes/at_movic/translations/de-DE/ShopThemeCheckout.de-DE.xlf new file mode 100644 index 00000000..a5017ceb --- /dev/null +++ b/themes/at_movic/translations/de-DE/ShopThemeCheckout.de-DE.xlf @@ -0,0 +1,513 @@ + + + + + + Product successfully added to your shopping cart + Produkt wurde erfolgreich in den Warenkorb gelegt + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:32 + + + Quantity: + Anzahl: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:48 + + + There are %products_count% items in your cart. + Es gibt %products_count% produkte in Ihrem Einkaufswagen. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:55 + + + There is %product_count% item in your cart. + Es ist %product_count% Artikel in Ihrem Warenkorb. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:57 + + + Total products: + Gesamtprodukte: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:59 + + + Total shipping: + Gesamtversand: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:60 + + + Total: + Gesamt: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:64 + + + + + + + items + Artikel + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart.tpl:38 + + + item + Artikel + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart.tpl:47 + + + + + + + The minimum purchase order quantity for the product is %quantity%. + Die Mindestbestellmenge für das Produkt beträgt %quantity%. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:77 + + + + + + + Shopping Cart + Einkaufswagen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart.tpl:38 + + + + + + + Your order is confirmed + Ihre Bestellung wird bestätigt + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:11 + + + An email has been sent to your mail address %email%. + Eine E-Mail wurde an Ihre E-Mail Adresse gesendet %email%. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:16 + + + You can also [1]download your invoice[/1] + Sie können auch [1]download your invoice[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:23 + + + Order details + Bestelldetails + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:58 + + + Order reference: %reference% + Bestellbezeichnung: %reference% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:60 + + + Payment method: %method% + Zahlungsmethode: %method% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:61 + + + Shipping method: %method% + Versandart: %method% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:64 + + + Save time on your next order, sign up now + Sparen Sie Zeit bei Ihrem nächsten Auftrag, melden Sie sich jetzt an + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:94 + + + + + + + Use this address for invoice too + Verwenden Sie diese Adresse auch für Rechnung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\address-form.tpl:26 + + + + + + + Gift + Geschenk + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed-product-line.tpl:140 + + + + + + + There are no more items in your cart + Es gibt keine weiteren Artikel in Ihrem Warenkorb + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed.tpl:39 + + + + + + + Have a promo code? + Haben Sie einen Promo-Code? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:47 + + + Promo code + Gutscheincode + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:56 + + + + + + + Create an account + Ein Konto erstellen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:30 + + + (optional) + (fakultativ) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:30 + + + And save time on your next order! + Und sparen Sie Zeit bei Ihrem nächsten Auftrag! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:32 + + + + + + + Order items + Artikel bestellen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-confirmation-table.tpl:28 + + + + + + + %product_count% item in your cart + %product_count% Artikel in Ihrem Warenkorb + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary-table.tpl:31 + + + %products_count% items in your cart + %product_count% Artikel in Ihrem Warenkorb + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary-table.tpl:33 + + + + + + + Please check your order before payment + Bitte überprüfen Sie Ihre Bestellung vor Zahlung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:28 + + + Addresses + Adressen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:35 + + + Your Delivery Address + Ihre Lieferadresse + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:44 + + + Shipping Method + Versandart + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:62 + + + + + + + Your Invoice Address + Ihre Rechnungsadresse + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:85 + + + Shipping Address + Lieferanschrift + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:36 + + + The selected address will be used both as your personal address (for invoice) and as your delivery address. + Die ausgewählte Adresse wird sowohl als persönliche Adresse (für Rechnung) als auch als Lieferadresse verwendet. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:41 + + + The selected address will be used as your personal address (for invoice). + Die ausgewählte Adresse wird als persönliche Adresse (für Rechnung) verwendet. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:45 + + + Billing address differs from shipping address + Rechnungsadresse unterscheidet sich von der Lieferadresse + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:76 + + + + + + + No payment needed for this order + Keine Zahlung für diese Bestellung erforderlich + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:8 + + + Selected + Ausgewählt + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:31 + + + Unfortunately, there are no payment method available. + Leider gibt es keine Zahlungsmethode. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:75 + + + By confirming the order, you certify that you have read and agree with all of the conditions below: + Durch die Bestätigung der Bestellung bestätigen Sie, dass Sie alle nachfolgenden Bedingungen gelesen und akzeptiert haben: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:85 + + + Order with an obligation to pay + Bestellen mit einer Verpflichtung zu zahlen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:141 + + + Please make sure you've chosen a [1]payment method[/1] and accepted the [2]terms and conditions[/2]. + Bitte stellen Sie sicher, dass Sie sich entschieden haben [1]payment method[/1] und akzeptierte die [2]Geschäftsbedingungen[/2]. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:126 + + + + + + + If you sign out now, your cart will be emptied. + Wenn Sie sich jetzt abmelden, wird Ihr Warenkorb geleert. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:30 + + + Order as a guest + Als Gast bestellen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:46 + + + + + + + If you would like to add a comment about your order, please write it in the field below. + Wenn Sie einen Kommentar zu Ihrer Bestellung hinzufügen möchten, schreiben Sie ihn bitte in das untenstehende Feld. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:83 + + + I would like to receive my order in recycled packaging. + Ich möchte meine Bestellung in recycelten Verpackungen erhalten. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:91 + + + If you'd like, you can add a note to the gift: + Wenn du möchtest, kannst du dem Geschenk eine Notiz hinzufügen: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:103 + + + Unfortunately, there are no carriers available for your delivery address. + Leider sind für Ihre Lieferadresse keine Carrier vorhanden. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:115 + + + + + + + Code + Code + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:64 + + + Description + Beschreibung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:68 + + + Value + Wert + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:76 + + + Minimum + Minimum + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:80 + + + Cumulative + Kumulativ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:84 + + + Expiration date + Verfallsdatum + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:88 + + + + + + + Quantity + Anzahl + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:40 + + + + + + + Order reference + Bestellnummer + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:38 + + + Date + Datum + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:39 + + + Total price + Gesamtpreis + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:40 + + + Payment + Zahlung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:41 + + + Status + Status + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:42 + + + Invoice + Rechnung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:43 + + + + + + + Carrier + Träger + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:191 + + + Payment method + Bezahlverfahren + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:57 + + + Delivery address %alias% + Lieferadresse %alias% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:132 + + + Invoice address %alias% + Rechnungsanschrift %alias% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:140 + + + Weight + Gewicht + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:194 + + + Shipping cost + Versandkosten + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:197 + + + Tracking number + Tracking-Nummer + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:200 + + + + diff --git a/themes/at_movic/translations/de-DE/ShopThemeCustomeraccount.de-DE.xlf b/themes/at_movic/translations/de-DE/ShopThemeCustomeraccount.de-DE.xlf new file mode 100644 index 00000000..b50c7197 --- /dev/null +++ b/themes/at_movic/translations/de-DE/ShopThemeCustomeraccount.de-DE.xlf @@ -0,0 +1,561 @@ + + + + + + View my customer account + Mein Kundenkonto ansehen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:36 + + + Log in to your customer account + Melden Sie sich bei Ihrem Kundenkonto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:58 + + + + + + + Checkout + Auschecken + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:113 + + + + + + + Account + Konto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customeraccountlinks\ps_customeraccountlinks.tpl:33 + + + + + + + Connected as [1]%firstname% %lastname%[/1]. + Verbunden als [1]%firstname% %lastname%[/1]. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:11 + + + Not you? [1]Log out[/1] + Nicht du? [1]Ausloggen[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:24 + + + + + + + Create an account + Ein Konto erstellen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:28 + + + Already have an account? + Hast du schon ein Konto? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:35 + + + Log in instead! + Melden Sie sich stattdessen an! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:35 + + + + + + + Update your address + Aktualisieren Sie Ihre Adresse + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\address.tpl:29 + + + New address + Neue Adresse + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\address.tpl:31 + + + + + + + Your addresses + Ihre Adressen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\addresses.tpl:28 + + + + + + + Log in to your account + Melde dich in deinem Konto an + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\authentication.tpl:28 + + + No account? Create one here + Kein Account? Erstellen Sie hier ein + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\authentication.tpl:42 + + + + + + + Your vouchers + Ihre Gutscheine + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:28 + + + + + + + Guest Order Tracking + Guest Order Tracking + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:28 + + + To track your order, please enter the following information: + Um Ihre Bestellung zu verfolgen, geben Sie bitte folgende Informationen ein: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:34 + + + For example: QIIXJXNUI or QIIXJXNUI#1 + Zum Beispiel: QIIXJXNUI oder QIIXJXNUI # 1 + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:52 + + + + + + + Guest Tracking + Gäste-Tracking + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:28 + + + Transform your guest account into a customer account and enjoy: + Verwandeln Sie Ihr Gastkonto in ein Kundenkonto und genießen Sie: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:42 + + + Personalized and secure access + Personalisierter und sicherer Zugang + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:44 + + + Fast and easy checkout + Einfache und schnelle abreise + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:45 + + + Easier merchandise return + Einfachere Warenrückgabe + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:46 + + + + + + + Order history + Bestellverlauf + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:28 + + + Here are the orders you've placed since your account was created. + Hier sind die Aufträge, die du seit dein Konto erstellt hast. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:32 + + + Details + Details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:101 + + + + + + + Your personal information + Ihre persönliche Information + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\identity.tpl:28 + + + + + + + Your account + Ihr Konto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:28 + + + Information + Information + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:38 + + + Addresses + Adressen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:46 + + + Add first address + Erste Adresse hinzufügen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:53 + + + Order history and details + Bestellhistorie und Details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:62 + + + Vouchers + Gutscheine + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:80 + + + + + + + Credit slips + Gutschriften + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:28 + + + Order + Auftrag + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:61 + + + Date issued + Ausgabedatum + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:69 + + + Credit slips you have received after canceled orders. + Gutschriften, die Sie nach stornierten Bestellungen erhalten haben. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:32 + + + Credit slip + Einzahlungsschein + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:65 + + + View credit slip + Kreditschein anzeigen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:73 + + + + + + + Merchandise returns + Merchandise kehrt zurück + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:28 + + + Here is a list of pending merchandise returns + Hier ist eine Liste der ausstehenden Warenrücksendungen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:35 + + + Return + Rückkehr + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:74 + + + Package status + Paketstatus + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:78 + + + Returns form + Rücksendung Formular + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:87 + + + + + + + Order details + Bestelldetails + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:28 + + + Order Reference %reference% - placed on %date% + Bestellnummer %reference% - platziert auf %date% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:38 + + + Download your invoice as a PDF file. + Laden Sie ihre Rechnung als PDF-Datei herunter. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:62 + + + You have given permission to receive your order in recycled packaging. + Sie haben die Erlaubnis erhalten, Ihre Bestellung in recycelten Verpackungen zu erhalten. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:69 + + + You have requested gift wrapping for this order. + Sie haben eine Geschenkverpackung für diese Bestellung angefordert. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:74 + + + Message + Nachricht + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:75 + + + Follow your order's status step-by-step + Befolgen Sie den Status Ihrer Bestellung Schritt für Schritt + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:84 + + + Click the following link to track the delivery of your order + Klicken Sie auf den folgenden Link, um die Lieferung Ihrer Bestellung zu verfolgen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:122 + + + + + + + Return details + Rückgabe Details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:4 + + + %number% on %date% + %number% auf %date% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:12 + + + We have logged your return request. + Wir haben Ihre Rückkehr Anfrage protokolliert. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:18 + + + Your package must be returned to us within %number% days of receiving your order. + Ihr Paket muss uns innerhalb von uns zurückgesandt werden %number% tage nach Erhalt Ihrer Bestellung. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:19 + + + The current status of your merchandise return is: [1] %status% [/1] + Der aktuelle Status Ihrer Wareneingang ist: [1] %status% [/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:25 + + + List of items to be returned: + Liste der zurückzusendenden Artikel: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:35 + + + Reminder + Mahnung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:112 + + + All merchandise must be returned in its original packaging and in its original state. + Alle Waren müssen in ihrer Originalverpackung und in ihrem ursprünglichen Zustand zurückgegeben werden. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:114 + + + Please print out the [1]returns form[/1] and include it with your package. + Bitte ausdrucken [1]returns form[/1] und schließe es mit deinem Paket ein. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:119 + + + Please check the [1]returns form[/1] for the correct address. + Bitte überprüfen Sie die [1]returns form[/1] Für die richtige Adresse. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:129 + + + When we receive your package, we will notify you by email. We will then begin processing order reimbursement. + Wenn wir Ihr Paket erhalten, werden wir Sie per E-Mail benachrichtigen. Wir werden dann mit der Bearbeitung der Auftragserstattung beginnen. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:139 + + + Please let us know if you have any questions. + Bitte lassen Sie uns wissen, wenn Sie Fragen haben. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:144 + + + If the conditions of return listed above are not respected, we reserve the right to refuse your package and/or reimbursement. + Sollten die oben aufgeführten Konditionen nicht eingehalten werden, behalten wir uns vor, Ihr Paket und / oder die Erstattung zu verweigern. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:149 + + + + + + + Forgot your password? + Haben Sie Ihr Passwort vergessen? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\login-form.tpl:43 + + + + + + + Please enter the email address you used to register. You will receive a temporary link to reset your password. + Bitte geben Sie die E-Mail-Adresse ein, mit der Sie sich registriert haben. Sie erhalten einen temporären Link, um Ihr Passwort zurückzusetzen. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:48 + + + + + + + Reset your password + Setze dein Passwort zurück + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:28 + + + Email address: %email% + E-Mail-Addresse: %email% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:37 + + + + + + + Back to your account + Zurück zu Ihrem Account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\my-account-links.tpl:28 + + + + + + + Returned + Ist zurückgekommen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:205 + + + Merchandise return + Warenrückgabe + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:236 + + + If you wish to return one or more products, please mark the corresponding boxes and provide an explanation for the return. When complete, click the button below. + Wenn Sie ein oder mehrere Produkte zurücksenden möchten, markieren Sie bitte die entsprechenden Felder und geben Ihnen eine Erklärung für die Rücksendung. Wenn Sie fertig sind, klicken Sie auf die Schaltfläche unten. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:237 + + + Request a return + Rückgabe anfordern + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:247 + + + + + + + Messages + Meldungen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:28 + + + Add a message + Füge eine Nachricht hinzu + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:49 + + + If you would like to add a comment about your order, please write it in the field below. + Wenn Sie einen Kommentar zu Ihrer Bestellung hinzufügen möchten, schreiben Sie ihn bitte in das untenstehende Feld. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:50 + + + + diff --git a/themes/at_movic/translations/de-DE/ShopThemeGlobal.de-DE.xlf b/themes/at_movic/translations/de-DE/ShopThemeGlobal.de-DE.xlf new file mode 100644 index 00000000..e6016b35 --- /dev/null +++ b/themes/at_movic/translations/de-DE/ShopThemeGlobal.de-DE.xlf @@ -0,0 +1,751 @@ + + + + + + Panel Tool + Bedienfeld + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:15 + + + Layout Mod + Layout Mod + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:19 + + + Theme + Thema + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:32 + + + Default + Standard + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:35 + + + Float Header + Schwimmerkopf + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:51 + + + Yes + Ja + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:55 + + + No + Nein + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:58 + + + Live Theme Editor + Live Theme Editor + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:82 + + + Those Images in folder YOURTHEME/assets/img/patterns/ + Diese bilder im ordner YOURTHEME/assets/img/patterns/ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:113 + + + Attachment + Befestigung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:121 + + + Not set + Nicht eingestellt + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:141 + + + Position + Position + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:130 + + + Repeat + Wiederholen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:139 + + + Inherit + Erben + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:153 + + + + + + + Quick view + Schnellansicht + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\profiles\plist1499676422.tpl:83 + + + + + + + Read more + Weiterlesen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:79 + + + In + Im + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:32 + + + On + Auf + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:39 + + + Hit + Schlagen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:62 + + + Sunday + Sonntag + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:87 + + + Monday + Montag + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:88 + + + Tuesday + Dienstag + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:89 + + + Wednesday + Mittwoch + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:90 + + + Thursday + Donnerstag + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:91 + + + Friday + Freitag + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:92 + + + Saturday + Samstag + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:93 + + + January + Januar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:95 + + + February + Februar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:96 + + + March + März + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:97 + + + April + April + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:98 + + + May + Kann + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:99 + + + June + Juni + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:100 + + + July + Juli + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:101 + + + August + August + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:102 + + + September + September + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:103 + + + October + Oktober + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:104 + + + November + November + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:105 + + + December + Dezember + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:106 + + + + + + + View all + Alle anzeigen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\appagebuilder\views\templates\hook\cate-image\ApCategoryImage.tpl:68 + + + + + + + Setting + Rahmen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:17 + + + Language: + Sprache: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:22 + + + Currency: + Währung: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:34 + + + My account + Mein Konto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:84 + + + + + + + Hello + Hallo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:40 + + + Wishlist + Wunschliste + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:74 + + + Compare + Vergleichen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:86 + + + Account + Konto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:28 + + + + + + + Contact us + Kontaktiere uns + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\nav.tpl:39 + + + + + + + Sorry, We are updating data, please come back later!!!! + Entschuldigung, wir aktualisieren Daten, bitte komm später später !!!! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:116 + + + Childrens + Kinder + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:50 + + + Recent blog posts + Aktuelle Blog-Beiträge + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:68 + + + + + + + Posted By + Geschrieben von + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:24 + + + Comment + Kommentar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:67 + + + Comments + Bemerkungen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:14 + + + Created On + Erstellt am + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:23 + + + Comment Link + Kommentar Link + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:27 + + + Leave your comment + Hinterlasse ein Kommentar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:45 + + + Full Name + Vollständiger Name + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:49 + + + Enter your full name + Geben Sie Ihren vollständigen Namen ein + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:52 + + + Email + Email + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:58 + + + Enter your email + Geben sie ihre E-Mail Adresse ein + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:61 + + + Enter your comment + Geben Sie Ihren Kommentar ein + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:70 + + + Captcha + Captcha + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:76 + + + Submit + Einreichen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:86 + + + + + + + Tags: + Tags: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:100 + + + In Same Category + In der gleichen Kategorie + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:113 + + + Related by Tags + Verwandt mit Tags + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:121 + + + Sorry, This blog is not avariable. May be this was unpublished or deleted. + Sorry, dieses Blog ist nicht avariable. Vielleicht ist dies unveröffentlicht oder gelöscht. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:152 + + + + + + + Related products + Ähnliche Produkte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:27 + + + + + + + Call us: [1]%phone%[/1] + Rufen sie uns an: [1]%phone%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:43 + + + Store information + Information speichern + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:29 + + + Fax: [1]%fax%[/1] + Faxen: [1]%fax%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:57 + + + Email us: [1]%email%[/1] + Mailen Sie uns: [1]%email%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:72 + + + + + + + Call us: + Rufen Sie uns an: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:37 + + + Fax: + Faxen: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:47 + + + Email us: + Mailen Sie uns: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:57 + + + + + + + Currency + Währung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_currencyselector\ps_currencyselector.tpl:27 + + + Currency dropdown + Währung Dropdown + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_currencyselector\ps_currencyselector.tpl:27 + + + + + + + join our newsletter + Abonnieren Sie unseren Newsletter + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:27 + + + + + + + Carousel buttons + Karussellknöpfe + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:45 + + + Previous + Bisherige + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:50 + + + Next + Nächster + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:56 + + + + + + + Language + Sprache + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_languageselector\ps_languageselector.tpl:27 + + + Language dropdown + Sprachunterbrechung + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_languageselector\ps_languageselector.tpl:27 + + + + + + + logo + logo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\profiles\id_gencode_597719e66686a_1500977638.tpl:1 + + + + + + + Active filters + Aktive filters + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\active_filters.tpl:27 + + + + + + + (no filter) + (kein filter) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:132 + + + + + + + Grid + Gitter + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:30 + + + List + Liste + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:31 + + + + + + + Sort by: + Sortiere nach: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\sort-orders.tpl:25 + + + + + + + Close + Schließen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:151 + + + + + + + List of sub categories in %name%: + Liste der unterkategorien in %name%: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\category.tpl:34 + + + List of pages in %name%: + Liste der seiten in %name%: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\category.tpl:45 + + + + + + + Sitemap + Sitemap + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\sitemap.tpl:28 + + + + + + + Our stores + Unsere Läden + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\stores.tpl:28 + + + About and Contact + Über und Kontakt + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\stores.tpl:44 + + + + + + + Date + Datum + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:188 + + + Status + Status + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:89 + + + + + + + Home + Zuhause + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\my-account-links.tpl:32 + + + + + + + We'll be back soon. + Wir werden bald zurück sein. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\maintenance.tpl:42 + + + + + + + Sorry for the inconvenience. + Entschuldigen Sie die Unannehmlichkeiten. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\not-found.tpl:28 + + + Search again what you are looking for + Suchen Sie noch einmal was Sie suchen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\not-found.tpl:29 + + + + + + + 403 Forbidden + 403 Verboten + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\restricted-country.tpl:43 + + + You cannot access this store from your country. We apologize for the inconvenience. + Sie können nicht auf diesen Laden von Ihrem Land zugreifen. Wir entschuldigen uns für die Unannehmlichkeiten. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\restricted-country.tpl:44 + + + + diff --git a/themes/at_movic/translations/en-US/ShopFormsHelp.en-US.xlf b/themes/at_movic/translations/en-US/ShopFormsHelp.en-US.xlf new file mode 100644 index 00000000..52b3787c --- /dev/null +++ b/themes/at_movic/translations/en-US/ShopFormsHelp.en-US.xlf @@ -0,0 +1,65 @@ + + + + + + your@email.com + your@email.com + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:66 + + + Select reference + Select reference + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:76 + + + optional + optional + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:95 + + + How can we help? + How can we help? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:106 + + + + + + + Don't forget to save your customization to be able to add to cart + Don't forget to save your customization to be able to add to cart + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:29 + + + Your message here + Your message here + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:38 + + + 250 char. max + 250 char. max + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:39 + + + No selected file + No selected file + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:52 + + + .png .jpg .gif + .png .jpg .gif + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:56 + + + + diff --git a/themes/at_movic/translations/en-US/ShopFormsLabels.en-US.xlf b/themes/at_movic/translations/en-US/ShopFormsLabels.en-US.xlf new file mode 100644 index 00000000..59d5de35 --- /dev/null +++ b/themes/at_movic/translations/en-US/ShopFormsLabels.en-US.xlf @@ -0,0 +1,137 @@ + + + + + + Subject + Subject + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:48 + + + Order reference + Order reference + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:73 + + + Attachment + Attachment + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:90 + + + Message + Message + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:101 + + + + + + + Email address + Email address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:53 + + + + + + + Your email... + Your email... + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:56 + + + + + + + Order Reference: + Order Reference: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:41 + + + Email: + Email: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:59 + + + + + + + Set your password: + Set your password: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:53 + + + + + + + New password + New password + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:45 + + + Confirmation + Confirmation + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:52 + + + + + + + Product + Product + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:56 + + + + + + + -- please choose -- + -- please choose -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:60 + + + -- day -- + -- day -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:122 + + + -- month -- + -- month -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:123 + + + -- year -- + -- year -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:124 + + + Optional + Optional + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:186 + + + + diff --git a/themes/at_movic/translations/en-US/ShopThemeActions.en-US.xlf b/themes/at_movic/translations/en-US/ShopThemeActions.en-US.xlf new file mode 100644 index 00000000..1ae0a3da --- /dev/null +++ b/themes/at_movic/translations/en-US/ShopThemeActions.en-US.xlf @@ -0,0 +1,449 @@ + + + + + + Clear + Clear + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:177 + + + + + + + Quick view + Quick view + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:58 + + + + + + + Sign out + Sign out + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:107 + + + + + + + Sign in + Sign in + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\login-form.tpl:53 + + + + + + + Checkout + Checkout + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed-actions.tpl:40 + + + + + + + Choose file + Choose file + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\javascript.tpl:43 + + + Do not show this popup again + Do not show this popup again + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\javascript.tpl:44 + + + + + + + Send + Send + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:79 + + + + + + + Subscribe + Subscribe + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:48 + + + + + + + OK + OK + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_facetedsearch\ps_facetedsearch.tpl:31 + + + + + + + Continue shopping + Continue shopping + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart.tpl:48 + + + + + + + proceed to checkout + proceed to checkout + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:67 + + + + + + + remove from cart + remove from cart + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart-product-line.tpl:42 + + + Remove + Remove + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart-product-line.tpl:42 + + + + + + + Refresh + Refresh + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\quickview.tpl:67 + + + + + + + Filter By + Filter By + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:28 + + + Clear all + Clear all + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:35 + + + + + + + View products + View products + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\brand.tpl:34 + + + + + + + Quantity + Quantity + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:39 + + + Add to cart + Add to cart + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:54 + + + + + + + Remove Image + Remove Image + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:49 + + + Save Customization + Save Customization + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:62 + + + + + + + Filter + Filter + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:49 + + + + + + + Back to top + Back to top + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products.tpl:38 + + + + + + + Select + Select + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\sort-orders.tpl:33 + + + + + + + Save + Save + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\customer-form.tpl:47 + + + + + + + Cancel + Cancel + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\address-form.tpl:42 + + + + + + + Continue + Continue + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:111 + + + + + + + Edit + Edit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\checkout-step.tpl:39 + + + + + + + Delete + Delete + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\block-address.tpl:40 + + + Update + Update + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\block-address.tpl:36 + + + + + + + show details + show details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-summary.tpl:38 + + + + + + + Add + Add + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:57 + + + Take advantage of our exclusive offers: + Take advantage of our exclusive offers: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:70 + + + + + + + edit + edit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:63 + + + + + + + add new address + add new address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:108 + + + + + + + Choose + Choose + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:34 + + + + + + + Create new address + Create new address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\addresses.tpl:45 + + + + + + + Reorder + Reorder + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:47 + + + + + + + Print out + Print out + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:88 + + + + + + + Send reset link + Send reset link + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:59 + + + Back to login + Back to login + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:71 + + + + + + + Back to Login + Back to Login + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:77 + + + Change Password + Change Password + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:65 + + + + + + + Download + Download + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:68 + + + + + + + Show + Show + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:150 + + + Hide + Hide + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:148 + + + + + + + Previous + Previous + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:46 + + + Next + Next + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:48 + + + + diff --git a/themes/at_movic/translations/en-US/ShopThemeCatalog.en-US.xlf b/themes/at_movic/translations/en-US/ShopThemeCatalog.en-US.xlf new file mode 100644 index 00000000..e17ef3b6 --- /dev/null +++ b/themes/at_movic/translations/en-US/ShopThemeCatalog.en-US.xlf @@ -0,0 +1,499 @@ + + + + + + item(s) + item(s) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\appagebuilder\views\templates\hook\cate-image\ApCategoryImage.tpl:42 + + + + + + + Best Sellers + Best Sellers + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_bestsellers\views\templates\hook\ps_bestsellers.tpl:27 + + + All best sellers + All best sellers + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_bestsellers\views\templates\hook\ps_bestsellers.tpl:34 + + + + + + + Brands + Brands + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\brands.tpl:31 + + + + + + + No brand + No brand + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_brandlist\views\templates\hook\ps_brandlist.tpl:37 + + + + + + + All brands + All brands + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_brandlist\views\templates\_partials\brand_form.tpl:28 + + + + + + + %s other product in the same category: + %s other product in the same category: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:31 + + + %s other products in the same category: + %s other products in the same category: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:33 + + + + + + + Customers who bought this product also bought: + Customers who bought this product also bought: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_crossselling\views\templates\hook\ps_crossselling.tpl:27 + + + + + + + My alerts + My alerts + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailalerts\views\templates\hook\my-account.tpl:30 + + + + + + + Popular Products + Popular Products + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_featuredproducts\views\templates\hook\ps_featuredproducts.tpl:27 + + + All products + All products + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_featuredproducts\views\templates\hook\ps_featuredproducts.tpl:34 + + + + + + + New products + New products + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_newproducts\views\templates\hook\ps_newproducts.tpl:28 + + + All new products + All new products + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_newproducts\views\templates\hook\ps_newproducts.tpl:35 + + + + + + + 1 person is currently watching this product. + 1 person is currently watching this product. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:29 + + + %nb_people% people are currently watching this product. + %nb_people% people are currently watching this product. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:31 + + + Last time this product was bought: %date_last_order% + Last time this product was bought: %date_last_order% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:37 + + + Last time this product was added to a cart: %date_last_cart% + Last time this product was added to a cart: %date_last_cart% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:41 + + + + + + + No RSS feed added + No RSS feed added + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_rssfeed\views\templates\hook\ps_rssfeed.tpl:36 + + + + + + + Search + Search + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_searchbar\ps_searchbar.tpl:31 + + + + + + + On sale + On sale + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_specials\views\templates\hook\ps_specials.tpl:27 + + + All sale products + All sale products + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_specials\views\templates\hook\ps_specials.tpl:33 + + + + + + + Suppliers + Suppliers + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\suppliers.tpl:28 + + + + + + + No supplier + No supplier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_supplierlist\views\templates\hook\ps_supplierlist.tpl:37 + + + + + + + All suppliers + All suppliers + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_supplierlist\views\templates\_partials\supplier_form.tpl:28 + + + + + + + Viewed products + Viewed products + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_viewedproduct\views\template\hook\ps_viewedproduct.tpl:28 + + + + + + + List of products by brand %brand_name% + List of products by brand %brand_name% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\listing\manufacturer.tpl:28 + + + + + + + List of products by supplier %s + List of products by supplier %s + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\listing\supplier.tpl:28 + + + + + + + This pack contains + This pack contains + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\product.tpl:112 + + + You might also like + You might also like + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\product.tpl:156 + + + + + + + %1$s: + %1$s: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\active_filters.tpl:35 + + + + + + + Regular price + Regular price + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:85 + + + Price + Price + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:94 + + + + + + + Quantity + Quantity + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:199 + + + Product customization + Product customization + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:180 + + + Product + Product + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:33 + + + Unit price + Unit price + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:36 + + + Total price + Total price + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:37 + + + + + + + Your customization: + Your customization: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:41 + + + + + + + Brand + Brand + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:19 + + + Reference + Reference + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:28 + + + In stock + In stock + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:36 + + + Availability date: + Availability date: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:44 + + + Data sheet + Data sheet + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:57 + + + Specific References + Specific References + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:71 + + + Condition + Condition + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:84 + + + + + + + Volume discounts + Volume discounts + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:27 + + + You Save + You Save + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:34 + + + Up to %discount% + Up to %discount% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:42 + + + + + + + Save %percentage% + Save %percentage% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:51 + + + Save %amount% + Save %amount% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:54 + + + (%unit_price%) + (%unit_price%) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:62 + + + %price% tax excl. + %price% tax excl. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:70 + + + Instead of %price% + Instead of %price% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:76 + + + Including %amount% for ecotax + Including %amount% for ecotax + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:82 + + + (not impacted by the discount) + (not impacted by the discount) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:84 + + + + + + + There are %product_count% products. + There are %product_count% products. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:35 + + + There is 1 product. + There is 1 product. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:37 + + + + + + + Showing %from%-%to% of %total% item(s) + Showing %from%-%to% of %total% item(s) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:28 + + + + + + + Description + Description + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:12 + + + Product Details + Product Details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:22 + + + Attachments + Attachments + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:31 + + + + diff --git a/themes/at_movic/translations/en-US/ShopThemeCheckout.en-US.xlf b/themes/at_movic/translations/en-US/ShopThemeCheckout.en-US.xlf new file mode 100644 index 00000000..4a515033 --- /dev/null +++ b/themes/at_movic/translations/en-US/ShopThemeCheckout.en-US.xlf @@ -0,0 +1,513 @@ + + + + + + Product successfully added to your shopping cart + Product successfully added to your shopping cart + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:32 + + + Quantity: + Quantity: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:48 + + + There are %products_count% items in your cart. + There are %products_count% items in your cart. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:55 + + + There is %product_count% item in your cart. + There is %product_count% item in your cart. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:57 + + + Total products: + Total products: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:59 + + + Total shipping: + Total shipping: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:60 + + + Total: + Total: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:64 + + + + + + + items + items + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart.tpl:38 + + + item + item + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart.tpl:47 + + + + + + + The minimum purchase order quantity for the product is %quantity%. + The minimum purchase order quantity for the product is %quantity%. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:79 + + + + + + + Shopping Cart + Shopping Cart + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart.tpl:38 + + + + + + + Your order is confirmed + Your order is confirmed + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:11 + + + An email has been sent to your mail address %email%. + An email has been sent to your mail address %email%. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:16 + + + You can also [1]download your invoice[/1] + You can also [1]download your invoice[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:23 + + + Order details + Order details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:58 + + + Order reference: %reference% + Order reference: %reference% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:60 + + + Payment method: %method% + Payment method: %method% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:61 + + + Shipping method: %method% + Shipping method: %method% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:64 + + + Save time on your next order, sign up now + Save time on your next order, sign up now + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:94 + + + + + + + Use this address for invoice too + Use this address for invoice too + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\address-form.tpl:26 + + + + + + + Gift + Gift + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed-product-line.tpl:140 + + + + + + + There are no more items in your cart + There are no more items in your cart + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed.tpl:39 + + + + + + + Have a promo code? + Have a promo code? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:47 + + + Promo code + Promo code + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:56 + + + + + + + Create an account + Create an account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:30 + + + (optional) + (optional) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:30 + + + And save time on your next order! + And save time on your next order! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:32 + + + + + + + Order items + Order items + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-confirmation-table.tpl:28 + + + + + + + %product_count% item in your cart + %product_count% item in your cart + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary-table.tpl:31 + + + %products_count% items in your cart + %products_count% items in your cart + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary-table.tpl:33 + + + + + + + Please check your order before payment + Please check your order before payment + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:28 + + + Addresses + Addresses + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:35 + + + Your Delivery Address + Your Delivery Address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:44 + + + Shipping Method + Shipping Method + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:62 + + + + + + + Your Invoice Address + Your Invoice Address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:85 + + + Shipping Address + Shipping Address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:36 + + + The selected address will be used both as your personal address (for invoice) and as your delivery address. + The selected address will be used both as your personal address (for invoice) and as your delivery address. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:41 + + + The selected address will be used as your personal address (for invoice). + The selected address will be used as your personal address (for invoice). + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:45 + + + Billing address differs from shipping address + Billing address differs from shipping address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:76 + + + + + + + No payment needed for this order + No payment needed for this order + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:8 + + + Selected + Selected + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:31 + + + Unfortunately, there are no payment method available. + Unfortunately, there are no payment method available. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:75 + + + By confirming the order, you certify that you have read and agree with all of the conditions below: + By confirming the order, you certify that you have read and agree with all of the conditions below: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:85 + + + Order with an obligation to pay + Order with an obligation to pay + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:141 + + + Please make sure you've chosen a [1]payment method[/1] and accepted the [2]terms and conditions[/2]. + Please make sure you've chosen a [1]payment method[/1] and accepted the [2]terms and conditions[/2]. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:126 + + + + + + + If you sign out now, your cart will be emptied. + If you sign out now, your cart will be emptied. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:30 + + + Order as a guest + Order as a guest + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:46 + + + + + + + If you would like to add a comment about your order, please write it in the field below. + If you would like to add a comment about your order, please write it in the field below. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:83 + + + I would like to receive my order in recycled packaging. + I would like to receive my order in recycled packaging. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:91 + + + If you'd like, you can add a note to the gift: + If you'd like, you can add a note to the gift: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:103 + + + Unfortunately, there are no carriers available for your delivery address. + Unfortunately, there are no carriers available for your delivery address. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:115 + + + + + + + Code + Code + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:64 + + + Description + Description + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:68 + + + Value + Value + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:76 + + + Minimum + Minimum + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:80 + + + Cumulative + Cumulative + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:84 + + + Expiration date + Expiration date + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:88 + + + + + + + Quantity + Quantity + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:40 + + + + + + + Order reference + Order reference + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:38 + + + Date + Date + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:39 + + + Total price + Total price + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:40 + + + Payment + Payment + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:41 + + + Status + Status + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:42 + + + Invoice + Invoice + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:43 + + + + + + + Carrier + Carrier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:191 + + + Payment method + Payment method + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:57 + + + Delivery address %alias% + Delivery address %alias% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:132 + + + Invoice address %alias% + Invoice address %alias% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:140 + + + Weight + Weight + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:194 + + + Shipping cost + Shipping cost + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:197 + + + Tracking number + Tracking number + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:200 + + + + diff --git a/themes/at_movic/translations/en-US/ShopThemeCustomeraccount.en-US.xlf b/themes/at_movic/translations/en-US/ShopThemeCustomeraccount.en-US.xlf new file mode 100644 index 00000000..a6dada09 --- /dev/null +++ b/themes/at_movic/translations/en-US/ShopThemeCustomeraccount.en-US.xlf @@ -0,0 +1,561 @@ + + + + + + View my customer account + View my customer account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:36 + + + Log in to your customer account + Log in to your customer account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:58 + + + + + + + Checkout + Checkout + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:113 + + + + + + + Account + Account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customeraccountlinks\ps_customeraccountlinks.tpl:33 + + + + + + + Connected as [1]%firstname% %lastname%[/1]. + Connected as [1]%firstname% %lastname%[/1]. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:11 + + + Not you? [1]Log out[/1] + Not you? [1]Log out[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:24 + + + + + + + Create an account + Create an account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:28 + + + Already have an account? + Already have an account? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:35 + + + Log in instead! + Log in instead! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:35 + + + + + + + Update your address + Update your address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\address.tpl:29 + + + New address + New address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\address.tpl:31 + + + + + + + Your addresses + Your addresses + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\addresses.tpl:28 + + + + + + + Log in to your account + Log in to your account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\authentication.tpl:28 + + + No account? Create one here + No account? Create one here + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\authentication.tpl:42 + + + + + + + Your vouchers + Your vouchers + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:28 + + + + + + + Guest Order Tracking + Guest Order Tracking + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:28 + + + To track your order, please enter the following information: + To track your order, please enter the following information: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:34 + + + For example: QIIXJXNUI or QIIXJXNUI#1 + For example: QIIXJXNUI or QIIXJXNUI#1 + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:52 + + + + + + + Guest Tracking + Guest Tracking + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:28 + + + Transform your guest account into a customer account and enjoy: + Transform your guest account into a customer account and enjoy: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:42 + + + Personalized and secure access + Personalized and secure access + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:44 + + + Fast and easy checkout + Fast and easy checkout + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:45 + + + Easier merchandise return + Easier merchandise return + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:46 + + + + + + + Order history + Order history + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:28 + + + Here are the orders you've placed since your account was created. + Here are the orders you've placed since your account was created. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:32 + + + Details + Details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:101 + + + + + + + Your personal information + Your personal information + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\identity.tpl:28 + + + + + + + Your account + Your account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:28 + + + Information + Information + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:38 + + + Addresses + Addresses + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:46 + + + Add first address + Add first address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:53 + + + Order history and details + Order history and details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:62 + + + Vouchers + Vouchers + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:80 + + + + + + + Credit slips + Credit slips + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:28 + + + Order + Order + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:61 + + + Date issued + Date issued + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:69 + + + Credit slips you have received after canceled orders. + Credit slips you have received after canceled orders. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:32 + + + Credit slip + Credit slip + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:65 + + + View credit slip + View credit slip + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:73 + + + + + + + Merchandise returns + Merchandise returns + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:28 + + + Here is a list of pending merchandise returns + Here is a list of pending merchandise returns + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:35 + + + Return + Return + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:74 + + + Package status + Package status + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:78 + + + Returns form + Returns form + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:87 + + + + + + + Order details + Order details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:28 + + + Order Reference %reference% - placed on %date% + Order Reference %reference% - placed on %date% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:38 + + + Download your invoice as a PDF file. + Download your invoice as a PDF file. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:62 + + + You have given permission to receive your order in recycled packaging. + You have given permission to receive your order in recycled packaging. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:69 + + + You have requested gift wrapping for this order. + You have requested gift wrapping for this order. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:74 + + + Message + Message + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:75 + + + Follow your order's status step-by-step + Follow your order's status step-by-step + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:84 + + + Click the following link to track the delivery of your order + Click the following link to track the delivery of your order + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:122 + + + + + + + Return details + Return details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:4 + + + %number% on %date% + %number% on %date% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:12 + + + We have logged your return request. + We have logged your return request. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:18 + + + Your package must be returned to us within %number% days of receiving your order. + Your package must be returned to us within %number% days of receiving your order. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:19 + + + The current status of your merchandise return is: [1] %status% [/1] + The current status of your merchandise return is: [1] %status% [/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:25 + + + List of items to be returned: + List of items to be returned: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:35 + + + Reminder + Reminder + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:112 + + + All merchandise must be returned in its original packaging and in its original state. + All merchandise must be returned in its original packaging and in its original state. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:114 + + + Please print out the [1]returns form[/1] and include it with your package. + Please print out the [1]returns form[/1] and include it with your package. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:119 + + + Please check the [1]returns form[/1] for the correct address. + Please check the [1]returns form[/1] for the correct address. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:129 + + + When we receive your package, we will notify you by email. We will then begin processing order reimbursement. + When we receive your package, we will notify you by email. We will then begin processing order reimbursement. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:139 + + + Please let us know if you have any questions. + Please let us know if you have any questions. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:144 + + + If the conditions of return listed above are not respected, we reserve the right to refuse your package and/or reimbursement. + If the conditions of return listed above are not respected, we reserve the right to refuse your package and/or reimbursement. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:149 + + + + + + + Forgot your password? + Forgot your password? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\login-form.tpl:43 + + + + + + + Please enter the email address you used to register. You will receive a temporary link to reset your password. + Please enter the email address you used to register. You will receive a temporary link to reset your password. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:48 + + + + + + + Reset your password + Reset your password + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:28 + + + Email address: %email% + Email address: %email% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:37 + + + + + + + Back to your account + Back to your account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\my-account-links.tpl:28 + + + + + + + Returned + Returned + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:205 + + + Merchandise return + Merchandise return + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:236 + + + If you wish to return one or more products, please mark the corresponding boxes and provide an explanation for the return. When complete, click the button below. + If you wish to return one or more products, please mark the corresponding boxes and provide an explanation for the return. When complete, click the button below. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:237 + + + Request a return + Request a return + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:247 + + + + + + + Messages + Messages + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:28 + + + Add a message + Add a message + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:49 + + + If you would like to add a comment about your order, please write it in the field below. + If you would like to add a comment about your order, please write it in the field below. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:50 + + + + diff --git a/themes/at_movic/translations/en-US/ShopThemeGlobal.en-US.xlf b/themes/at_movic/translations/en-US/ShopThemeGlobal.en-US.xlf new file mode 100644 index 00000000..8f58c161 --- /dev/null +++ b/themes/at_movic/translations/en-US/ShopThemeGlobal.en-US.xlf @@ -0,0 +1,761 @@ + + + + + + Panel Tool + Panel Tool + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:15 + + + Layout Mod + Layout Mod + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:19 + + + Theme + Theme + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:32 + + + Default + Default + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:35 + + + Float Header + Float Header + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:51 + + + Yes + Yes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:55 + + + No + No + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:58 + + + Live Theme Editor + Live Theme Editor + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:82 + + + Those Images in folder YOURTHEME/assets/img/patterns/ + Those Images in folder YOURTHEME/assets/img/patterns/ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:113 + + + Attachment + Attachment + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:121 + + + Not set + Not set + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:141 + + + Position + Position + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:130 + + + Repeat + Repeat + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:139 + + + Inherit + Inherit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:153 + + + + + + + Quick view + Quick view + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\profiles\plist1499676422.tpl:83 + + + + + + + Read more + Read more + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:79 + + + In + In + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:32 + + + On + On + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:39 + + + Hit + Hit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:62 + + + Sunday + Sunday + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:87 + + + Monday + Monday + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:88 + + + Tuesday + Tuesday + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:89 + + + Wednesday + Wednesday + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:90 + + + Thursday + Thursday + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:91 + + + Friday + Friday + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:92 + + + Saturday + Saturday + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:93 + + + January + January + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:95 + + + February + February + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:96 + + + March + March + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:97 + + + April + April + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:98 + + + May + May + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:99 + + + June + June + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:100 + + + July + July + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:101 + + + August + August + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:102 + + + September + September + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:103 + + + October + October + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:104 + + + November + November + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:105 + + + December + December + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:106 + + + + + + + View all + View all + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\appagebuilder\views\templates\hook\cate-image\ApCategoryImage.tpl:68 + + + + + + + Setting + Setting + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:17 + + + Language: + Language: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:22 + + + Currency: + Currency: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:34 + + + My account + My account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:84 + + + + + + + Hello + Hello + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:40 + + + Wishlist + Wishlist + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:74 + + + Compare + Compare + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:86 + + + Account + Account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:28 + + + + + + + Contact us + Contact us + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\nav.tpl:39 + + + + + + + Sorry, We are updating data, please come back later!!!! + Sorry, We are updating data, please come back later!!!! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:116 + + + Childrens + Childrens + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:50 + + + Recent blog posts + Recent blog posts + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:68 + + + + + + + Posted By + Posted By + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:24 + + + Comment + Comment + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:67 + + + Comments + Comments + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:14 + + + Created On + Created On + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:23 + + + Comment Link + Comment Link + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:27 + + + Leave your comment + Leave your comment + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:45 + + + Full Name + Full Name + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:49 + + + Enter your full name + Enter your full name + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:52 + + + Email + Email + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:58 + + + Enter your email + Enter your email + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:61 + + + Enter your comment + Enter your comment + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:70 + + + Captcha + Captcha + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:76 + + + Submit + Submit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:86 + + + + + + + Tags: + Tags: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:100 + + + In Same Category + In Same Category + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:113 + + + Related by Tags + Related by Tags + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:121 + + + Sorry, This blog is not avariable. May be this was unpublished or deleted. + Sorry, This blog is not avariable. May be this was unpublished or deleted. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:152 + + + + + + + Add to cart + Add to cart + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leofeature\views\templates\hook\leo_cart_button.tpl:38 + + + + + + + Related products + Related products + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:27 + + + + + + + Call us: [1]%phone%[/1] + Call us: [1]%phone%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:43 + + + Store information + Store information + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:29 + + + Fax: [1]%fax%[/1] + Fax: [1]%fax%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:57 + + + Email us: [1]%email%[/1] + Email us: [1]%email%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:72 + + + + + + + Call us: + Call us: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:37 + + + Fax: + Fax: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:47 + + + Email us: + Email us: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:57 + + + + + + + Currency + Currency + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_currencyselector\ps_currencyselector.tpl:27 + + + Currency dropdown + Currency dropdown + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_currencyselector\ps_currencyselector.tpl:27 + + + + + + + join our newsletter + join our newsletter + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:27 + + + + + + + Carousel buttons + Carousel buttons + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:45 + + + Previous + Previous + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:50 + + + Next + Next + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:56 + + + + + + + Language + Language + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_languageselector\ps_languageselector.tpl:27 + + + Language dropdown + Language dropdown + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_languageselector\ps_languageselector.tpl:27 + + + + + + + logo + logo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\profiles\id_gencode_597719e66686a_1500977638.tpl:1 + + + + + + + Active filters + Active filters + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\active_filters.tpl:27 + + + + + + + (no filter) + (no filter) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:132 + + + + + + + Grid + Grid + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:30 + + + List + List + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:31 + + + + + + + Sort by: + Sort by: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\sort-orders.tpl:25 + + + + + + + Close + Close + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:151 + + + + + + + List of sub categories in %name%: + List of sub categories in %name%: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\category.tpl:34 + + + List of pages in %name%: + List of pages in %name%: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\category.tpl:45 + + + + + + + Sitemap + Sitemap + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\sitemap.tpl:28 + + + + + + + Our stores + Our stores + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\stores.tpl:28 + + + About and Contact + About and Contact + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\stores.tpl:44 + + + + + + + Date + Date + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:188 + + + Status + Status + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:89 + + + + + + + Home + Home + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\my-account-links.tpl:32 + + + + + + + We'll be back soon. + We'll be back soon. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\maintenance.tpl:42 + + + + + + + Sorry for the inconvenience. + Sorry for the inconvenience. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\not-found.tpl:28 + + + Search again what you are looking for + Search again what you are looking for + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\not-found.tpl:29 + + + + + + + 403 Forbidden + 403 Forbidden + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\restricted-country.tpl:43 + + + You cannot access this store from your country. We apologize for the inconvenience. + You cannot access this store from your country. We apologize for the inconvenience. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\restricted-country.tpl:44 + + + + diff --git a/themes/at_movic/translations/es-ES/ShopFormsHelp.es-ES.xlf b/themes/at_movic/translations/es-ES/ShopFormsHelp.es-ES.xlf new file mode 100644 index 00000000..efa6488b --- /dev/null +++ b/themes/at_movic/translations/es-ES/ShopFormsHelp.es-ES.xlf @@ -0,0 +1,65 @@ + + + + + + your@email.com + your@email.com + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:66 + + + Select reference + Seleccionar referencia + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:76 + + + optional + opcional + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:95 + + + How can we help? + ¿Cómo podemos ayudar? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:106 + + + + + + + Don't forget to save your customization to be able to add to cart + No olvide guardar su personalización para poder añadir al carrito + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:29 + + + Your message here + Su mensaje aquí + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:38 + + + 250 char. max + 250 caracteres. Máximo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:39 + + + No selected file + Ningún archivo seleccionado + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:52 + + + .png .jpg .gif + .png .jpg .gif + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:56 + + + + diff --git a/themes/at_movic/translations/es-ES/ShopFormsLabels.es-ES.xlf b/themes/at_movic/translations/es-ES/ShopFormsLabels.es-ES.xlf new file mode 100644 index 00000000..5573150f --- /dev/null +++ b/themes/at_movic/translations/es-ES/ShopFormsLabels.es-ES.xlf @@ -0,0 +1,137 @@ + + + + + + Subject + Tema + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:48 + + + Order reference + Pedir Referencia + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:73 + + + Attachment + Adjunto archivo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:90 + + + Message + Mensaje + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:101 + + + + + + + Email address + Dirección de correo electrónico + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:53 + + + + + + + Your email... + Tu correo electrónico... + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:56 + + + + + + + Order Reference: + Pedir Referencia: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:41 + + + Email: + Email: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:59 + + + + + + + Set your password: + establece tu contraseña: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:53 + + + + + + + New password + Nueva contraseña + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:45 + + + Confirmation + Confirmación + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:52 + + + + + + + Product + Producto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:56 + + + + + + + -- please choose -- + - Por favor seleccione - + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:60 + + + -- day -- + - día - + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:122 + + + -- month -- + - mes - + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:123 + + + -- year -- + -- año -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:124 + + + Optional + Opcional + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:186 + + + + diff --git a/themes/at_movic/translations/es-ES/ShopThemeActions.es-ES.xlf b/themes/at_movic/translations/es-ES/ShopThemeActions.es-ES.xlf new file mode 100644 index 00000000..a9cf6004 --- /dev/null +++ b/themes/at_movic/translations/es-ES/ShopThemeActions.es-ES.xlf @@ -0,0 +1,449 @@ + + + + + + Clear + Claro + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:177 + + + + + + + Quick view + Vista rápida + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:58 + + + + + + + Sign out + Desconectar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:107 + + + + + + + Sign in + Registrarse + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\login-form.tpl:53 + + + + + + + Checkout + Revisa + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart-empty.tpl:39 + + + + + + + Choose file + Elija el archivo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\javascript.tpl:43 + + + Do not show this popup again + No mostrar este popup de nuevo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\javascript.tpl:44 + + + + + + + Send + Enviar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:79 + + + + + + + Subscribe + Suscribir + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:48 + + + + + + + OK + De acuerdo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_facetedsearch\ps_facetedsearch.tpl:31 + + + + + + + Continue shopping + Seguir comprando + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart.tpl:48 + + + + + + + proceed to checkout + Pasar por la caja + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:67 + + + + + + + remove from cart + Eliminar de la cesta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart-product-line.tpl:42 + + + Remove + Retirar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart-product-line.tpl:42 + + + + + + + Refresh + Refrescar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\quickview.tpl:67 + + + + + + + Filter By + Filtrado por + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:28 + + + Clear all + Limpiar todo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:35 + + + + + + + View products + Ver productos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\brand.tpl:34 + + + + + + + Quantity + Cantidad + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:39 + + + Add to cart + Añadir a la cesta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:54 + + + + + + + Remove Image + Quita la imagen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:49 + + + Save Customization + Guardar personalización + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:62 + + + + + + + Filter + Filtrar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:49 + + + + + + + Back to top + Volver arriba + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products.tpl:38 + + + + + + + Select + Seleccionar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\sort-orders.tpl:33 + + + + + + + Save + Salvar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\customer-form.tpl:47 + + + + + + + Cancel + Cancelar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\address-form.tpl:42 + + + + + + + Continue + Continuar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:111 + + + + + + + Edit + Editar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\checkout-step.tpl:39 + + + + + + + Delete + Borrar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\block-address.tpl:40 + + + Update + Actualizar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\block-address.tpl:36 + + + + + + + show details + mostrar detalles + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-summary.tpl:38 + + + + + + + Add + Añadir + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:57 + + + Take advantage of our exclusive offers: + Aprovecha nuestras ofertas exclusivas: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:70 + + + + + + + edit + editar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:63 + + + + + + + add new address + agregar nueva dirección + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:108 + + + + + + + Choose + Escoger + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:34 + + + + + + + Create new address + Crear nueva dirección + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\addresses.tpl:45 + + + + + + + Reorder + reordenar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:47 + + + + + + + Print out + Imprimir + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:88 + + + + + + + Send reset link + Enviar enlace de restablecimiento + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:59 + + + Back to login + Atrás para iniciar sesión + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:71 + + + + + + + Back to Login + Atrás para iniciar sesión + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:77 + + + Change Password + Cambia la contraseña + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:65 + + + + + + + Download + Descargar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:68 + + + + + + + Show + Espectáculo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:150 + + + Hide + Esconder + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:148 + + + + + + + Previous + Anterior + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:46 + + + Next + Siguiente + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:48 + + + + diff --git a/themes/at_movic/translations/es-ES/ShopThemeCatalog.es-ES.xlf b/themes/at_movic/translations/es-ES/ShopThemeCatalog.es-ES.xlf new file mode 100644 index 00000000..d40336be --- /dev/null +++ b/themes/at_movic/translations/es-ES/ShopThemeCatalog.es-ES.xlf @@ -0,0 +1,499 @@ + + + + + + item(s) + artículos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\appagebuilder\views\templates\hook\cate-image\ApCategoryImage.tpl:42 + + + + + + + Best Sellers + Top Ventas + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_bestsellers\views\templates\hook\ps_bestsellers.tpl:27 + + + All best sellers + Los productos más vendidos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_bestsellers\views\templates\hook\ps_bestsellers.tpl:34 + + + + + + + Brands + marcas + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\brands.tpl:31 + + + + + + + No brand + Sin marca + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_brandlist\views\templates\hook\ps_brandlist.tpl:37 + + + + + + + All brands + Todas las marcas + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_brandlist\views\templates\_partials\brand_form.tpl:28 + + + + + + + %s other product in the same category: + %s otro producto en la misma categoría: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:31 + + + %s other products in the same category: + %s otros productos de la misma categoría: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:33 + + + + + + + Customers who bought this product also bought: + Los clientes que compraron este producto también han comprado: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_crossselling\views\templates\hook\ps_crossselling.tpl:27 + + + + + + + My alerts + Mis alertas + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailalerts\views\templates\hook\my-account.tpl:30 + + + + + + + Popular Products + Productos populares + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_featuredproducts\views\templates\hook\ps_featuredproducts.tpl:27 + + + All products + Todos los productos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_featuredproducts\views\templates\hook\ps_featuredproducts.tpl:34 + + + + + + + New products + Nuevos productos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_newproducts\views\templates\hook\ps_newproducts.tpl:28 + + + All new products + Todos los productos nuevos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_newproducts\views\templates\hook\ps_newproducts.tpl:35 + + + + + + + 1 person is currently watching this product. + 1 persona está viendo en ese momento este producto. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:29 + + + %nb_people% people are currently watching this product. + %nb_people% les gens regardent actuellement ce produit. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:31 + + + Last time this product was bought: %date_last_order% + La dernière fois que ce produit a été acheté: %date_last_order% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:37 + + + Last time this product was added to a cart: %date_last_cart% + La dernière fois que ce produit a été ajouté à un panier: %date_last_cart% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:41 + + + + + + + No RSS feed added + No se han añadido fuentes RSS + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_rssfeed\views\templates\hook\ps_rssfeed.tpl:36 + + + + + + + Search + Buscar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_searchbar\ps_searchbar.tpl:32 + + + + + + + On sale + En venta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_specials\views\templates\hook\ps_specials.tpl:27 + + + All sale products + Todos los productos de venta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_specials\views\templates\hook\ps_specials.tpl:33 + + + + + + + Suppliers + Proveedores + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\suppliers.tpl:28 + + + + + + + No supplier + No hay proveedores + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_supplierlist\views\templates\hook\ps_supplierlist.tpl:37 + + + + + + + All suppliers + Todos los proveedores + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_supplierlist\views\templates\_partials\supplier_form.tpl:28 + + + + + + + Viewed products + Productos vistos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_viewedproduct\views\template\hook\ps_viewedproduct.tpl:28 + + + + + + + List of products by brand %brand_name% + Liste de produits par marqu %brand_name% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\listing\manufacturer.tpl:28 + + + + + + + List of products by supplier %s + Liste des produits par fournisseur %s + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\listing\supplier.tpl:28 + + + + + + + This pack contains + Este paquete contiene + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\product.tpl:112 + + + You might also like + También podría gustarte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\product.tpl:156 + + + + + + + %1$s: + %1$s: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\active_filters.tpl:35 + + + + + + + Regular price + Precio regular + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:85 + + + Price + Precio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:94 + + + + + + + Quantity + Cantidad + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:199 + + + Product customization + Personalización del producto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:180 + + + Product + Producto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:33 + + + Unit price + Precio unitario + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:36 + + + Total price + Precio total + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:37 + + + + + + + Your customization: + Su personalización: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:41 + + + + + + + Brand + Marca + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:19 + + + Reference + Referencia + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:28 + + + In stock + En stock + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:36 + + + Availability date: + Fecha disponible: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:44 + + + Data sheet + Ficha de datos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:57 + + + Specific References + Las referencias específicas + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:71 + + + Condition + Condición + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:84 + + + + + + + Volume discounts + Los descuentos por volumen + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:27 + + + You Save + Ahorras + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:34 + + + Up to %discount% + Jusqu'à %discount% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:42 + + + + + + + Save %percentage% + Enregistrer %percentage% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:51 + + + Save %amount% + Enregistrer %amount% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:54 + + + (%unit_price%) + (%unit_price%) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:62 + + + %price% tax excl. + %price% Hors taxes. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:70 + + + Instead of %price% + Au lieu de %price% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:76 + + + Including %amount% for ecotax + Comprenant %amount% pour l'écotaxe + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:82 + + + (not impacted by the discount) + (No incluido en el descuento) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:84 + + + + + + + There are %product_count% products. + Il y a %product_count% des produits. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:35 + + + There is 1 product. + Hay 1 producto. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:37 + + + + + + + Showing %from%-%to% of %total% item(s) + Affichage %from%-%to% de %total% article(s) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:28 + + + + + + + Description + Descripción + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:12 + + + Product Details + Detalles del producto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:22 + + + Attachments + Archivos adjuntos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:31 + + + + diff --git a/themes/at_movic/translations/es-ES/ShopThemeCheckout.es-ES.xlf b/themes/at_movic/translations/es-ES/ShopThemeCheckout.es-ES.xlf new file mode 100644 index 00000000..9b43681b --- /dev/null +++ b/themes/at_movic/translations/es-ES/ShopThemeCheckout.es-ES.xlf @@ -0,0 +1,513 @@ + + + + + + Product successfully added to your shopping cart + Producto añadido con éxito a tu cesta de la compra + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:32 + + + Quantity: + Cantidad: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:48 + + + There are %products_count% items in your cart. + Existen %products_count% objetos en tu carro de compras. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:55 + + + There is %product_count% item in your cart. + Ahi esta %product_count% en su carrito. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:57 + + + Total products: + Total productos: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:59 + + + Total shipping: + Envío total: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:60 + + + Total: + Total: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:64 + + + + + + + items + artículos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart.tpl:38 + + + item + ít + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart.tpl:47 + + + + + + + The minimum purchase order quantity for the product is %quantity%. + La cantidad mínima de pedido para el producto es %quantity%. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:79 + + + + + + + Shopping Cart + Carrito de compras + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart.tpl:38 + + + + + + + Your order is confirmed + Su pedido es confirmado + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:11 + + + An email has been sent to your mail address %email%. + Se ha enviado un correo electrónico a tu dirección de correo %email%. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:16 + + + You can also [1]download your invoice[/1] + Tú también puedes [1]download your invoice[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:23 + + + Order details + Detalles de la orden + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:58 + + + Order reference: %reference% + Pedir Referencia: %reference% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:60 + + + Payment method: %method% + Método de pago: %method% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:61 + + + Shipping method: %method% + Método de envío: %method% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:64 + + + Save time on your next order, sign up now + Ahorrar tiempo en su próximo pedido, crea ahora + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:94 + + + + + + + Use this address for invoice too + Utilice esta dirección para la factura demasiado + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\address-form.tpl:26 + + + + + + + Gift + Regalo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed-product-line.tpl:140 + + + + + + + There are no more items in your cart + No hay más artículos en el carrito + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed.tpl:39 + + + + + + + Have a promo code? + ¿Tienes un código de promoción? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:47 + + + Promo code + Código promocional + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:56 + + + + + + + Create an account + Crea una cuenta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:30 + + + (optional) + (Opcional) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:30 + + + And save time on your next order! + Y ahorrar tiempo en su próximo pedido! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:32 + + + + + + + Order items + Encargar artículos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-confirmation-table.tpl:28 + + + + + + + %product_count% item in your cart + %product_count% artículo en su carro + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary-table.tpl:31 + + + %products_count% items in your cart + %products_count% objetos en tu carro de compras + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary-table.tpl:33 + + + + + + + Please check your order before payment + Por favor, compruebe su pedido antes del pago + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:28 + + + Addresses + Direcciones + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:35 + + + Your Delivery Address + Tu dirección de entrega + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:44 + + + Shipping Method + Método de envío + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:62 + + + + + + + Your Invoice Address + Su factura Dirección + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:85 + + + Shipping Address + Dirección de Envío + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:36 + + + The selected address will be used both as your personal address (for invoice) and as your delivery address. + La dirección seleccionada se utilizará tanto como su dirección personal (por factura) y, como su dirección de entrega. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:41 + + + The selected address will be used as your personal address (for invoice). + La dirección seleccionada se utilizará como su dirección personal (por factura). + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:45 + + + Billing address differs from shipping address + La dirección de facturación es diferente de la dirección de envío + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:76 + + + + + + + No payment needed for this order + No se requiere pago por este pedido + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:8 + + + Selected + Seleccionado + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:31 + + + Unfortunately, there are no payment method available. + Desafortunadamente, no hay forma de pago disponible. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:75 + + + By confirming the order, you certify that you have read and agree with all of the conditions below: + Al confirmar el pedido, certifica que ha leído y acepta todas las condiciones siguientes: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:85 + + + Order with an obligation to pay + La orden con la obligación de pagar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:141 + + + Please make sure you've chosen a [1]payment method[/1] and accepted the [2]terms and conditions[/2]. + Asegúrese de haber elegido un [1]método de pago[/1] Y aceptó el [2]términos y condiciones[/2]. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:126 + + + + + + + If you sign out now, your cart will be emptied. + Si se desconecta ahora, el carrito se vaciará. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:30 + + + Order as a guest + Orden como invitado + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:46 + + + + + + + If you would like to add a comment about your order, please write it in the field below. + Si desea añadir un comentario sobre su pedido, escríbalo en el campo de abajo. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:83 + + + I would like to receive my order in recycled packaging. + Me gustaría recibir mi pedido en envases reciclados. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:91 + + + If you'd like, you can add a note to the gift: + Si desea, puede añadir una nota al don: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:103 + + + Unfortunately, there are no carriers available for your delivery address. + Por desgracia, no hay portadores disponibles para su dirección de entrega. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:115 + + + + + + + Code + Código + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:64 + + + Description + Descripción + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:68 + + + Value + Valor + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:76 + + + Minimum + Mínimo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:80 + + + Cumulative + Acumulativo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:84 + + + Expiration date + Fecha de caducidad + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:88 + + + + + + + Quantity + Cantidad + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:40 + + + + + + + Order reference + Pedir Referencia + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:38 + + + Date + Fecha + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:39 + + + Total price + Precio total + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:40 + + + Payment + Pago + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:41 + + + Status + Estado + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:42 + + + Invoice + Factura + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:43 + + + + + + + Carrier + Portador + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:191 + + + Payment method + Método de pago + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:57 + + + Delivery address %alias% + Dirección de entrega %alias% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:132 + + + Invoice address %alias% + Dirección de facturación %alias% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:140 + + + Weight + Peso + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:194 + + + Shipping cost + Costo de envío + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:197 + + + Tracking number + El número de rastreo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:200 + + + + diff --git a/themes/at_movic/translations/es-ES/ShopThemeCustomeraccount.es-ES.xlf b/themes/at_movic/translations/es-ES/ShopThemeCustomeraccount.es-ES.xlf new file mode 100644 index 00000000..57dad15b --- /dev/null +++ b/themes/at_movic/translations/es-ES/ShopThemeCustomeraccount.es-ES.xlf @@ -0,0 +1,561 @@ + + + + + + View my customer account + Ver mi cuenta de cliente + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:36 + + + Log in to your customer account + Acceda a su cuenta de cliente + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:58 + + + + + + + Checkout + Revisa + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:113 + + + + + + + Account + Cuenta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customeraccountlinks\ps_customeraccountlinks.tpl:33 + + + + + + + Connected as [1]%firstname% %lastname%[/1]. + Connecté comme [1]%firstname% %lastname%[/1]. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:11 + + + Not you? [1]Log out[/1] + Pas toi? [1]Se déconnecter[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:24 + + + + + + + Create an account + Crea una cuenta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:28 + + + Already have an account? + ¿Ya tienes una cuenta? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:35 + + + Log in instead! + Entrar en su lugar! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:35 + + + + + + + Update your address + Actualizar su dirección + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\address.tpl:29 + + + New address + Nueva direccion + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\address.tpl:31 + + + + + + + Your addresses + Sus direcciones + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\addresses.tpl:28 + + + + + + + Log in to your account + Ingrese a su cuenta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\authentication.tpl:28 + + + No account? Create one here + ¿No tienen en cuenta? Cree uno aquí + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\authentication.tpl:42 + + + + + + + Your vouchers + Sus vales + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:28 + + + + + + + Guest Order Tracking + Invitado Seguimiento de pedidos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:28 + + + To track your order, please enter the following information: + Para realizar un seguimiento de su pedido, por favor, introduzca la siguiente información: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:34 + + + For example: QIIXJXNUI or QIIXJXNUI#1 + Por ejemplo: QIIXJXNUI o QIIXJXNUI # 1 + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:52 + + + + + + + Guest Tracking + Seguimiento de pedido + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:28 + + + Transform your guest account into a customer account and enjoy: + Transformar su cuenta de invitado en una cuenta de cliente y disfrutar de: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:42 + + + Personalized and secure access + Acceso seguro y personalizado + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:44 + + + Fast and easy checkout + Salida rapida y facil + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:45 + + + Easier merchandise return + Devolución de mercancia más fácil + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:46 + + + + + + + Order history + Historial de pedidos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:28 + + + Here are the orders you've placed since your account was created. + Estos son los pedidos que haya hecho desde la creación de su cuenta. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:32 + + + Details + Detalles + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:101 + + + + + + + Your personal information + Tu información personal + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\identity.tpl:28 + + + + + + + Your account + Su cuenta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:28 + + + Information + Información + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:38 + + + Addresses + Direcciones + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:46 + + + Add first address + Añadir primera dirección + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:53 + + + Order history and details + Historial de pedidos y detalles + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:62 + + + Vouchers + Vales + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:80 + + + + + + + Credit slips + Recibos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:28 + + + Order + Orden + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:61 + + + Date issued + Fecha de la publicación + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:69 + + + Credit slips you have received after canceled orders. + Hojas de crédito que ha recibido pedidos después cancelados. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:32 + + + Credit slip + Deslizamiento de credito + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:65 + + + View credit slip + Ver deslizamiento de crédito + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:73 + + + + + + + Merchandise returns + Devoluciones de mercancía + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:28 + + + Here is a list of pending merchandise returns + Aquí hay una lista de espera de la devolución de mercancía + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:35 + + + Return + Regreso + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:74 + + + Package status + Estado del paquete + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:78 + + + Returns form + Formulario de devolución + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:87 + + + + + + + Order details + Detalles de la orden + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:28 + + + Order Reference %reference% - placed on %date% + Référence de l'achat %reference% - placé sur %date% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:38 + + + Download your invoice as a PDF file. + Descargue su factura en formato PDF. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:62 + + + You have given permission to receive your order in recycled packaging. + Usted ha dado permiso para recibir su pedido en envases reciclados. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:69 + + + You have requested gift wrapping for this order. + Ha solicitado el embalaje de regalo para este fin. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:74 + + + Message + Mensaje + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:75 + + + Follow your order's status step-by-step + Siga paso a paso, la situación de su pedido + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:84 + + + Click the following link to track the delivery of your order + Haga clic en el siguiente enlace para realizar un seguimiento de la entrega de su pedido + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:122 + + + + + + + Return details + Datos del regreso + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:4 + + + %number% on %date% + %number% sur %date% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:12 + + + We have logged your return request. + Hemos registrado su solicitud de devolución. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:18 + + + Your package must be returned to us within %number% days of receiving your order. + Votre colis doit nous être retourné dans %number% jours de réception de votre commande. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:19 + + + The current status of your merchandise return is: [1] %status% [/1] + L'état actuel de votre retour sur marchandises est: [1] %status% [/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:25 + + + List of items to be returned: + Lista de artículos que vaya a devolver: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:35 + + + Reminder + Recordatorio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:112 + + + All merchandise must be returned in its original packaging and in its original state. + Toda la mercancía debe ser devuelta en su embalaje original y en su estado original. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:114 + + + Please print out the [1]returns form[/1] and include it with your package. + Veuillez imprimer le [1]formulaire de retour[/1] et l'inclure avec votre colis. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:119 + + + Please check the [1]returns form[/1] for the correct address. + S'il vous plaît, vérifiez le [1]formulaire de retour[/1] pour l'adresse correcte. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:129 + + + When we receive your package, we will notify you by email. We will then begin processing order reimbursement. + Al recibir su paquete, se le notificará por correo electrónico. a continuación, vamos a comenzar a ordenar el reembolso de procesamiento. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:139 + + + Please let us know if you have any questions. + Por favor, háganos saber si usted tiene alguna pregunta. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:144 + + + If the conditions of return listed above are not respected, we reserve the right to refuse your package and/or reimbursement. + Si les conditions de retour énumérées ci-dessus ne sont pas respectées, nous nous réservons le droit de refuser votre colis et / ou le remboursement. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:149 + + + + + + + Forgot your password? + ¿Olvidaste tu contraseña? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\login-form.tpl:43 + + + + + + + Please enter the email address you used to register. You will receive a temporary link to reset your password. + Por favor, introduzca la dirección de correo electrónico que utilizó para registrarse. Recibirá un enlace temporal para restablecer su contraseña. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:48 + + + + + + + Reset your password + Restablecer su contraseña + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:28 + + + Email address: %email% + Adresse électronique: %email% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:37 + + + + + + + Back to your account + Volver a su cuenta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\my-account-links.tpl:28 + + + + + + + Returned + Devuelto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:205 + + + Merchandise return + Devolución de Mercancía + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:236 + + + If you wish to return one or more products, please mark the corresponding boxes and provide an explanation for the return. When complete, click the button below. + Si desea devolver uno o más productos, por favor marque la casilla correspondiente y proporcionar una explicación para el retorno. Cuando se haya completado, haga clic en el botón de abajo. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:237 + + + Request a return + Solicitar la devolución + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:247 + + + + + + + Messages + Mensajes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:28 + + + Add a message + Añade un mensaje + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:49 + + + If you would like to add a comment about your order, please write it in the field below. + Si desea añadir un comentario sobre su pedido, por favor escribirlo en el campo de abajo. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:50 + + + + diff --git a/themes/at_movic/translations/es-ES/ShopThemeGlobal.es-ES.xlf b/themes/at_movic/translations/es-ES/ShopThemeGlobal.es-ES.xlf new file mode 100644 index 00000000..6a5cd78c --- /dev/null +++ b/themes/at_movic/translations/es-ES/ShopThemeGlobal.es-ES.xlf @@ -0,0 +1,751 @@ + + + + + + Panel Tool + Herramienta Panel + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:15 + + + Layout Mod + Diseño de la MOD + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:19 + + + Theme + Tema + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:32 + + + Default + Defecto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:35 + + + Float Header + Flotar Cabecera + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:51 + + + Yes + + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:55 + + + No + No + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:58 + + + Live Theme Editor + Editor de temas en directo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:82 + + + Those Images in folder YOURTHEME/assets/img/patterns/ + Esas imágenes en la carpeta YOURTHEME/assets/img/patterns/ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:113 + + + Attachment + Adjunto archivo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:121 + + + Not set + No establecido + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:141 + + + Position + Posición + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:130 + + + Repeat + Repetir + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:139 + + + Inherit + Heredar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:153 + + + + + + + Quick view + Vista rápida + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\profiles\plist1499676422.tpl:83 + + + + + + + Read more + Lee mas + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:79 + + + In + En + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:32 + + + On + En + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:39 + + + Hit + Golpear + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:62 + + + Sunday + Domingo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:87 + + + Monday + Lunes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:88 + + + Tuesday + Martes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:89 + + + Wednesday + Miércoles + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:90 + + + Thursday + Jueves + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:91 + + + Friday + Viernes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:92 + + + Saturday + Sábado + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:93 + + + January + Enero + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:95 + + + February + Febrero + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:96 + + + March + Marzo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:97 + + + April + Abril + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:98 + + + May + Mayo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:99 + + + June + Junio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:100 + + + July + Julio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:101 + + + August + Agosto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:102 + + + September + Septiembre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:103 + + + October + Octubre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:104 + + + November + Noviembre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:105 + + + December + Diciembre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:106 + + + + + + + View all + Ver todo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\appagebuilder\views\templates\hook\cate-image\ApCategoryImage.tpl:68 + + + + + + + Setting + Ajuste + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:17 + + + Language: + Idioma: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:22 + + + Currency: + Moneda: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:34 + + + My account + Mi cuenta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:84 + + + + + + + Hello + Hola + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:40 + + + Wishlist + Lista de deseos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:74 + + + Compare + Comparar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:86 + + + Account + Cuenta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:28 + + + + + + + Contact us + Contáctenos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\nav.tpl:39 + + + + + + + Sorry, We are updating data, please come back later!!!! + Lo sentimos, estamos actualizando los datos, por favor vuelva más tarde !!!! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:116 + + + Childrens + Para niños + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:50 + + + Recent blog posts + Entradas recientes del blog + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:68 + + + + + + + Posted By + Publicado por + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:24 + + + Comment + Comentario + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:67 + + + Comments + Comentarios + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:14 + + + Created On + Creado en + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:23 + + + Comment Link + Enlace de comentario + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:27 + + + Leave your comment + Deje su comentario + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:45 + + + Full Name + Nombre completo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:49 + + + Enter your full name + Introduzca su nombre completo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:52 + + + Email + Email + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:58 + + + Enter your email + Introduce tu correo electrónico + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:61 + + + Enter your comment + Escribe tu comentario + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:70 + + + Captcha + Captcha + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:76 + + + Submit + Enviar + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:86 + + + + + + + Tags: + Etiquetas: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:100 + + + In Same Category + En la misma categoría + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:113 + + + Related by Tags + Relacionado por Etiquetas + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:121 + + + Sorry, This blog is not avariable. May be this was unpublished or deleted. + Lo sentimos, este blog no es avariable. Puede que esto no haya sido publicado o haya sido eliminado. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:152 + + + + + + + Related products + Añadir a la cesta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:27 + + + + + + + Call us: [1]%phone%[/1] + Llámenos: [1]%phone%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:43 + + + Store information + Almacenar información + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:29 + + + Fax: [1]%fax%[/1] + Faxear: [1]%fax%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:57 + + + Email us: [1]%email%[/1] + Envíanos: [1]%email%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:72 + + + + + + + Call us: + Llámenos: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:37 + + + Fax: + Fax: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:47 + + + Email us: + Envíanos un correo electrónico: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:57 + + + + + + + Currency + Moneda + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_currencyselector\ps_currencyselector.tpl:27 + + + Currency dropdown + Productos relacionados + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_currencyselector\ps_currencyselector.tpl:27 + + + + + + + join our newsletter + Suscríbase a nuestro boletín + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:27 + + + + + + + Carousel buttons + Botones del carrusel + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:45 + + + Previous + Anterior + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:50 + + + Next + Siguiente + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:56 + + + + + + + Language + Idioma + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_languageselector\ps_languageselector.tpl:27 + + + Language dropdown + Desplegable del idioma + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_languageselector\ps_languageselector.tpl:27 + + + + + + + logo + logo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\profiles\id_gencode_597719e66686a_1500977638.tpl:1 + + + + + + + Active filters + Filtros activos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\active_filters.tpl:27 + + + + + + + (no filter) + (sin filtro) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:132 + + + + + + + Grid + Cuadrícula + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:30 + + + List + Lista + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:31 + + + + + + + Sort by: + Ordenar por: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\sort-orders.tpl:25 + + + + + + + Close + Cerca + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:151 + + + + + + + List of sub categories in %name%: + Lista de subcategorías en %name%: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\category.tpl:34 + + + List of pages in %name%: + Lista de páginas en %name%: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\category.tpl:45 + + + + + + + Sitemap + Mapa del sitio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\sitemap.tpl:28 + + + + + + + Our stores + Nuestras Tiendas + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\stores.tpl:28 + + + About and Contact + Acerca de Contactos + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\stores.tpl:44 + + + + + + + Date + Fecha + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:188 + + + Status + Estado + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:89 + + + + + + + Home + Casa + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\my-account-links.tpl:32 + + + + + + + We'll be back soon. + Estaremos de vuelta pronto. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\maintenance.tpl:42 + + + + + + + Sorry for the inconvenience. + Lo siento por los inconvenientes ocasionados. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\not-found.tpl:28 + + + Search again what you are looking for + Buscar de nuevo lo que busca + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\not-found.tpl:29 + + + + + + + 403 Forbidden + 403 Prohibido + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\restricted-country.tpl:43 + + + You cannot access this store from your country. We apologize for the inconvenience. + No se puede acceder a esta tienda de su país. Nos disculpamos por el inconveniente. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\restricted-country.tpl:44 + + + + diff --git a/themes/at_movic/translations/fr-FR/ShopFormsHelp.fr-FR.xlf b/themes/at_movic/translations/fr-FR/ShopFormsHelp.fr-FR.xlf new file mode 100644 index 00000000..24b93b91 --- /dev/null +++ b/themes/at_movic/translations/fr-FR/ShopFormsHelp.fr-FR.xlf @@ -0,0 +1,65 @@ + + + + + + your@email.com + your@email.com + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:66 + + + Select reference + Sélectionnez la référence + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:76 + + + optional + optionnel + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:95 + + + How can we help? + Comment pouvons nous aider? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:106 + + + + + + + Don't forget to save your customization to be able to add to cart + N'oubliez pas d'enregistrer votre personnalisation pour pouvoir ajouter au panier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:29 + + + Your message here + Votre message ici + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:38 + + + 250 char. max + 250 ombles. max + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:39 + + + No selected file + Aucun fichier sélectionné + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:52 + + + .png .jpg .gif + .png .jpg .gif + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:56 + + + + diff --git a/themes/at_movic/translations/fr-FR/ShopFormsLabels.fr-FR.xlf b/themes/at_movic/translations/fr-FR/ShopFormsLabels.fr-FR.xlf new file mode 100644 index 00000000..4ede6a83 --- /dev/null +++ b/themes/at_movic/translations/fr-FR/ShopFormsLabels.fr-FR.xlf @@ -0,0 +1,137 @@ + + + + + + Subject + Assujettir + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:48 + + + Order reference + Référence de l'achat + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:73 + + + Attachment + Pièce jointe + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:90 + + + Message + Message + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:101 + + + + + + + Email address + Adresse e-mail + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:53 + + + + + + + Your email... + Votre email... + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:56 + + + + + + + Order Reference: + Référence de l'achat: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:41 + + + Email: + Email: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:59 + + + + + + + Set your password: + Définir votre mot de passe: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:53 + + + + + + + New password + Nouveau mot de passe + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:45 + + + Confirmation + Confirmation + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:52 + + + + + + + Product + Produit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:56 + + + + + + + -- please choose -- + -- Choisissez s'il vous plaît -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:60 + + + -- day -- + -- journée -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:122 + + + -- month -- + -- mois -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:123 + + + -- year -- + -- année -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:124 + + + Optional + Optionnel + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:186 + + + + diff --git a/themes/at_movic/translations/fr-FR/ShopThemeActions.fr-FR.xlf b/themes/at_movic/translations/fr-FR/ShopThemeActions.fr-FR.xlf new file mode 100644 index 00000000..83b5689d --- /dev/null +++ b/themes/at_movic/translations/fr-FR/ShopThemeActions.fr-FR.xlf @@ -0,0 +1,449 @@ + + + + + + Clear + Clair + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:177 + + + + + + + Quick view + Aperçu rapide + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:58 + + + + + + + Sign out + Déconnexion + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:107 + + + + + + + Sign in + Se connecter + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\login-form.tpl:53 + + + + + + + Checkout + Check-out + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed-actions.tpl:40 + + + + + + + Choose file + Choisir le fichier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\javascript.tpl:43 + + + Do not show this popup again + Ne pas afficher ce popup à nouveau + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\javascript.tpl:44 + + + + + + + Send + Envoyer + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:79 + + + + + + + Subscribe + Souscrire + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:48 + + + + + + + OK + OK + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_facetedsearch\ps_facetedsearch.tpl:31 + + + + + + + Continue shopping + Continuer vos achats + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart.tpl:48 + + + + + + + proceed to checkout + Passer à la caisse + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:67 + + + + + + + remove from cart + retirer du chariot + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart-product-line.tpl:42 + + + Remove + Retirer + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart-product-line.tpl:42 + + + + + + + Refresh + Rafraîchir + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\quickview.tpl:67 + + + + + + + Filter By + Filtrer par + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:28 + + + Clear all + Tout effacer + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:35 + + + + + + + View products + Voir les produits + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\brand.tpl:34 + + + + + + + Quantity + Quantité + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:39 + + + Add to cart + Ajouter au panier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:53 + + + + + + + Remove Image + Supprimer l'image + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:49 + + + Save Customization + Enregistrer la personnalisation + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:62 + + + + + + + Filter + Filtre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:49 + + + + + + + Back to top + Retour au sommet + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products.tpl:38 + + + + + + + Select + Sélectionner + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\sort-orders.tpl:33 + + + + + + + Save + Sauvegarder + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\customer-form.tpl:47 + + + + + + + Cancel + Annuler + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\address-form.tpl:42 + + + + + + + Continue + Continuer + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:111 + + + + + + + Edit + Modifier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\checkout-step.tpl:39 + + + + + + + Delete + Effacer + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\block-address.tpl:40 + + + Update + Mettre à jour + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\block-address.tpl:36 + + + + + + + show details + afficher les détails + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-summary.tpl:38 + + + + + + + Add + Ajouter + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:57 + + + Take advantage of our exclusive offers: + Profitez de nos offres exclusives: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:70 + + + + + + + edit + modifier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:63 + + + + + + + add new address + Ajouter une nouvelle adresse + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:108 + + + + + + + Choose + Choisir + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:34 + + + + + + + Create new address + Créer une nouvelle adresse + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\addresses.tpl:45 + + + + + + + Reorder + Réorganiser + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:47 + + + + + + + Print out + Imprimer + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:88 + + + + + + + Send reset link + Envoyer le lien de remise à zéro + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:59 + + + Back to login + Retour connexion + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:71 + + + + + + + Back to Login + Retour connexion + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:77 + + + Change Password + Changer le mot de passe + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:65 + + + + + + + Download + Télécharger + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:68 + + + + + + + Show + Montrer + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:150 + + + Hide + Cacher + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:148 + + + + + + + Previous + Précédent + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:46 + + + Next + Suivant + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:48 + + + + diff --git a/themes/at_movic/translations/fr-FR/ShopThemeCatalog.fr-FR.xlf b/themes/at_movic/translations/fr-FR/ShopThemeCatalog.fr-FR.xlf new file mode 100644 index 00000000..735de54d --- /dev/null +++ b/themes/at_movic/translations/fr-FR/ShopThemeCatalog.fr-FR.xlf @@ -0,0 +1,499 @@ + + + + + + item(s) + articles + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\appagebuilder\views\templates\hook\cate-image\ApCategoryImage.tpl:42 + + + + + + + Best Sellers + Meilleures ventes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_bestsellers\views\templates\hook\ps_bestsellers.tpl:27 + + + All best sellers + Toutes les meilleures ventes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_bestsellers\views\templates\hook\ps_bestsellers.tpl:34 + + + + + + + Brands + Marques + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\brands.tpl:31 + + + + + + + No brand + Sans marque + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_brandlist\views\templates\hook\ps_brandlist.tpl:37 + + + + + + + All brands + Toutes les marques + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_brandlist\views\templates\_partials\brand_form.tpl:28 + + + + + + + %s other product in the same category: + %s autre produit dans la même catégorie: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:31 + + + %s other products in the same category: + %s autres produits de la même catégorie: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:33 + + + + + + + Customers who bought this product also bought: + Les clients qui ont acheté ce produit ont également acheté: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_crossselling\views\templates\hook\ps_crossselling.tpl:27 + + + + + + + My alerts + Mes alertes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailalerts\views\templates\hook\my-account.tpl:30 + + + + + + + Popular Products + Produits populaires + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_featuredproducts\views\templates\hook\ps_featuredproducts.tpl:27 + + + All products + Tous les produits + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_featuredproducts\views\templates\hook\ps_featuredproducts.tpl:34 + + + + + + + New products + Nouveaux produits + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_newproducts\views\templates\hook\ps_newproducts.tpl:28 + + + All new products + Tous les nouveaux produits + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_newproducts\views\templates\hook\ps_newproducts.tpl:35 + + + + + + + 1 person is currently watching this product. + 1 personne regarde actuellement ce produit. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:29 + + + %nb_people% people are currently watching this product. + %nb_people% les gens regardent actuellement ce produit. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:31 + + + Last time this product was bought: %date_last_order% + La dernière fois que ce produit a été acheté: %date_last_order% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:37 + + + Last time this product was added to a cart: %date_last_cart% + La dernière fois que ce produit a été ajouté à un panier: %date_last_cart% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:41 + + + + + + + No RSS feed added + Aucun flux RSS ajouté + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_rssfeed\views\templates\hook\ps_rssfeed.tpl:36 + + + + + + + Search + Chercher + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_searchbar\ps_searchbar.tpl:32 + + + + + + + On sale + En soldes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_specials\views\templates\hook\ps_specials.tpl:27 + + + All sale products + Tous les produits de vente + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_specials\views\templates\hook\ps_specials.tpl:33 + + + + + + + Suppliers + Fournisseurs + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\suppliers.tpl:28 + + + + + + + No supplier + Aucun fournisseur + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_supplierlist\views\templates\hook\ps_supplierlist.tpl:37 + + + + + + + All suppliers + Tous les fournisseurs + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_supplierlist\views\templates\_partials\supplier_form.tpl:28 + + + + + + + Viewed products + Produits vus + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_viewedproduct\views\template\hook\ps_viewedproduct.tpl:28 + + + + + + + List of products by brand %brand_name% + Liste des produits par marque %brand_name% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\listing\manufacturer.tpl:28 + + + + + + + List of products by supplier %s + Liste des produits par fournisseur %s + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\listing\supplier.tpl:28 + + + + + + + This pack contains + Ce pack contient + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\product.tpl:117 + + + You might also like + Vous pourriez aussi aimer + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\product.tpl:156 + + + + + + + %1$s: + %1$s: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\active_filters.tpl:35 + + + + + + + Regular price + Prix habituel + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:82 + + + Price + Prix + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:91 + + + + + + + Quantity + Quantité + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:199 + + + Product customization + Personnalisation de produit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:180 + + + Product + Produit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:33 + + + Unit price + Prix unitaire + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:36 + + + Total price + Prix total + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:37 + + + + + + + Your customization: + Votre personnalisation: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:41 + + + + + + + Brand + Marque + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:19 + + + Reference + Référence + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:28 + + + In stock + En stock + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:36 + + + Availability date: + Date de disponibilité: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:44 + + + Data sheet + Fiche technique + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:57 + + + Specific References + Références spécifiques + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:71 + + + Condition + Conditionner + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:84 + + + + + + + Volume discounts + Réductions de volume + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:27 + + + You Save + Vous sauvegardez + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:34 + + + Up to %discount% + Jusqu'à %discount% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:42 + + + + + + + Save %percentage% + Sauvegarder %percentage% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:51 + + + Save %amount% + Sauvegarder %amount% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:54 + + + (%unit_price%) + (%unit_price%) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:62 + + + %price% tax excl. + %price% hors taxes. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:70 + + + Instead of %price% + Au lieu de %price% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:76 + + + Including %amount% for ecotax + Comprenant %amount% pour l'écotaxe + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:82 + + + (not impacted by the discount) + (non compris dans la réduction) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:84 + + + + + + + There are %product_count% products. + Il y a %product_count% des produits. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:35 + + + There is 1 product. + Il y a 1 produit. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:37 + + + + + + + Showing %from%-%to% of %total% item(s) + Affichage %from%-%to% de %total% article(s) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:28 + + + + + + + Description + La description + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:12 + + + Product Details + Détails du produit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:22 + + + Attachments + Pièces jointes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:31 + + + + diff --git a/themes/at_movic/translations/fr-FR/ShopThemeCheckout.fr-FR.xlf b/themes/at_movic/translations/fr-FR/ShopThemeCheckout.fr-FR.xlf new file mode 100644 index 00000000..9fb679e2 --- /dev/null +++ b/themes/at_movic/translations/fr-FR/ShopThemeCheckout.fr-FR.xlf @@ -0,0 +1,513 @@ + + + + + + Product successfully added to your shopping cart + Produit ajouté avec succès à votre panier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:32 + + + Quantity: + Quantité: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:48 + + + There are %products_count% items in your cart. + Il y a %products_count% article dans votre panier. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:55 + + + There is %product_count% item in your cart. + Il y a %product_count% articles dans votre panier. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:57 + + + Total products: + Produits totaux: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:59 + + + Total shipping: + Expédition totale: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:60 + + + Total: + Total: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:64 + + + + + + + items + articles + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart.tpl:38 + + + item + article + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart.tpl:47 + + + + + + + The minimum purchase order quantity for the product is %quantity%. + La quantité minimale de commande d'achat pour le produit est %quantity%. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:77 + + + + + + + Shopping Cart + Panier d'achat + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart.tpl:38 + + + + + + + Your order is confirmed + Votre commande est confirmée + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:11 + + + An email has been sent to your mail address %email%. + Un courriel a été envoyé à votre adresse mail %email%. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:16 + + + You can also [1]download your invoice[/1] + Vous pouvez aussi [1]téléchargez votre facture[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:23 + + + Order details + Détails de la commande + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:58 + + + Order reference: %reference% + Référence de l'achat: %reference% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:60 + + + Payment method: %method% + Mode de paiement: %method% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:61 + + + Shipping method: %method% + Méthode d'envoi: %method% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:64 + + + Save time on your next order, sign up now + Gagnez du temps sur votre prochaine commande, inscrivez-vous maintenant + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:94 + + + + + + + Use this address for invoice too + Utilisez également cette adresse pour la facture + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\address-form.tpl:26 + + + + + + + Gift + Cadeau + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed-product-line.tpl:140 + + + + + + + There are no more items in your cart + Il n'y a plus d'articles dans votre panier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed.tpl:39 + + + + + + + Have a promo code? + Avez vous un code de réduction? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:47 + + + Promo code + Code promo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:56 + + + + + + + Create an account + Créer un compte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:30 + + + (optional) + (optionnel) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:30 + + + And save time on your next order! + Et économisez du temps sur votre prochaine commande! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:32 + + + + + + + Order items + Items commandés + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-confirmation-table.tpl:28 + + + + + + + %product_count% item in your cart + %product_count% article dans votre panier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary-table.tpl:31 + + + %products_count% items in your cart + %products_count% articles dans votre panier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary-table.tpl:33 + + + + + + + Please check your order before payment + Veuillez vérifier votre commande avant le paiement + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:28 + + + Addresses + Adresses + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:35 + + + Your Delivery Address + Votre adresse de livraison + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:44 + + + Shipping Method + Méthode d'envoi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:62 + + + + + + + Your Invoice Address + Votre adresse de facture + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:85 + + + Shipping Address + Adresse de livraison + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:36 + + + The selected address will be used both as your personal address (for invoice) and as your delivery address. + L'adresse sélectionnée sera utilisée à la fois comme adresse personnelle (pour facture) et comme adresse de livraison. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:41 + + + The selected address will be used as your personal address (for invoice). + L'adresse sélectionnée sera utilisée comme adresse personnelle (pour la facture). + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:45 + + + Billing address differs from shipping address + L'adresse de facturation diffère de l'adresse de livraison + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:76 + + + + + + + No payment needed for this order + Aucun paiement nécessaire pour cet ordre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:8 + + + Selected + Choisi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:31 + + + Unfortunately, there are no payment method available. + Malheureusement, il n'y a pas de méthode de paiement disponible. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:75 + + + By confirming the order, you certify that you have read and agree with all of the conditions below: + En confirmant la commande, vous certifiez avoir lu et accepté toutes les conditions ci-dessous: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:85 + + + Order with an obligation to pay + Commande avec obligation de paiement + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:141 + + + Please make sure you've chosen a [1]payment method[/1] and accepted the [2]terms and conditions[/2]. + Assurez-vous d'avoir choisi un [1]mode de paiement[/1] et a accepté le [2]termes et conditions[/2]. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:126 + + + + + + + If you sign out now, your cart will be emptied. + Si vous vous déconnectez, votre panier sera vidé. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:30 + + + Order as a guest + Commander en tant qu'invité + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:46 + + + + + + + If you would like to add a comment about your order, please write it in the field below. + Si vous souhaitez ajouter un commentaire sur votre commande, écrivez-la dans le champ ci-dessous. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:83 + + + I would like to receive my order in recycled packaging. + Je souhaite recevoir ma commande dans un emballage recyclé. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:91 + + + If you'd like, you can add a note to the gift: + Si vous le souhaitez, vous pouvez ajouter une note au don: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:103 + + + Unfortunately, there are no carriers available for your delivery address. + Malheureusement, il n'y a pas de transporteurs disponibles pour votre adresse de livraison. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:115 + + + + + + + Code + Code + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:64 + + + Description + La description + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:68 + + + Value + Valeur + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:76 + + + Minimum + Le minimum + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:80 + + + Cumulative + Cumulatif + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:84 + + + Expiration date + Date d'expiration + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:88 + + + + + + + Quantity + Quantité + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:40 + + + + + + + Order reference + Référence de l'achat + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:38 + + + Date + Dater + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:39 + + + Total price + Prix total + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:40 + + + Payment + Paiement + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:41 + + + Status + Statut + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:42 + + + Invoice + Facture d'achat + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:43 + + + + + + + Carrier + Transporteur + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:191 + + + Payment method + Mode de paiement + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:57 + + + Delivery address %alias% + Adresse de livraison %alias% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:132 + + + Invoice address %alias% + Adresse de facturation %alias% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:140 + + + Weight + Poids + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:194 + + + Shipping cost + Frais de port + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:197 + + + Tracking number + Numéro de suivi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:200 + + + + diff --git a/themes/at_movic/translations/fr-FR/ShopThemeCustomeraccount.fr-FR.xlf b/themes/at_movic/translations/fr-FR/ShopThemeCustomeraccount.fr-FR.xlf new file mode 100644 index 00000000..46b63671 --- /dev/null +++ b/themes/at_movic/translations/fr-FR/ShopThemeCustomeraccount.fr-FR.xlf @@ -0,0 +1,561 @@ + + + + + + View my customer account + Voir mon compte client + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:36 + + + Log in to your customer account + Connectez-vous à votre compte client + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:58 + + + + + + + Checkout + Check-out + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:113 + + + + + + + Account + Compte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customeraccountlinks\ps_customeraccountlinks.tpl:33 + + + + + + + Connected as [1]%firstname% %lastname%[/1]. + Connecté comme [1]%firstname% %lastname%[/1]. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:11 + + + Not you? [1]Log out[/1] + Pas toi? [1]Se déconnecter[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:24 + + + + + + + Create an account + Créer un compte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:28 + + + Already have an account? + Vous avez déjà un compte? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:35 + + + Log in instead! + Connectez-vous à la place! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:35 + + + + + + + Update your address + Mettre à jour votre adresse + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\address.tpl:29 + + + New address + Nouvelle adresse + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\address.tpl:31 + + + + + + + Your addresses + Vos adresses + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\addresses.tpl:28 + + + + + + + Log in to your account + Connectez-vous à votre compte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\authentication.tpl:28 + + + No account? Create one here + Pas de compte? Créer un ici + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\authentication.tpl:42 + + + + + + + Your vouchers + Vos bons + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:28 + + + + + + + Guest Order Tracking + Suivi des commandes des clients + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:28 + + + To track your order, please enter the following information: + Pour suivre votre commande, entrez les informations suivantes: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:34 + + + For example: QIIXJXNUI or QIIXJXNUI#1 + Par exemple: QIIXJXNUI ou QIIXJXNUI#1 + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:52 + + + + + + + Guest Tracking + Suivi des clients + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:28 + + + Transform your guest account into a customer account and enjoy: + Transformez votre compte invité en compte client et profitez: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:42 + + + Personalized and secure access + Accès personnalisé et sécurisé + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:44 + + + Fast and easy checkout + Achat rapide et facile + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:45 + + + Easier merchandise return + Retour facile de marchandise + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:46 + + + + + + + Order history + Historique des commandes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:28 + + + Here are the orders you've placed since your account was created. + Voici les commandes que vous avez placées depuis la création de votre compte.. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:32 + + + Details + Détails + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:101 + + + + + + + Your personal information + Vos informations personnelles + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\identity.tpl:28 + + + + + + + Your account + Ton compte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:28 + + + Information + Information + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:38 + + + Addresses + Adresses + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:46 + + + Add first address + Ajouter la première adresse + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:53 + + + Order history and details + Historique des commandes et détails + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:62 + + + Vouchers + Pièces justificatives + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:80 + + + + + + + Credit slips + Relevés de crédit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:28 + + + Order + Commande + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:61 + + + Date issued + Date de délivrance + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:69 + + + Credit slips you have received after canceled orders. + Les jetons de crédit que vous avez reçus après les commandes annulées.. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:32 + + + Credit slip + Bulletin de crédit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:65 + + + View credit slip + Voir fiche de crédit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:73 + + + + + + + Merchandise returns + Retour de marchandise + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:28 + + + Here is a list of pending merchandise returns + Voici une liste des retours de marchandises en attente + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:35 + + + Return + Revenir + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:74 + + + Package status + Statut du paquet + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:78 + + + Returns form + Formulaire de retour + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:87 + + + + + + + Order details + Détails de la commande + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:28 + + + Order Reference %reference% - placed on %date% + Référence de commande %reference% - mise en %date% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:38 + + + Download your invoice as a PDF file. + Téléchargez votre facture en fichier PDF. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:62 + + + You have given permission to receive your order in recycled packaging. + Vous avez autorisé à recevoir votre commande dans des emballages recyclés. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:69 + + + You have requested gift wrapping for this order. + Vous avez demandé un emballage cadeau pour cette commande. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:74 + + + Message + Message + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:75 + + + Follow your order's status step-by-step + Suivez le statut de votre commande étape par étape + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:84 + + + Click the following link to track the delivery of your order + Cliquez sur le lien suivant pour suivre la livraison de votre commande + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:122 + + + + + + + Return details + Détails de retour + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:4 + + + %number% on %date% + %number% en %date% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:12 + + + We have logged your return request. + Nous avons enregistré votre demande de retour. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:18 + + + Your package must be returned to us within %number% days of receiving your order. + Votre colis doit nous être retourné en %number% jours de réception de votre commande. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:19 + + + The current status of your merchandise return is: [1] %status% [/1] + L'état actuel de votre retour de marchandises est: [1] %status% [/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:25 + + + List of items to be returned: + Liste des articles à retourner: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:35 + + + Reminder + Rappel + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:112 + + + All merchandise must be returned in its original packaging and in its original state. + Toutes les marchandises doivent être retournées dans leur emballage d'origine et dans leur état d'origine. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:114 + + + Please print out the [1]returns form[/1] and include it with your package. + Veuillez imprimer le [1]formulaire de retour[/1] et l'inclure avec votre colis. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:119 + + + Please check the [1]returns form[/1] for the correct address. + S'il vous plaît, vérifiez le [1]formulaire de retour[/1] pour l'adresse correcte. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:129 + + + When we receive your package, we will notify you by email. We will then begin processing order reimbursement. + Lorsque nous recevrons votre colis, nous vous en informerons par courrier électronique. Nous commencerons alors à traiter le remboursement de la commande. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:139 + + + Please let us know if you have any questions. + Veuillez nous informer si vous avez des questions. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:144 + + + If the conditions of return listed above are not respected, we reserve the right to refuse your package and/or reimbursement. + Si les conditions de retour énumérées ci-dessus ne sont pas respectées, nous nous réservons le droit de refuser votre colis et/ou le remboursement. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:149 + + + + + + + Forgot your password? + Mot de passe oublié? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\login-form.tpl:43 + + + + + + + Please enter the email address you used to register. You will receive a temporary link to reset your password. + Entrez l'adresse électronique que vous avez utilisée pour vous inscrire. Vous recevrez un lien temporaire pour réinitialiser votre mot de passe. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:48 + + + + + + + Reset your password + Réinitialisez votre mot de passe + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:28 + + + Email address: %email% + Adresse e-mail: %email% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:37 + + + + + + + Back to your account + Retour à votre compte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\my-account-links.tpl:28 + + + + + + + Returned + Revenu + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:205 + + + Merchandise return + Retour de marchandise + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:236 + + + If you wish to return one or more products, please mark the corresponding boxes and provide an explanation for the return. When complete, click the button below. + Si vous souhaitez renvoyer un ou plusieurs produits, marquez les cases correspondantes et expliquez le retour. Une fois terminé, cliquez sur le bouton ci-dessous. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:237 + + + Request a return + Demander un retour + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:247 + + + + + + + Messages + Messages + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:28 + + + Add a message + Ajouter un message + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:49 + + + If you would like to add a comment about your order, please write it in the field below. + Si vous souhaitez ajouter un commentaire sur votre commande, écrivez-la dans le champ ci-dessous. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:50 + + + + diff --git a/themes/at_movic/translations/fr-FR/ShopThemeGlobal.fr-FR.xlf b/themes/at_movic/translations/fr-FR/ShopThemeGlobal.fr-FR.xlf new file mode 100644 index 00000000..a028b80b --- /dev/null +++ b/themes/at_movic/translations/fr-FR/ShopThemeGlobal.fr-FR.xlf @@ -0,0 +1,751 @@ + + + + + + Panel Tool + Outil de panneau + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:15 + + + Layout Mod + Modes de mise en page + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:19 + + + Theme + Thème + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:32 + + + Default + Défaut + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:35 + + + Float Header + En-tête de flotteur + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:51 + + + Yes + Oui + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:55 + + + No + Non + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:58 + + + Live Theme Editor + Éditeur de thème en direct + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:82 + + + Those Images in folder YOURTHEME/assets/img/patterns/ + Ces images dans le dossier YOURTHEME/assets/img/patterns/ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:113 + + + Attachment + Pièces jointes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:121 + + + Not set + Pas encore défini + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:141 + + + Position + Position + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:130 + + + Repeat + Répéter + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:139 + + + Inherit + Hériter + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:153 + + + + + + + Setting + Réglage + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\profiles\plist1499676422.tpl:83 + + + + + + + Read more + Lire la suite + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:79 + + + In + Dans + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:32 + + + On + Sur + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:39 + + + Hit + Frappé + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:62 + + + Sunday + Dimanche + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:87 + + + Monday + Lundi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:88 + + + Tuesday + Mardi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:89 + + + Wednesday + Mercredi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:90 + + + Thursday + Jeudi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:91 + + + Friday + Vendredi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:92 + + + Saturday + Samedi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:93 + + + January + Janvier + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:95 + + + February + Février + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:96 + + + March + Mars + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:97 + + + April + Avril + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:98 + + + May + Mai + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:99 + + + June + Juin + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:100 + + + July + Juillet + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:101 + + + August + Août + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:102 + + + September + Septembre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:103 + + + October + Octobre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:104 + + + November + Novembre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:105 + + + December + Décembre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:106 + + + + + + + View all + Voir tout + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\appagebuilder\views\templates\hook\cate-image\ApCategoryImage.tpl:68 + + + + + + + Setting + Réglage + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:17 + + + Language: + La langue: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:22 + + + Currency: + Devise: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:34 + + + My account + Mon compte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:84 + + + + + + + Hello + Hello + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:40 + + + Wishlist + Liste de souhaits + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:74 + + + Compare + Comparer + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:86 + + + Account + Compte + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:28 + + + + + + + Contact us + Contactez nous + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\nav.tpl:39 + + + + + + + Sorry, We are updating data, please come back later!!!! + Désolé, nous mettons à jour les données, reviens plus tard !!!! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:116 + + + Childrens + Enfants + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:50 + + + Recent blog posts + Articles récents sur le blog + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:68 + + + + + + + Posted By + Posté par + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:24 + + + Comment + Commentaire + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:67 + + + Comments + Commentaires + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:14 + + + Created On + Créé sur + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:23 + + + Comment Link + Lien de commentaire + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:27 + + + Leave your comment + Laisse ton commentaire + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:45 + + + Full Name + Nom complet + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:49 + + + Enter your full name + Entrez votre nom complet + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:52 + + + Email + Email + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:58 + + + Enter your email + Entrer votre Email + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:61 + + + Enter your comment + Entrez votre commentaire + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:70 + + + Captcha + Captcha + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:76 + + + Submit + Soumettre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:86 + + + + + + + Tags: + Mots clés: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:100 + + + In Same Category + Dans la même catégorie + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:113 + + + Related by Tags + Associé par Tags + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:121 + + + Sorry, This blog is not avariable. May be this was unpublished or deleted. + Désolé, ce blog n'est pas avariable. Peut-être que cela n'a pas été publié ou supprimé. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:152 + + + + + + + Related products + Produits connexes + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:27 + + + + + + + Call us: [1]%phone%[/1] + Appelez-nous: [1]%phone%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:43 + + + Store information + Informations sur les magasins + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:29 + + + Fax: [1]%fax%[/1] + Faxer: [1]%fax%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:57 + + + Email us: [1]%email%[/1] + Écrivez-nous: [1]%email%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:72 + + + + + + + Call us: + Appelez-nous: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:37 + + + Fax: + Faxer: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:47 + + + Email us: + Envoyez-nous un email: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:57 + + + + + + + Currency + Devise + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_currencyselector\ps_currencyselector.tpl:27 + + + Currency dropdown + Menu déroulant devise + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_currencyselector\ps_currencyselector.tpl:27 + + + + + + + join our newsletter + Rejoignez notre newsletter + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:27 + + + + + + + Carousel buttons + Boutons de carrousel + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:45 + + + Previous + Previous + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:50 + + + Next + Suivant + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:56 + + + + + + + Language + La langue + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_languageselector\ps_languageselector.tpl:27 + + + Language dropdown + Menu déroulant devise + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_languageselector\ps_languageselector.tpl:27 + + + + + + + logo + logo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\profiles\id_gencode_597719e66686a_1500977638.tpl:1 + + + + + + + Active filters + Filtres actifs + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\active_filters.tpl:27 + + + + + + + (no filter) + (pas de filtre) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:132 + + + + + + + Grid + La grille + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:30 + + + List + Liste + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:31 + + + + + + + Sort by: + Trier par: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\sort-orders.tpl:25 + + + + + + + Close + Fermer + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:151 + + + + + + + List of sub categories in %name%: + Liste des sous-catégories dans %name%: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\category.tpl:34 + + + List of pages in %name%: + Liste des pages dans %name%: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\category.tpl:45 + + + + + + + Sitemap + Plan du site + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\sitemap.tpl:28 + + + + + + + Our stores + Nos magasins + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\stores.tpl:28 + + + About and Contact + A propos et contact + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\stores.tpl:44 + + + + + + + Date + Date + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:188 + + + Status + Statut + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:89 + + + + + + + Home + Accueil + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\my-account-links.tpl:32 + + + + + + + We'll be back soon. + Nous reviendrons bientôt. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\maintenance.tpl:42 + + + + + + + Sorry for the inconvenience. + Désolé pour le dérangement. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\not-found.tpl:28 + + + Search again what you are looking for + Rechercher de nouveau ce que vous cherchez + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\not-found.tpl:29 + + + + + + + 403 Forbidden + 403 Interdit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\restricted-country.tpl:43 + + + You cannot access this store from your country. We apologize for the inconvenience. + Vous ne pouvez pas accéder à ce magasin de votre pays. Nous nous excusons pour le dérangement. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\restricted-country.tpl:44 + + + + diff --git a/themes/at_movic/translations/index.php b/themes/at_movic/translations/index.php new file mode 100644 index 00000000..04235edb --- /dev/null +++ b/themes/at_movic/translations/index.php @@ -0,0 +1,35 @@ + + * @copyright PrestaShop SA + * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); +header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); + +header('Cache-Control: no-store, no-cache, must-revalidate'); +header('Cache-Control: post-check=0, pre-check=0', false); +header('Pragma: no-cache'); + +header('Location: ../'); +exit; diff --git a/themes/at_movic/translations/it-IT/ShopFormsHelp.it-IT.xlf b/themes/at_movic/translations/it-IT/ShopFormsHelp.it-IT.xlf new file mode 100644 index 00000000..2e93db92 --- /dev/null +++ b/themes/at_movic/translations/it-IT/ShopFormsHelp.it-IT.xlf @@ -0,0 +1,65 @@ + + + + + + your@email.com + your@email.com + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:66 + + + Select reference + Seleziona il riferimento + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:76 + + + optional + opzionale + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:95 + + + How can we help? + Come possiamo aiutare? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:106 + + + + + + + Don't forget to save your customization to be able to add to cart + Non dimenticare di salvare la tua personalizzazione per poter aggiungere al carrello + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:29 + + + Your message here + Il tuo messaggio qui + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:38 + + + 250 char. max + 250 char. max + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:39 + + + No selected file + Nessun file selezionato + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:52 + + + .png .jpg .gif + .png .jpg .gif + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:56 + + + + diff --git a/themes/at_movic/translations/it-IT/ShopFormsLabels.it-IT.xlf b/themes/at_movic/translations/it-IT/ShopFormsLabels.it-IT.xlf new file mode 100644 index 00000000..b4f4fef8 --- /dev/null +++ b/themes/at_movic/translations/it-IT/ShopFormsLabels.it-IT.xlf @@ -0,0 +1,137 @@ + + + + + + Subject + Soggetto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:48 + + + Order reference + Riferenza dell'ordine + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:73 + + + Attachment + Attaccamento + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:90 + + + Message + Messaggio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\contactform\views\templates\widget\contactform.tpl:101 + + + + + + + Email address + Indirizzo email + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:53 + + + + + + + Your email address + Il tuo indirizzo di posta elettronica + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:56 + + + + + + + Order Reference: + Riferenza dell'ordine: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:41 + + + Email: + E-mail: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:59 + + + + + + + Set your password: + Imposta la tua password: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:53 + + + + + + + New password + Nuova password + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:45 + + + Confirmation + Conferma + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:52 + + + + + + + Product + Prodotto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:56 + + + + + + + -- please choose -- + -- si prega di scegliere -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:60 + + + -- day -- + - giorno - + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:122 + + + -- month -- + -- mese -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:123 + + + -- year -- + -- anno -- + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:124 + + + Optional + Opzionale + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:186 + + + + diff --git a/themes/at_movic/translations/it-IT/ShopThemeActions.it-IT.xlf b/themes/at_movic/translations/it-IT/ShopThemeActions.it-IT.xlf new file mode 100644 index 00000000..31099afb --- /dev/null +++ b/themes/at_movic/translations/it-IT/ShopThemeActions.it-IT.xlf @@ -0,0 +1,449 @@ + + + + + + Clear + Chiaro + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:177 + + + + + + + Quick view + Occhiata veloce + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:58 + + + + + + + Sign out + Disconnessione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:107 + + + + + + + Sign in + registrati + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\login-form.tpl:53 + + + + + + + Checkout + Check-out + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed-actions.tpl:40 + + + + + + + Choose file + Scegli il file + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\javascript.tpl:43 + + + Do not show this popup again + Non mostrare nuovamente questo popup + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\javascript.tpl:44 + + + + + + + Send + Send + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:79 + + + + + + + Subscribe + Subscribe + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:48 + + + + + + + OK + OK + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_facetedsearch\ps_facetedsearch.tpl:31 + + + + + + + Continue shopping + Continue shopping + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart.tpl:48 + + + + + + + proceed to checkout + proceed to checkout + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:67 + + + + + + + remove from cart + remove from cart + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart-product-line.tpl:42 + + + Remove + Remove + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart-product-line.tpl:42 + + + + + + + Refresh + Refresh + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\quickview.tpl:67 + + + + + + + Filter By + Filter By + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:28 + + + Clear all + Clear all + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:35 + + + + + + + View products + View products + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\brand.tpl:34 + + + + + + + Quantity + Quantity + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:39 + + + Add to cart + Add to cart + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:54 + + + + + + + Remove Image + Remove Image + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:49 + + + Save Customization + Save Customization + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:62 + + + + + + + Filter + Filter + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:49 + + + + + + + Back to top + Back to top + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products.tpl:38 + + + + + + + Select + Select + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\sort-orders.tpl:33 + + + + + + + Save + Save + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\customer-form.tpl:47 + + + + + + + Cancel + Cancel + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\address-form.tpl:42 + + + + + + + Continue + Continue + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:111 + + + + + + + Edit + Edit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\checkout-step.tpl:39 + + + + + + + Delete + Delete + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\block-address.tpl:40 + + + Update + Update + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\block-address.tpl:36 + + + + + + + show details + show details + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-summary.tpl:38 + + + + + + + Add + Add + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:57 + + + Take advantage of our exclusive offers: + Take advantage of our exclusive offers: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:70 + + + + + + + edit + edit + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:63 + + + + + + + add new address + add new address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:108 + + + + + + + Choose + Choose + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:34 + + + + + + + Create new address + Create new address + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\addresses.tpl:45 + + + + + + + Reorder + Reorder + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:47 + + + + + + + Print out + Print out + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:88 + + + + + + + Send reset link + Send reset link + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:59 + + + Back to login + Torna al login + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:71 + + + + + + + Back to Login + Back to Login + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:77 + + + Change Password + Change Password + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:65 + + + + + + + Download + Download + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:68 + + + + + + + Show + Show + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:150 + + + Hide + Hide + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\form-fields.tpl:148 + + + + + + + Previous + Previous + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:46 + + + Next + Next + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:48 + + + + diff --git a/themes/at_movic/translations/it-IT/ShopThemeCatalog.it-IT.xlf b/themes/at_movic/translations/it-IT/ShopThemeCatalog.it-IT.xlf new file mode 100644 index 00000000..f8bc0be7 --- /dev/null +++ b/themes/at_movic/translations/it-IT/ShopThemeCatalog.it-IT.xlf @@ -0,0 +1,499 @@ + + + + + + item(s) + elementi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\appagebuilder\views\templates\hook\cate-image\ApCategoryImage.tpl:42 + + + + + + + Best Sellers + I più venduti + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_bestsellers\views\templates\hook\ps_bestsellers.tpl:27 + + + All best sellers + Tutte le migliori vendite + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_bestsellers\views\templates\hook\ps_bestsellers.tpl:34 + + + + + + + Brands + Marche + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\brands.tpl:31 + + + + + + + No brand + Senza marchio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_brandlist\views\templates\hook\ps_brandlist.tpl:37 + + + + + + + All brands + tutte le marche + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_brandlist\views\templates\_partials\brand_form.tpl:28 + + + + + + + %s other product in the same category: + %s altro prodotto della stessa categoria: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:28 + + + %s other products in the same category: + %s altri prodotti della stessa categoria: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:30 + + + + + + + Customers who bought this product also bought: + I clienti che hanno acquistato questo prodotto hanno anche comprato: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_crossselling\views\templates\hook\ps_crossselling.tpl:27 + + + + + + + My alerts + I miei avvisi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailalerts\views\templates\hook\my-account.tpl:30 + + + + + + + Popular Products + Prodotti popolari + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_featuredproducts\views\templates\hook\ps_featuredproducts.tpl:27 + + + All products + Tutti i prodotti + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_featuredproducts\views\templates\hook\ps_featuredproducts.tpl:34 + + + + + + + New products + Nuovi Prodotti + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_newproducts\views\templates\hook\ps_newproducts.tpl:28 + + + All new products + Tutti i nuovi prodotti + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_newproducts\views\templates\hook\ps_newproducts.tpl:35 + + + + + + + 1 person is currently watching this product. + 1 persona è attualmente guardando questo prodotto. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:29 + + + %nb_people% people are currently watching this product. + %nb_people% la gente sta attualmente guardando questo prodotto. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:31 + + + Last time this product was bought: %date_last_order% + L'ultima volta che questo prodotto è stato acquistato: %date_last_order% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:37 + + + Last time this product was added to a cart: %date_last_cart% + L'ultima volta che questo prodotto è stato aggiunto al carrello: %date_last_cart% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_productinfo\views\templates\hook\ps_productinfo.tpl:41 + + + + + + + No RSS feed added + Nessun Feed RSS aggiunto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_rssfeed\views\templates\hook\ps_rssfeed.tpl:36 + + + + + + + Search + Ricerca + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_searchbar\ps_searchbar.tpl:31 + + + + + + + On sale + In vendita + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_specials\views\templates\hook\ps_specials.tpl:27 + + + All sale products + Tutti i prodotti di vendita + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_specials\views\templates\hook\ps_specials.tpl:33 + + + + + + + Suppliers + Fornitori + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\suppliers.tpl:28 + + + + + + + No supplier + Nessun fornitore + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_supplierlist\views\templates\hook\ps_supplierlist.tpl:37 + + + + + + + All suppliers + Tutti i fornitori + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_supplierlist\views\templates\_partials\supplier_form.tpl:28 + + + + + + + Viewed products + Prodotti visionati + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_viewedproduct\views\template\hook\ps_viewedproduct.tpl:28 + + + + + + + List of products by brand %brand_name% + Elenco dei prodotti per marca %brand_name% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\listing\manufacturer.tpl:28 + + + + + + + List of products by supplier %s + Elenco dei prodotti da parte del fornitore %s + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\listing\supplier.tpl:28 + + + + + + + This pack contains + La confezione contiene + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\product.tpl:112 + + + You might also like + Potrebbe piacerti anche + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\product.tpl:156 + + + + + + + %1$s: + %1$s: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\active_filters.tpl:35 + + + + + + + Regular price + Prezzo regolare + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:85 + + + Price + Prezzo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\miniatures\product.tpl:94 + + + + + + + Quantity + Quantità + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:199 + + + Product customization + Personalizzazione del prodotto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:180 + + + Product + Prodotto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:33 + + + Unit price + Prezzo unitario + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:36 + + + Total price + Prezzo totale + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:37 + + + + + + + Your customization: + La personalizzazione: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-customization.tpl:41 + + + + + + + Brand + Marca + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:19 + + + Reference + Riferimento + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:28 + + + In stock + Disponibile + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:36 + + + Availability date: + Data di disponibilità: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:44 + + + Data sheet + Scheda dati + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:57 + + + Specific References + Riferimenti specifici + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:71 + + + Condition + Condizione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\default.tpl:84 + + + + + + + Volume discounts + Sconti per quantità + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:27 + + + You Save + Risparmi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:34 + + + Up to %discount% + Fino a %discount% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-discounts.tpl:42 + + + + + + + Save %percentage% + Salvare %percentage% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:51 + + + Save %amount% + Salvare %amount% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:54 + + + (%unit_price%) + (%unit_price%) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:62 + + + %price% tax excl. + %price% tasse escl. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:70 + + + Instead of %price% + Invece di %price% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:76 + + + Including %amount% for ecotax + Compreso %amount% per ecotax + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:82 + + + (not impacted by the discount) + (non influenzato dallo sconto) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-prices.tpl:84 + + + + + + + There are %product_count% products. + Ci sono %product_count% prodotti. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:35 + + + There is 1 product. + C'e 1 prodotto. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:37 + + + + + + + Showing %from%-%to% of %total% item(s) + Mostrando %from%-%to% di %total% element(s) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\_partials\pagination.tpl:28 + + + + + + + Description + Descrizione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:12 + + + Product Details + Dettagli del prodotto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:22 + + + Attachments + Allegati + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\sub\product_info\tab.tpl:31 + + + + diff --git a/themes/at_movic/translations/it-IT/ShopThemeCheckout.it-IT.xlf b/themes/at_movic/translations/it-IT/ShopThemeCheckout.it-IT.xlf new file mode 100644 index 00000000..7bea8c71 --- /dev/null +++ b/themes/at_movic/translations/it-IT/ShopThemeCheckout.it-IT.xlf @@ -0,0 +1,513 @@ + + + + + + Product successfully added to your shopping cart + Prodotto è stato aggiunto al tuo carrello + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:32 + + + Quantity: + Quantità: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:48 + + + There are %products_count% items in your cart. + Ci sono %products_count% articoli nel tuo carrello. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:55 + + + There is %product_count% item in your cart. + C'è %product_count% articolo nel tuo carrello. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:57 + + + Total products: + Totale prodotti: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:59 + + + Total shipping: + Trasporto totale: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:60 + + + Total: + Totale: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\modal.tpl:64 + + + + + + + items + elementi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart.tpl:38 + + + item + articolo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_shoppingcart\ps_shoppingcart.tpl:47 + + + + + + + The minimum purchase order quantity for the product is %quantity%. + The minimum purchase order quantity for the product is %quantity%. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\product-add-to-cart.tpl:79 + + + + + + + Shopping Cart + Carrello della spesa + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\cart.tpl:38 + + + + + + + Your order is confirmed + Il vostro ordine è confermato + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:11 + + + An email has been sent to your mail address %email%. + Una email è stata inviata all'indirizzo di posta elettronica %email%. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:16 + + + You can also [1]download your invoice[/1] + Puoi anche [1]scarica la fattura[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:23 + + + Order details + Dettagli ordine + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:58 + + + Order reference: %reference% + Riferenza dell'ordine: %reference% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:60 + + + Payment method: %method% + Metodo di pagamento: %method% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:61 + + + Shipping method: %method% + Metodo di spedizione: %method% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:64 + + + Save time on your next order, sign up now + Risparmio di tempo per il seguito ordine, iscriviti ora + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\order-confirmation.tpl:94 + + + + + + + Use this address for invoice too + Utilizzare questo indirizzo per fatturazione troppo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\address-form.tpl:26 + + + + + + + Gift + Regalo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed-product-line.tpl:140 + + + + + + + There are no more items in your cart + Non ci sono altri articoli nel carrello + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-detailed.tpl:39 + + + + + + + Have a promo code? + Avere un codice promozionale? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:47 + + + Promo code + Codice promozionale + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\cart-voucher.tpl:56 + + + + + + + Create an account + Crea un account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:30 + + + (optional) + (opzionale) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:30 + + + And save time on your next order! + E risparmiare tempo sul vostro prossimo ordine! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\customer-form.tpl:32 + + + + + + + Order items + Articoli di ordine + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-confirmation-table.tpl:28 + + + + + + + %product_count% item in your cart + %product_count% articolo nel tuo carrello + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary-table.tpl:31 + + + %products_count% items in your cart + %products_count% articoli nel tuo carrello + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary-table.tpl:33 + + + + + + + Please check your order before payment + Si prega di controllare il vostro ordine prima del pagamento + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:28 + + + Addresses + Indirizzi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:35 + + + Your Delivery Address + L'indirizzo di consegna + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:44 + + + Shipping Method + Metodo di spedizione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\order-final-summary.tpl:62 + + + + + + + Your Invoice Address + Il tuo indirizzo fattura + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:85 + + + Shipping Address + Indirizzo di spedizione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:36 + + + The selected address will be used both as your personal address (for invoice) and as your delivery address. + L'indirizzo selezionato verrà utilizzato sia come il vostro indirizzo personale (per fattura) e il tuo indirizzo di consegna. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:41 + + + The selected address will be used as your personal address (for invoice). + L'indirizzo selezionato verrà utilizzato come indirizzo personale (per fattura). + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:45 + + + Billing address differs from shipping address + Indirizzo di fatturazione è diverso da indirizzo di spedizione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\addresses.tpl:76 + + + + + + + No payment needed for this order + Nessun pagamento necessario per questo ordine + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:8 + + + Selected + Selezionato + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:31 + + + Unfortunately, there are no payment method available. + Purtroppo, non ci sono modalità di pagamento disponibili. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:75 + + + By confirming the order, you certify that you have read and agree with all of the conditions below: + Confermando l'ordine, Lei dichiara di aver letto e accettato con tutte le seguenti condizioni: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:85 + + + Order with an obligation to pay + Ordinare con l'obbligo di pagare + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:141 + + + Please make sure you've chosen a [1]payment method[/1] and accepted the [2]terms and conditions[/2]. + Assicurati di aver scelto un [1]metodo di pagamento[/1] e accettò la [2]termini e condizioni[/2]. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:126 + + + + + + + If you sign out now, your cart will be emptied. + Se ti iscrivi adesso, verrà svuotato il carrello. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:30 + + + Order as a guest + Ordinare come ospite + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:46 + + + + + + + If you would like to add a comment about your order, please write it in the field below. + Se desideri aggiungere un commento sul tuo ordine, scrivi nel campo sottostante. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:83 + + + I would like to receive my order in recycled packaging. + Vorrei ricevere il mio ordine in imballaggi riciclati. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:91 + + + If you'd like, you can add a note to the gift: + Se vuoi, puoi aggiungere una nota al dono: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:103 + + + Unfortunately, there are no carriers available for your delivery address. + Purtroppo, non ci sono vettori disponibili per l'indirizzo di consegna. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\shipping.tpl:115 + + + + + + + Code + Codice + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:64 + + + Description + Descrizione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:68 + + + Value + Valore + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:76 + + + Minimum + Minimo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:80 + + + Cumulative + Cumulativo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:84 + + + Expiration date + Data di scadenza + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:88 + + + + + + + Quantity + Quantità + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:40 + + + + + + + Order reference + Riferenza dell'ordine + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:38 + + + Date + Data + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:39 + + + Total price + Prezzo totale + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:40 + + + Payment + Pagamento + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:41 + + + Status + Stato + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:42 + + + Invoice + Fattura + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:43 + + + + + + + Carrier + Vettore + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:191 + + + Payment method + Metodo di pagamento + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:57 + + + Delivery address %alias% + Indirizzo di consegna %alias% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:132 + + + Invoice address %alias% + Indirizzo di fatturazione %alias% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:140 + + + Weight + Peso + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:194 + + + Shipping cost + Spese di spedizione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:197 + + + Tracking number + Numero di identificazione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:200 + + + + diff --git a/themes/at_movic/translations/it-IT/ShopThemeCustomeraccount.it-IT.xlf b/themes/at_movic/translations/it-IT/ShopThemeCustomeraccount.it-IT.xlf new file mode 100644 index 00000000..2c7b8ed8 --- /dev/null +++ b/themes/at_movic/translations/it-IT/ShopThemeCustomeraccount.it-IT.xlf @@ -0,0 +1,561 @@ + + + + + + View my customer account + Visualizza il mio cliente cliente + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:36 + + + Log in to your customer account + Accedi al tuo account cliente + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:58 + + + + + + + Checkout + Check-out + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:113 + + + + + + + Account + Account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customeraccountlinks\ps_customeraccountlinks.tpl:33 + + + + + + + Connected as [1]%firstname% %lastname%[/1]. + Collegato come [1]%firstname% %lastname%[/1]. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:11 + + + Not you? [1]Log out[/1] + Non tu? [1]Disconnettersi[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\personal-information.tpl:24 + + + + + + + Create an account + Crea un account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:28 + + + Already have an account? + Hai già un account? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:35 + + + Log in instead! + Entra invece! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\registration.tpl:35 + + + + + + + Update your address + Aggiorna il tuo indirizzo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\address.tpl:29 + + + New address + Nuovo indirizzo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\address.tpl:31 + + + + + + + Your addresses + I vostri indirizzi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\addresses.tpl:28 + + + + + + + Log in to your account + Accedi al tuo account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\authentication.tpl:28 + + + No account? Create one here + Nessun account? Crea uno qui + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\authentication.tpl:42 + + + + + + + Your vouchers + I suoi buoni + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\discount.tpl:28 + + + + + + + Guest Order Tracking + Ospite ordine + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:28 + + + To track your order, please enter the following information: + Per rintracciare il tuo ordine, si prega di inserire le seguenti informazioni: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:34 + + + For example: QIIXJXNUI or QIIXJXNUI#1 + Per esempio: QIIXJXNUI o QIIXJXNUI # 1 + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-login.tpl:52 + + + + + + + Guest Tracking + ospite di monitoraggio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:28 + + + Transform your guest account into a customer account and enjoy: + Trasformate il vostro account guest in un conto del cliente e godere: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:42 + + + Personalized and secure access + Un accesso personalizzato e sicuro + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:44 + + + Fast and easy checkout + Check out veloce e facile + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:45 + + + Easier merchandise return + Mercanzie di ritorno più facile + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\guest-tracking.tpl:46 + + + + + + + Order history + Cronologia ordini + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:28 + + + Here are the orders you've placed since your account was created. + Qui ci sono gli ordini che hai messo da quando il tuo account è stato creato. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:32 + + + Details + Dettagli + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\history.tpl:101 + + + + + + + Your personal information + Le tue informazioni personali + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\identity.tpl:28 + + + + + + + Your account + Il tuo account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:28 + + + Information + Informazione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:38 + + + Addresses + Indirizzi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:46 + + + Add first address + Aggiungi primo indirizzo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:53 + + + Order history and details + Cronologia ordini e dettagli + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:62 + + + Vouchers + Buoni + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\my-account.tpl:80 + + + + + + + Credit slips + Scivola di credito + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:28 + + + Order + Ordine + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:61 + + + Date issued + Data emesso + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:69 + + + Credit slips you have received after canceled orders. + Credito scivola di aver ricevuto ordini dopo annullati. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:32 + + + Credit slip + Slittamento di credito + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:65 + + + View credit slip + Slittamento di credito View + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-slip.tpl:73 + + + + + + + Merchandise returns + Ritorna merchandise + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:28 + + + Here is a list of pending merchandise returns + Ecco un elenco dei resi in sospeso + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:35 + + + Return + Ritorno + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:74 + + + Package status + Stato del pacchetto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:78 + + + Returns form + Restituisce formano + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-follow.tpl:87 + + + + + + + Order details + Dettagli ordine + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:28 + + + Order Reference %reference% - placed on %date% + Riferenza dell'ordine %reference% - posto su %date% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:38 + + + Download your invoice as a PDF file. + Scaricare la fattura in formato PDF. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:62 + + + You have given permission to receive your order in recycled packaging. + Hai dato il permesso di ricevere il vostro ordine in imballaggi riciclati. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:69 + + + You have requested gift wrapping for this order. + Hai richiesto lo spostamento di regalo per questo ordine. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:74 + + + Message + Messaggio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:75 + + + Follow your order's status step-by-step + Seguire lo stato del vostro ordine step-by-step + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:84 + + + Click the following link to track the delivery of your order + Fare clic sul seguente link per monitorare la consegna del vostro ordine + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:122 + + + + + + + Return details + Dettagli return + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:4 + + + %number% on %date% + %number% sopra %date% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:12 + + + We have logged your return request. + Abbiamo registrato la vostra richiesta di ritorno. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:18 + + + Your package must be returned to us within %number% days of receiving your order. + Il tuo pacco deve essere restituito all'interno di noi %number% giorni di ricezione del tuo ordine. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:19 + + + The current status of your merchandise return is: [1] %status% [/1] + Lo stato attuale del tuo ritorno di merce è: [1] %status% [/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:25 + + + List of items to be returned: + Elenco di elementi da restituire: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:35 + + + Reminder + Promemoria + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:112 + + + All merchandise must be returned in its original packaging and in its original state. + Tutta la merce deve essere restituito nella sua confezione originale e nel suo stato originale. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:114 + + + Please print out the [1]returns form[/1] and include it with your package. + Si prega di stampare il [1]restituisce il modulo[/1] e includerlo con il tuo pacchetto. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:119 + + + Please check the [1]returns form[/1] for the correct address. + Si prega di controllare [1]restituisce il modulo[/1] per l'indirizzo corretto. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:129 + + + When we receive your package, we will notify you by email. We will then begin processing order reimbursement. + Quando riceviamo il pacchetto, vi informeremo via e-mail. Ci sarà poi iniziare ordine di elaborazione rimborso. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:139 + + + Please let us know if you have any questions. + Fateci sapere se avete domande. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:144 + + + If the conditions of return listed above are not respected, we reserve the right to refuse your package and/or reimbursement. + Se non rispettano le condizioni di restituzione elencate sopra, ci riserviamo il diritto di rifiutare il vostro pacchetto e / o il rimborso. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-return.tpl:149 + + + + + + + Forgot your password? + Hai dimenticato la password? + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\login-form.tpl:43 + + + + + + + Please enter the email address you used to register. You will receive a temporary link to reset your password. + Si prega di inserire l'indirizzo email che hai usato per registrarti. Si riceverà un link temporaneo per reimpostare la password. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-email.tpl:48 + + + + + + + Reset your password + Reimposta la tua password + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:28 + + + Email address: %email% + Indirizzo email: %email% + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\password-new.tpl:37 + + + + + + + Back to your account + Torna al tuo account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\my-account-links.tpl:28 + + + + + + + Returned + Tornati + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:205 + + + Merchandise return + Return Merchandise + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:236 + + + If you wish to return one or more products, please mark the corresponding boxes and provide an explanation for the return. When complete, click the button below. + Se si desidera restituire uno o più prodotti, si prega di contrassegnare le caselle corrispondenti e di fornire una spiegazione per il ritorno. Al termine, fare clic sul pulsante qui sotto. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:237 + + + Request a return + Richiedere la restituzione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-detail-return.tpl:247 + + + + + + + Messages + Messaggi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:28 + + + Add a message + Aggiungi un messaggio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:49 + + + If you would like to add a comment about your order, please write it in the field below. + Se si desidera aggiungere un commento circa il vostro ordine, si prega di scriverlo nel campo sottostante. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\order-messages.tpl:50 + + + + diff --git a/themes/at_movic/translations/it-IT/ShopThemeGlobal.it-IT.xlf b/themes/at_movic/translations/it-IT/ShopThemeGlobal.it-IT.xlf new file mode 100644 index 00000000..481d2948 --- /dev/null +++ b/themes/at_movic/translations/it-IT/ShopThemeGlobal.it-IT.xlf @@ -0,0 +1,751 @@ + + + + + + Panel Tool + Strumento Pannello + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:15 + + + Layout Mod + Disposizione Mod + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:19 + + + Theme + Tema + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:32 + + + Default + Predefinito + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:35 + + + Float Header + Float Header + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:51 + + + Yes + + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:55 + + + No + No + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:58 + + + Live Theme Editor + Theme Editor dal vivo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:82 + + + Those Images in folder YOURTHEME/assets/img/patterns/ + Quelle immagini nella cartella YOURTHEME/assets/img/patterns/ + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:113 + + + Attachment + Attaccamento + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:121 + + + Not set + Non impostato + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:141 + + + Position + Posizione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:130 + + + Repeat + Ripetere + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:139 + + + Inherit + Ereditare + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\info\paneltool.tpl:153 + + + + + + + Quick view + Occhiata veloce + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\profiles\plist1499676422.tpl:83 + + + + + + + Read more + Leggi di più + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:79 + + + In + In + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:32 + + + On + Sopra + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:39 + + + Hit + Colpire + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:62 + + + Sunday + Domenica + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:87 + + + Monday + Lunedi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:88 + + + Tuesday + Martedì + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:89 + + + Wednesday + Mercoledì + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:90 + + + Thursday + Giovedi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:91 + + + Friday + Venerdì + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:92 + + + Saturday + Sabato + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:93 + + + January + Gennaio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:95 + + + February + Febbraio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:96 + + + March + Marzo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:97 + + + April + Aprile + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:98 + + + May + Può + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:99 + + + June + Giugno + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:100 + + + July + Luglio + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:101 + + + August + Agosto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:102 + + + September + Settembre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:103 + + + October + Ottobre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:104 + + + November + Novembre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:105 + + + December + Dicembre + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_listing_blog.tpl:106 + + + + + + + View all + Guarda tutto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\appagebuilder\views\templates\hook\cate-image\ApCategoryImage.tpl:68 + + + + + + + Setting + Ambientazione + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:17 + + + Language: + Lingua: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:22 + + + Currency: + Moneta: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:34 + + + My account + Il mio account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\blockgrouptop\views\templates\hook\blockgrouptop.tpl:84 + + + + + + + Hello + Ciao + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:40 + + + Wishlist + Lista dei desideri + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:74 + + + Compare + Confrontare + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:86 + + + Account + Account + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_customersignin\ps_customersignin.tpl:28 + + + + + + + Contact us + Contattaci + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\nav.tpl:39 + + + + + + + Sorry, We are updating data, please come back later!!!! + Spiacenti, stiamo aggiornando i dati, ti invitiamo più tardi !!!! + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:116 + + + Childrens + Bambini + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:50 + + + Recent blog posts + Post recenti di blog + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\category.tpl:68 + + + + + + + Posted By + Pubblicato da + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:24 + + + Comment + Commento + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:67 + + + Comments + Commenti + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:14 + + + Created On + Creato + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:23 + + + Comment Link + Link di commento + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:27 + + + Leave your comment + Lascia il tuo commento + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:45 + + + Full Name + Nome e cognome + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:49 + + + Enter your full name + Inserisci il tuo nome e cognome + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:52 + + + Email + E-mail + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:58 + + + Enter your email + Inserisci il tuo indirizzo email + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:61 + + + Enter your comment + Inserisci il tuo commento + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:70 + + + Captcha + Captcha + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:76 + + + Submit + Sottoscrivi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\_local_comment.tpl:86 + + + + + + + Tags: + Tag: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:100 + + + In Same Category + Nella stessa categoria + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:113 + + + Related by Tags + Related by Tag + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:121 + + + Sorry, This blog is not avariable. May be this was unpublished or deleted. + Spiacenti, questo blog non è avariabile. Può essere questo non pubblicato o eliminato. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\leoblog\views\templates\front\default\blog.tpl:152 + + + + + + + Related products + Prodotti correlati + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_categoryproducts\views\templates\hook\ps_categoryproducts.tpl:27 + + + + + + + Call us: [1]%phone%[/1] + Chiamateci: [1]%phone%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:43 + + + Store information + Informazione di magazzino + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:29 + + + Fax: [1]%fax%[/1] + Fax: [1]%fax%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:57 + + + Email us: [1]%email%[/1] + Scrivici: [1]%email%[/1] + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo.tpl:72 + + + + + + + Call us: + Chiamaci: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:37 + + + Fax: + Fax: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:47 + + + Email us: + Mandaci una email: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_contactinfo\ps_contactinfo-rich.tpl:57 + + + + + + + Currency + Moneta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_currencyselector\ps_currencyselector.tpl:27 + + + Currency dropdown + Discesa in valuta + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_currencyselector\ps_currencyselector.tpl:27 + + + + + + + join our newsletter + Unisciti alla nostra newsletter + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_emailsubscription\views\templates\hook\ps_emailsubscription.tpl:27 + + + + + + + Carousel buttons + Pulsanti di carosello + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:45 + + + Previous + Precedente + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:50 + + + Next + Il prossimo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_imageslider\views\templates\hook\slider.tpl:56 + + + + + + + Language + Lingua + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_languageselector\ps_languageselector.tpl:27 + + + Language dropdown + Discesa lingua + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\modules\ps_languageselector\ps_languageselector.tpl:27 + + + + + + + logo + logo + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\profiles\id_gencode_597719e66686a_1500977638.tpl:1 + + + + + + + Active filters + Filtri Attivi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\active_filters.tpl:27 + + + + + + + (no filter) + (senza Filtro) + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\facets.tpl:132 + + + + + + + Grid + Griglia + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:30 + + + List + Elenco + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\products-top.tpl:31 + + + + + + + Sort by: + Ordina per: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\catalog\_partials\sort-orders.tpl:25 + + + + + + + Close + Vicino + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\checkout\_partials\steps\payment.tpl:151 + + + + + + + List of sub categories in %name%: + Elenco delle sotto categorie in %name%: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\category.tpl:34 + + + List of pages in %name%: + Elenco di pagine in %name%: + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\category.tpl:45 + + + + + + + Sitemap + Mappa del sito + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\sitemap.tpl:28 + + + + + + + Our stores + I nostri negozi + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\stores.tpl:28 + + + About and Contact + A proposito di e Contatto + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\cms\stores.tpl:44 + + + + + + + Date + Data + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:188 + + + Status + Stato + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\order-detail.tpl:89 + + + + + + + Home + Casa + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\customer\_partials\my-account-links.tpl:32 + + + + + + + We'll be back soon. + Torneremo presto. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\maintenance.tpl:42 + + + + + + + Sorry for the inconvenience. + Ci dispiace per l'inconvenienza. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\not-found.tpl:28 + + + Search again what you are looking for + Ulteriore ricerca ciò che si sta cercando + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\not-found.tpl:29 + + + + + + + 403 Forbidden + 403 Forbidden + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\restricted-country.tpl:43 + + + You cannot access this store from your country. We apologize for the inconvenience. + Non è possibile accedere a questo negozio dal vostro paese. Ci scusiamo per il disagio. + Context: +File: D:\xamppnew\htdocs\theme_1712\leo_alaska\themes\leo_alaska\templates\errors\restricted-country.tpl:44 + + + +